diff --git a/python/downgrades/8d257a4a9bc78e39856d6cd33499389fc5148d4f/old.dbscheme b/python/downgrades/8d257a4a9bc78e39856d6cd33499389fc5148d4f/old.dbscheme new file mode 100644 index 000000000000..8d257a4a9bc7 --- /dev/null +++ b/python/downgrades/8d257a4a9bc78e39856d6cd33499389fc5148d4f/old.dbscheme @@ -0,0 +1,1282 @@ +/* + * 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 +); + +/*- Overlay support -*/ + +/** + * The CLI will automatically emit the tuple `databaseMetadata("isOverlay", "true")`, + * along with an `overlayChangedFiles` tuple for each new/modified/deleted file, + * when building an overlay database, and these can be used by the discard predicates. + */ +databaseMetadata( + string metadataKey : string ref, + string value : string ref +); + +overlayChangedFiles( + string path : 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 */ + +/* JoinedTemplateString.location = 0, location */ +/* JoinedTemplateString.parenthesised = 1, bool */ +/* JoinedTemplateString.strings = 2, TemplateString_list */ + +/* 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 */ + +/* TemplateString.location = 0, location */ +/* TemplateString.parenthesised = 1, bool */ +/* TemplateString.prefix = 2, str */ +/* TemplateString.values = 3, expr_list */ +/* TemplateString = TemplateStringList */ + +/* TemplateStringPart.location = 0, location */ +/* TemplateStringPart.parenthesised = 1, bool */ +/* TemplateStringPart.text = 2, str */ +/* TemplateStringList = JoinedTemplateString */ + +/* 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_TemplateString_lists(unique int id : @py_TemplateString_list, + unique int parent : @py_JoinedTemplateString 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 +| 40 = @py_TemplateString +| 41 = @py_JoinedTemplateString +| 42 = @py_TemplateStringPart; + +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_TemplateString | @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_TemplateString_list | @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_TemplateString | @py_TemplateStringPart | @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; + +/** The union of all Python database entities */ +@top = + @py_source_element | @py_object | @py_base_var | @location | @py_line | @py_comment | + @py_expr_parent | @py_expr_context | + @py_operator | @py_boolop | @py_cmpop | @py_unaryop | + @py_cmpop_list | @py_alias_list | @py_StringPart_list | @py_comprehension_list | @py_dict_item_list | @py_pattern_list | @py_stmt_list | @py_str_list | @py_type_parameter_list | + @externalDefect | @externalMetric | @externalDataElement | @duplication_or_similarity | @svnentry | + @xmllocatable | @yaml_locatable; diff --git a/python/downgrades/8d257a4a9bc78e39856d6cd33499389fc5148d4f/py_exprs.ql b/python/downgrades/8d257a4a9bc78e39856d6cd33499389fc5148d4f/py_exprs.ql new file mode 100644 index 000000000000..9bcc92736da3 --- /dev/null +++ b/python/downgrades/8d257a4a9bc78e39856d6cd33499389fc5148d4f/py_exprs.ql @@ -0,0 +1,21 @@ +// We must wrap the DB types, as these cannot appear in argument lists +class Expr_ extends @py_expr { + string toString() { result = "Expr" } +} + +class ExprParent_ extends @py_expr_parent { + string toString() { result = "ExprList" } +} + +query predicate py_exprs_without_template_strings(Expr_ id, int kind, ExprParent_ parent, int idx) { + py_exprs(id, kind, parent, idx) and + // From the dbscheme: + // + // case @py_expr.kind of + // ... + // | 39 = @py_SpecialOperation + // | 40 = @py_TemplateString + // | 41 = @py_JoinedTemplateString + // | 42 = @py_TemplateStringPart; + not kind in [40, 41, 42] +} diff --git a/python/downgrades/8d257a4a9bc78e39856d6cd33499389fc5148d4f/semmlecode.python.dbscheme b/python/downgrades/8d257a4a9bc78e39856d6cd33499389fc5148d4f/semmlecode.python.dbscheme new file mode 100644 index 000000000000..acf8d3b08ae3 --- /dev/null +++ b/python/downgrades/8d257a4a9bc78e39856d6cd33499389fc5148d4f/semmlecode.python.dbscheme @@ -0,0 +1,1261 @@ +/* + * 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 +); + +/*- Overlay support -*/ + +/** + * The CLI will automatically emit the tuple `databaseMetadata("isOverlay", "true")`, + * along with an `overlayChangedFiles` tuple for each new/modified/deleted file, + * when building an overlay database, and these can be used by the discard predicates. + */ +databaseMetadata( + string metadataKey : string ref, + string value : string ref +); + +overlayChangedFiles( + string path : 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; + +/** The union of all Python database entities */ +@top = + @py_source_element | @py_object | @py_base_var | @location | @py_line | @py_comment | + @py_expr_parent | @py_expr_context | + @py_operator | @py_boolop | @py_cmpop | @py_unaryop | + @py_cmpop_list | @py_alias_list | @py_StringPart_list | @py_comprehension_list | @py_dict_item_list | @py_pattern_list | @py_stmt_list | @py_str_list | @py_type_parameter_list | + @externalDefect | @externalMetric | @externalDataElement | @duplication_or_similarity | @svnentry | + @xmllocatable | @yaml_locatable; diff --git a/python/downgrades/8d257a4a9bc78e39856d6cd33499389fc5148d4f/upgrade.properties b/python/downgrades/8d257a4a9bc78e39856d6cd33499389fc5148d4f/upgrade.properties new file mode 100644 index 000000000000..90b83a04c90e --- /dev/null +++ b/python/downgrades/8d257a4a9bc78e39856d6cd33499389fc5148d4f/upgrade.properties @@ -0,0 +1,4 @@ +description: Remove support for template string literals +compatibility: backwards +py_TemplateString_lists.rel: delete +py_exprs.rel: run py_exprs.qlo py_exprs_without_template_strings diff --git a/python/extractor/semmle/python/ast.py b/python/extractor/semmle/python/ast.py index 6033e39e009b..1efe5cd1d197 100644 --- a/python/extractor/semmle/python/ast.py +++ b/python/extractor/semmle/python/ast.py @@ -56,6 +56,15 @@ def __init__(self, prefix, text, s): self.text = text self.s = s +class TemplateStringPart(AstBase): + '''A string constituent of a template string literal''' + + __slots__ = "text", "s", + + def __init__(self, text, s): + self.text = text + self.s = s + class alias(AstBase): __slots__ = "value", "asname", @@ -356,6 +365,19 @@ class JoinedStr(expr): def __init__(self, values): self.values = values +class TemplateString(expr): + __slots__ = "prefix", "values", + + def __init__(self, prefix, values): + self.prefix = prefix + self.values = values + +class JoinedTemplateString(expr): + __slots__ = "strings", + + def __init__(self, strings): + self.strings = strings + class Lambda(expr): __slots__ = "args", "inner_scope", diff --git a/python/extractor/semmle/python/master.py b/python/extractor/semmle/python/master.py index 508a706a97a0..2c17de4e14cf 100755 --- a/python/extractor/semmle/python/master.py +++ b/python/extractor/semmle/python/master.py @@ -186,12 +186,20 @@ FormattedValue = ClassNode("FormattedValue", expr, descriptive_name='formatted value') + AnnAssign = ClassNode("AnnAssign", stmt, descriptive_name='annotated assignment') AssignExpr = ClassNode('AssignExpr', expr, "assignment expression") SpecialOperation = ClassNode('SpecialOperation', expr, "special operation") +TemplateString = ClassNode('TemplateString', expr, 'template string literal') + +template_string_list = ListNode(TemplateString) + +JoinedTemplateString = ClassNode("JoinedTemplateString", expr, descriptive_name='joined template string') +TemplateStringPart = ClassNode('TemplateStringPart', expr, "string part of a template string") + type_parameter = ClassNode('type_parameter', descriptive_name='type parameter') type_parameter.field('location', location) type_parameter_list = ListNode(type_parameter) @@ -435,6 +443,9 @@ Subscript.field('index', expr) Subscript.field('ctx', expr_context, 'context') +TemplateString.field('prefix', string, 'prefix') +TemplateString.field('values', expr_list, 'values') + Try.field('body', stmt_list) Try.field('orelse', stmt_list, 'else block') Try.field('handlers', stmt_list, 'exception handlers') @@ -484,10 +495,15 @@ StringPart.field('text', string) StringPart.field('location', location) +TemplateStringPart.field('text', string) + + Await.field('value', expr, 'expression waited upon') FormattedStringLiteral.field('values', expr_list) +JoinedTemplateString.field('strings', template_string_list) + FormattedValue.field('value', expr, "expression to be formatted") FormattedValue.field('conversion', string, 'type conversion') FormattedValue.field('format_spec', FormattedStringLiteral, 'format specifier') diff --git a/python/extractor/semmle/python/parser/tsg_parser.py b/python/extractor/semmle/python/parser/tsg_parser.py index dde0d7ce9e78..6ee8286c4c78 100644 --- a/python/extractor/semmle/python/parser/tsg_parser.py +++ b/python/extractor/semmle/python/parser/tsg_parser.py @@ -273,6 +273,8 @@ def get_location_info(attrs): ast.Print: ("values",), ast.Set: ("elts",), ast.Str: ("implicitly_concatenated_parts",), + ast.TemplateString: ("values",), + ast.JoinedTemplateString: ("strings",), ast.TypeAlias: ("type_parameters",), ast.Try: ("body", "handlers", "orelse", "finalbody"), ast.Tuple: ("elts",), diff --git a/python/extractor/semmle/util.py b/python/extractor/semmle/util.py index 445d40dab3d0..202c2a941c26 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.1.6" +VERSION = "7.1.7" PY_EXTENSIONS = ".py", ".pyw" diff --git a/python/extractor/tests/parser/exception_groups_new.expected b/python/extractor/tests/parser/exception_groups_new.expected index a70bf1b24858..337d12f63392 100644 --- a/python/extractor/tests/parser/exception_groups_new.expected +++ b/python/extractor/tests/parser/exception_groups_new.expected @@ -1,4 +1,4 @@ -Module: [1, 0] - [27, 0] +Module: [1, 0] - [32, 0] body: [ Try: [1, 0] - [1, 4] body: [ @@ -153,4 +153,28 @@ Module: [1, 0] - [27, 0] ] ] finalbody: [] + Try: [28, 0] - [28, 4] + body: [ + Pass: [29, 4] - [29, 8] + ] + orelse: [] + handlers: [ + ExceptGroupStmt: [30, 0] - [31, 8] + type: + Tuple: [30, 8] - [30, 12] + elts: [ + Name: [30, 8] - [30, 9] + variable: Variable('x', None) + ctx: Load + Name: [30, 11] - [30, 12] + variable: Variable('y', None) + ctx: Load + ] + ctx: Load + name: None + body: [ + Pass: [31, 4] - [31, 8] + ] + ] + finalbody: [] ] diff --git a/python/extractor/tests/parser/exception_groups_new.py b/python/extractor/tests/parser/exception_groups_new.py index 01fe58b9a98b..e16ca18be357 100644 --- a/python/extractor/tests/parser/exception_groups_new.py +++ b/python/extractor/tests/parser/exception_groups_new.py @@ -24,3 +24,8 @@ pass except *foo as e: pass + +try: + pass +except* x, y: + pass diff --git a/python/extractor/tests/parser/exceptions_new.expected b/python/extractor/tests/parser/exceptions_new.expected new file mode 100644 index 000000000000..ca713146e503 --- /dev/null +++ b/python/extractor/tests/parser/exceptions_new.expected @@ -0,0 +1,64 @@ +Module: [1, 0] - [9, 0] + body: [ + Try: [1, 0] - [1, 4] + body: [ + Pass: [2, 4] - [2, 8] + ] + orelse: [] + handlers: [ + ExceptStmt: [3, 0] - [3, 12] + type: + Tuple: [3, 7] - [3, 11] + elts: [ + Name: [3, 7] - [3, 8] + variable: Variable('a', None) + ctx: Load + Name: [3, 10] - [3, 11] + variable: Variable('b', None) + ctx: Load + ] + ctx: Load + name: None + body: [ + Pass: [4, 4] - [4, 8] + ] + ExceptStmt: [5, 0] - [5, 14] + type: + Tuple: [5, 8] - [5, 12] + elts: [ + Name: [5, 8] - [5, 9] + variable: Variable('c', None) + ctx: Load + Name: [5, 11] - [5, 12] + variable: Variable('d', None) + ctx: Load + ] + ctx: Load + parenthesised: True + name: None + body: [ + Pass: [6, 4] - [6, 8] + ] + ExceptStmt: [7, 0] - [7, 19] + type: + Tuple: [7, 8] - [7, 12] + elts: [ + Name: [7, 8] - [7, 9] + variable: Variable('e', None) + ctx: Load + Name: [7, 11] - [7, 12] + variable: Variable('f', None) + ctx: Load + ] + ctx: Load + parenthesised: True + name: + Name: [7, 17] - [7, 18] + variable: Variable('g', None) + ctx: Store + body: [ + Pass: [8, 4] - [8, 8] + ] + ] + finalbody: [] + ] diff --git a/python/extractor/tests/parser/exceptions_new.py b/python/extractor/tests/parser/exceptions_new.py new file mode 100644 index 000000000000..b2e7d943e1d0 --- /dev/null +++ b/python/extractor/tests/parser/exceptions_new.py @@ -0,0 +1,8 @@ +try: + pass +except a, b: # new, relaxed syntax + pass +except (c, d): # old syntax + pass +except (e, f) as g: # old syntax + pass diff --git a/python/extractor/tests/parser/template_strings_new.expected b/python/extractor/tests/parser/template_strings_new.expected new file mode 100644 index 000000000000..64df91aac772 --- /dev/null +++ b/python/extractor/tests/parser/template_strings_new.expected @@ -0,0 +1,194 @@ +Module: [1, 0] - [18, 0] + body: [ + Assign: [1, 0] - [1, 14] + targets: [ + Name: [1, 0] - [1, 4] + variable: Variable('name', None) + ctx: Store + ] + value: + Str: [1, 7] - [1, 14] + s: 'World' + prefix: '"' + implicitly_concatenated_parts: None + Assign: [2, 0] - [2, 15] + targets: [ + Name: [2, 0] - [2, 5] + variable: Variable('value', None) + ctx: Store + ] + value: + Num: [2, 8] - [2, 15] + n: 42.5678 + text: '42.5678' + Assign: [3, 0] - [3, 15] + targets: [ + Name: [3, 0] - [3, 5] + variable: Variable('first', None) + ctx: Store + ] + value: + Str: [3, 8] - [3, 15] + s: 'first' + prefix: '"' + implicitly_concatenated_parts: None + Assign: [4, 0] - [4, 17] + targets: [ + Name: [4, 0] - [4, 6] + variable: Variable('second', None) + ctx: Store + ] + value: + Str: [4, 9] - [4, 17] + s: 'second' + prefix: '"' + implicitly_concatenated_parts: None + If: [6, 0] - [6, 5] + test: + Num: [6, 3] - [6, 4] + n: 1 + text: '1' + body: [ + Expr: [7, 4] - [7, 7] + value: + TemplateString: [7, 4] - [7, 7] + prefix: 't"' + values: [] + ] + orelse: None + If: [8, 0] - [8, 5] + test: + Num: [8, 3] - [8, 4] + n: 2 + text: '2' + body: [ + Expr: [9, 4] - [9, 21] + value: + TemplateString: [9, 4] - [9, 21] + prefix: 't"' + values: [ + TemplateStringPart: [9, 6] - [9, 13] + text: '"Hello, "' + s: 'Hello, ' + Name: [9, 14] - [9, 18] + variable: Variable('name', None) + ctx: Load + TemplateStringPart: [9, 19] - [9, 20] + text: '"!"' + s: '!' + ] + ] + orelse: None + If: [10, 0] - [10, 5] + test: + Num: [10, 3] - [10, 4] + n: 3 + text: '3' + body: [ + Expr: [11, 4] - [11, 42] + value: + TemplateString: [11, 4] - [11, 42] + prefix: 't"' + values: [ + TemplateStringPart: [11, 6] - [11, 13] + text: '"Value: "' + s: 'Value: ' + Name: [11, 14] - [11, 19] + variable: Variable('value', None) + ctx: Load + TemplateStringPart: [11, 24] - [11, 31] + text: '", Hex: "' + s: ', Hex: ' + Name: [11, 32] - [11, 37] + variable: Variable('value', None) + ctx: Load + ] + ] + orelse: None + If: [12, 0] - [12, 5] + test: + Num: [12, 3] - [12, 4] + n: 4 + text: '4' + body: [ + Expr: [13, 4] - [13, 29] + value: + TemplateString: [13, 4] - [13, 29] + prefix: 't"' + values: [ + TemplateStringPart: [13, 6] - [13, 28] + text: '"Just a regular string."' + s: 'Just a regular string.' + ] + ] + orelse: None + If: [14, 0] - [14, 5] + test: + Num: [14, 3] - [14, 4] + n: 5 + text: '5' + body: [ + Expr: [15, 4] - [15, 50] + value: + TemplateString: [15, 4] - [15, 50] + prefix: 't"' + values: [ + TemplateStringPart: [15, 6] - [15, 15] + text: '"Multiple "' + s: 'Multiple ' + Name: [15, 16] - [15, 21] + variable: Variable('first', None) + ctx: Load + TemplateStringPart: [15, 22] - [15, 27] + text: '" and "' + s: ' and ' + Name: [15, 28] - [15, 34] + variable: Variable('second', None) + ctx: Load + TemplateStringPart: [15, 35] - [15, 49] + text: '" placeholders."' + s: ' placeholders.' + ] + ] + orelse: None + If: [16, 0] - [16, 5] + test: + Num: [16, 3] - [16, 4] + n: 6 + text: '6' + body: [ + Expr: [17, 4] - [17, 66] + value: + JoinedTemplateString: [17, 4] - [17, 66] + strings: [ + TemplateString: [17, 4] - [17, 31] + prefix: 't"' + values: [ + TemplateStringPart: [17, 6] - [17, 30] + text: '"Implicit concatenation: "' + s: 'Implicit concatenation: ' + ] + TemplateString: [17, 32] - [17, 49] + prefix: 't"' + values: [ + TemplateStringPart: [17, 34] - [17, 41] + text: '"Hello, "' + s: 'Hello, ' + Name: [17, 42] - [17, 46] + variable: Variable('name', None) + ctx: Load + TemplateStringPart: [17, 47] - [17, 48] + text: '"!"' + s: '!' + ] + TemplateString: [17, 50] - [17, 66] + prefix: 't"' + values: [ + TemplateStringPart: [17, 52] - [17, 65] + text: '" How are you?"' + s: ' How are you?' + ] + ] + ] + orelse: None + ] diff --git a/python/extractor/tests/parser/template_strings_new.py b/python/extractor/tests/parser/template_strings_new.py new file mode 100644 index 000000000000..4c56dca2c0c8 --- /dev/null +++ b/python/extractor/tests/parser/template_strings_new.py @@ -0,0 +1,17 @@ +name = "World" +value = 42.5678 +first = "first" +second = "second" + +if 1: + t"" +if 2: + t"Hello, {name}!" +if 3: + t"Value: {value:.2f}, Hex: {value:#x}" +if 4: + t"Just a regular string." +if 5: + t"Multiple {first} and {second} placeholders." +if 6: + t"Implicit concatenation: " t"Hello, {name}!" t" How are you?" diff --git a/python/extractor/tsg-python/python.tsg b/python/extractor/tsg-python/python.tsg index 50a59d4c27cd..dd11814753d8 100644 --- a/python/extractor/tsg-python/python.tsg +++ b/python/extractor/tsg-python/python.tsg @@ -12,7 +12,7 @@ (assignment !type) @assign { let @assign.node = (ast-node @assign "Assign") } -[ (expression_list) (tuple) (tuple_pattern) (pattern_list) (index_expression_list) ] @tuple +[ (expression_list) (tuple) (tuple_pattern) (pattern_list) (index_expression_list) (exception_list)] @tuple { let @tuple.node = (ast-node @tuple "Tuple") } (list_pattern) @list @@ -117,6 +117,9 @@ (string string_content: (_) @part) { let @part.node = (ast-node @part "StringPart") } +(template_string string_content: (_) @part) +{ let @part.node = (ast-node @part "TemplateStringPart") } + ; A string concatenation that contains no interpolated expressions is just a `Str` (and its children ; will be `StringPart`s). A string concatenation that contains interpolated expressions is a ; `JoinedStr`, however. @@ -142,6 +145,12 @@ } } +(template_string) @tstring +{ let @tstring.node = (ast-node @tstring "TemplateString") } + +(concatenated_template_string) @tstrings +{ let @tstrings.node = (ast-node @tstrings "JoinedTemplateString") } + (pair) @kvpair { let @kvpair.node = (ast-node @kvpair "KeyValuePair") } @@ -2052,6 +2061,44 @@ ;;;;;; End of JoinedStr (`f"foo"`) +;;;;;; JoinedTemplateString / TemplateString (`t"foo"`) + +; Record the prefix of the template string. +(template_string) @tstring +{ + attr (@tstring.node) prefix = (string-prefix @tstring) +} + +; Attach raw children (string parts and interpolations) to the template string node. +(template_string (string_content) @part) @tmpl_any +{ + edge @tmpl_any.node -> @part.node + attr (@tmpl_any.node -> @part.node) values = (named-child-index @part) + attr (@part.node) ctx = "load" + let safe_string = (concatenate-strings (string-safe-prefix @tmpl_any) (source-text @part) (string-quotes @tmpl_any)) + attr (@part.node) s = safe_string + attr (@part.node) text = safe_string +} + +(template_string (interpolation expression: (_) @part) @interp) @tmpl_any +{ + edge @tmpl_any.node -> @part.node + attr (@tmpl_any.node -> @part.node) values = (named-child-index @interp) + attr (@part.node) ctx = "load" +} + + +; Concatenated template strings simply have a list-like field containing the template strings that +; are concatenated together. +(concatenated_template_string (template_string) @tstring) @tmpl_concat +{ + edge @tmpl_concat.node -> @tstring.node + attr (@tmpl_concat.node -> @tstring.node) strings = (named-child-index @tstring) + attr (@tstring.node) ctx = "load" +} + +;;;;;; End of JoinedTemplateString / TemplateString (`t"foo"`) + ;;;;;; List (`[...]`) @@ -3398,6 +3445,9 @@ (tuple element: (_) @elt) @parent (tuple_pattern element: (_) @elt) @parent + + ; An exception list, as in `except A, B, C: ...` + (exception_list element: (_) @elt) @parent ] { edge @parent.node -> @elt.node @@ -3433,6 +3483,7 @@ (parenthesized_expression inner: (_) @elt) (set element: (_) @elt) (match_sequence_pattern (_) @elt) + (exception_list element: (_) @elt) ] @seq { attr (@elt.node) _inherited_ctx = @seq.node diff --git a/python/extractor/tsg-python/src/main.rs b/python/extractor/tsg-python/src/main.rs index d71c93d7f2c5..6e07a8cd86e7 100644 --- a/python/extractor/tsg-python/src/main.rs +++ b/python/extractor/tsg-python/src/main.rs @@ -140,15 +140,22 @@ pub mod extra_functions { } fn safe(&self) -> Prefix { + // Remove format (f/F) and template (t/T) flags when generating a safe prefix. Prefix { - flags: self.flags.clone().replace("f", "").replace("F", ""), + flags: self + .flags + .clone() + .replace("f", "") + .replace("F", "") + .replace("t", "") + .replace("T", ""), quotes: self.quotes.clone(), } } } fn get_prefix(s: &str) -> Prefix { - let flags_matcher = regex::Regex::new("^[bfurBFUR]{0,2}").unwrap(); + let flags_matcher = regex::Regex::new("^[bfurtBFURT]{0,2}").unwrap(); let mut end = 0; let flags = match flags_matcher.find(s) { Some(m) => { @@ -170,7 +177,7 @@ pub mod extra_functions { quotes = "}"; } Prefix { - flags: flags.to_lowercase().to_owned(), + flags: flags.to_owned(), quotes: quotes.to_owned(), } } @@ -198,6 +205,12 @@ pub mod extra_functions { let p = get_prefix("\"\"\"\"\"\""); assert_eq!(p.flags, ""); assert_eq!(p.quotes, "\"\"\""); + let p = get_prefix("t\"hello\""); + assert_eq!(p.flags, "t"); + assert_eq!(p.quotes, "\""); + let p = get_prefix("Tr'world'"); + assert_eq!(p.flags, "Tr"); + assert_eq!(p.quotes, "'"); } fn get_string_contents(s: String) -> String { @@ -227,6 +240,10 @@ pub mod extra_functions { assert_eq!(get_string_contents(s.to_owned()), ""); let s = "''''''"; assert_eq!(get_string_contents(s.to_owned()), ""); + let s = "t\"tmpl\""; + assert_eq!(get_string_contents(s.to_owned()), "tmpl"); + let s = "Tr'world'"; + assert_eq!(get_string_contents(s.to_owned()), "world"); } pub struct StringPrefix; @@ -291,7 +308,11 @@ pub mod extra_functions { let node = graph[parameters.param()?.into_syntax_node_ref()?]; parameters.finish()?; let prefix = get_prefix(&source[node.byte_range()]).full(); - let prefix = prefix.replace("f", "").replace("F", ""); + let prefix = prefix + .replace("f", "") + .replace("F", "") + .replace("t", "") + .replace("T", ""); Ok(Value::String(prefix)) } } diff --git a/python/extractor/tsg-python/tsp/grammar.js b/python/extractor/tsg-python/tsp/grammar.js index 1618a67dcf59..a30ddb9f0a0f 100644 --- a/python/extractor/tsg-python/tsp/grammar.js +++ b/python/extractor/tsg-python/tsp/grammar.js @@ -55,6 +55,7 @@ module.exports = grammar({ $._string_start, $._string_content, $._string_end, + $._template_string_start, ], inline: $ => [ @@ -296,12 +297,21 @@ module.exports = grammar({ ) ), + exception_list: $ => seq( + field('element', $.expression), + repeat1( + seq( + ',', + field('element', $.expression)) + ) + ), + except_clause: $ => seq( 'except', optional(seq( - field('type', $.expression), + field('type', choice($.expression, $.exception_list)), optional(seq( - choice('as', ','), + 'as', field('alias', $.expression) )) )), @@ -313,7 +323,7 @@ module.exports = grammar({ 'except', '*', seq( - field('type', $.expression), + field('type', choice($.expression, $.exception_list)), optional(seq( 'as', field('alias', $.expression) @@ -423,6 +433,8 @@ module.exports = grammar({ ), $.string, $.concatenated_string, + $.template_string, + $.concatenated_template_string, $.none, $.true, $.false @@ -765,6 +777,8 @@ module.exports = grammar({ $.keyword_identifier, $.string, $.concatenated_string, + $.template_string, + $.concatenated_template_string, $.integer, $.float, $.true, @@ -1099,6 +1113,20 @@ module.exports = grammar({ field('suffix', alias($._string_end, '"')) ), + concatenated_template_string: $ => seq( + $.template_string, + repeat1($.template_string) + ), + + template_string: $ => seq( + field('prefix', alias($._template_string_start, '"')), + repeat(choice( + field('interpolation', $.interpolation), + field('string_content', $.string_content) + )), + field('suffix', alias($._string_end, '"')) + ), + string_content: $ => prec.right(0, repeat1( choice( $._escape_interpolation, diff --git a/python/extractor/tsg-python/tsp/src/grammar.json b/python/extractor/tsg-python/tsp/src/grammar.json index c638cc74297b..e413f91b0855 100644 --- a/python/extractor/tsg-python/tsp/src/grammar.json +++ b/python/extractor/tsg-python/tsp/src/grammar.json @@ -1087,6 +1087,39 @@ } ] }, + "exception_list": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "element", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "REPEAT1", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "FIELD", + "name": "element", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + } + ] + }, "except_clause": { "type": "SEQ", "members": [ @@ -1104,8 +1137,17 @@ "type": "FIELD", "name": "type", "content": { - "type": "SYMBOL", - "name": "expression" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "exception_list" + } + ] } }, { @@ -1115,17 +1157,8 @@ "type": "SEQ", "members": [ { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "as" - }, - { - "type": "STRING", - "value": "," - } - ] + "type": "STRING", + "value": "as" }, { "type": "FIELD", @@ -1181,8 +1214,17 @@ "type": "FIELD", "name": "type", "content": { - "type": "SYMBOL", - "name": "expression" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "exception_list" + } + ] } }, { @@ -1800,6 +1842,14 @@ "type": "SYMBOL", "name": "concatenated_string" }, + { + "type": "SYMBOL", + "name": "template_string" + }, + { + "type": "SYMBOL", + "name": "concatenated_template_string" + }, { "type": "SYMBOL", "name": "none" @@ -3891,6 +3941,14 @@ "type": "SYMBOL", "name": "concatenated_string" }, + { + "type": "SYMBOL", + "name": "template_string" + }, + { + "type": "SYMBOL", + "name": "concatenated_template_string" + }, { "type": "SYMBOL", "name": "integer" @@ -5982,6 +6040,77 @@ } ] }, + "concatenated_template_string": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "template_string" + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "template_string" + } + } + ] + }, + "template_string": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "prefix", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_template_string_start" + }, + "named": false, + "value": "\"" + } + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "interpolation", + "content": { + "type": "SYMBOL", + "name": "interpolation" + } + }, + { + "type": "FIELD", + "name": "string_content", + "content": { + "type": "SYMBOL", + "name": "string_content" + } + } + ] + } + }, + { + "type": "FIELD", + "name": "suffix", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_string_end" + }, + "named": false, + "value": "\"" + } + } + ] + }, "string_content": { "type": "PREC_RIGHT", "value": 0, @@ -6710,6 +6839,10 @@ { "type": "SYMBOL", "name": "_string_end" + }, + { + "type": "SYMBOL", + "name": "_template_string_start" } ], "inline": [ diff --git a/python/extractor/tsg-python/tsp/src/node-types.json b/python/extractor/tsg-python/tsp/src/node-types.json index 26fa5fd3f76b..a718a48aab65 100644 --- a/python/extractor/tsg-python/tsp/src/node-types.json +++ b/python/extractor/tsg-python/tsp/src/node-types.json @@ -241,6 +241,10 @@ "type": "concatenated_string", "named": true }, + { + "type": "concatenated_template_string", + "named": true + }, { "type": "dictionary", "named": true @@ -305,6 +309,10 @@ "type": "subscript", "named": true }, + { + "type": "template_string", + "named": true + }, { "type": "true", "named": true @@ -1000,6 +1008,21 @@ ] } }, + { + "type": "concatenated_template_string", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "template_string", + "named": true + } + ] + } + }, { "type": "conditional_expression", "named": true, @@ -1286,6 +1309,10 @@ "multiple": false, "required": false, "types": [ + { + "type": "exception_list", + "named": true + }, { "type": "expression", "named": true @@ -1321,6 +1348,26 @@ "type": { "multiple": false, "required": true, + "types": [ + { + "type": "exception_list", + "named": true + }, + { + "type": "expression", + "named": true + } + ] + } + } + }, + { + "type": "exception_list", + "named": true, + "fields": { + "element": { + "multiple": true, + "required": true, "types": [ { "type": "expression", @@ -2460,6 +2507,10 @@ "type": "concatenated_string", "named": true }, + { + "type": "concatenated_template_string", + "named": true + }, { "type": "false", "named": true @@ -2472,6 +2523,10 @@ "type": "string", "named": true }, + { + "type": "template_string", + "named": true + }, { "type": "true", "named": true @@ -3257,6 +3312,52 @@ } } }, + { + "type": "template_string", + "named": true, + "fields": { + "interpolation": { + "multiple": true, + "required": false, + "types": [ + { + "type": "interpolation", + "named": true + } + ] + }, + "prefix": { + "multiple": false, + "required": true, + "types": [ + { + "type": "\"", + "named": false + } + ] + }, + "string_content": { + "multiple": true, + "required": false, + "types": [ + { + "type": "string_content", + "named": true + } + ] + }, + "suffix": { + "multiple": false, + "required": true, + "types": [ + { + "type": "\"", + "named": false + } + ] + } + } + }, { "type": "try_statement", "named": true, diff --git a/python/extractor/tsg-python/tsp/src/parser.c b/python/extractor/tsg-python/tsp/src/parser.c index 506a539bea6c..e275c1316a0f 100644 --- a/python/extractor/tsg-python/tsp/src/parser.c +++ b/python/extractor/tsg-python/tsp/src/parser.c @@ -5,13 +5,13 @@ #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif -#define LANGUAGE_VERSION 14 -#define STATE_COUNT 1479 -#define LARGE_STATE_COUNT 149 -#define SYMBOL_COUNT 282 +#define LANGUAGE_VERSION 13 +#define STATE_COUNT 1510 +#define LARGE_STATE_COUNT 152 +#define SYMBOL_COUNT 288 #define ALIAS_COUNT 3 -#define TOKEN_COUNT 107 -#define EXTERNAL_TOKEN_COUNT 6 +#define TOKEN_COUNT 108 +#define EXTERNAL_TOKEN_COUNT 7 #define FIELD_COUNT 54 #define MAX_ALIAS_SEQUENCE_LENGTH 10 #define PRODUCTION_ID_COUNT 166 @@ -123,184 +123,190 @@ enum { sym__string_start = 104, sym__string_content = 105, sym__string_end = 106, - sym_module = 107, - sym__statement = 108, - sym__simple_statements = 109, - sym_import_statement = 110, - sym_import_prefix = 111, - sym_relative_import = 112, - sym_future_import_statement = 113, - sym_import_from_statement = 114, - sym__import_list = 115, - sym_aliased_import = 116, - sym_wildcard_import = 117, - sym_print_statement = 118, - sym_chevron = 119, - sym_assert_statement = 120, - sym_expression_statement = 121, - sym_named_expression = 122, - sym_return_statement = 123, - sym_delete_statement = 124, - sym_raise_statement = 125, - sym_pass_statement = 126, - sym_break_statement = 127, - sym_continue_statement = 128, - sym_if_statement = 129, - sym_elif_clause = 130, - sym_else_clause = 131, - sym_for_statement = 132, - sym_while_statement = 133, - sym_try_statement = 134, - sym_except_clause = 135, - sym_except_group_clause = 136, - sym_finally_clause = 137, - sym_with_statement = 138, - sym_with_clause = 139, - sym_with_item = 140, - sym_match_statement = 141, - sym_cases = 142, - sym_case_block = 143, - sym__match_patterns = 144, - sym_open_sequence_match_pattern = 145, - sym__match_pattern = 146, - sym_match_as_pattern = 147, - sym__match_or_pattern = 148, - sym_match_or_pattern = 149, - sym__closed_pattern = 150, - sym_match_literal_pattern = 151, - sym_match_capture_pattern = 152, - sym_match_value_pattern = 153, - sym_match_group_pattern = 154, - sym_match_sequence_pattern = 155, - sym__match_maybe_star_pattern = 156, - sym_match_star_pattern = 157, - sym_match_mapping_pattern = 158, - sym_match_double_star_pattern = 159, - sym_match_key_value_pattern = 160, - sym_match_class_pattern = 161, - sym_pattern_class_name = 162, - sym_match_positional_pattern = 163, - sym_match_keyword_pattern = 164, - sym_guard = 165, - sym_function_definition = 166, - sym_parameters = 167, - sym_lambda_parameters = 168, - sym_list_splat = 169, - sym_dictionary_splat = 170, - sym_global_statement = 171, - sym_nonlocal_statement = 172, - sym_exec_statement = 173, - sym_type_alias_statement = 174, - sym_class_definition = 175, - sym_type_parameters = 176, - sym__type_bound = 177, - sym_typevar_parameter = 178, - sym_typevartuple_parameter = 179, - sym_paramspec_parameter = 180, - sym__type_parameter = 181, - sym__type_param_default = 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__index_expression = 216, - sym_index_expression_list = 217, - sym_subscript = 218, - sym_slice = 219, - sym_call = 220, - sym_typed_parameter = 221, - sym_type = 222, - sym_keyword_argument = 223, - sym_list = 224, - sym_set = 225, - sym_tuple = 226, - sym_dictionary = 227, - sym_pair = 228, - sym_list_comprehension = 229, - sym_dictionary_comprehension = 230, - sym_set_comprehension = 231, - sym_generator_expression = 232, - sym__comprehension_clauses = 233, - sym_parenthesized_expression = 234, - sym__collection_elements = 235, - sym_for_in_clause = 236, - sym_if_clause = 237, - sym_conditional_expression = 238, - sym_concatenated_string = 239, - sym_string = 240, - sym_string_content = 241, - sym_interpolation = 242, - sym__f_expression = 243, - sym_format_specifier = 244, - sym_await = 245, - sym_positional_separator = 246, - sym_keyword_separator = 247, - aux_sym_module_repeat1 = 248, - aux_sym__simple_statements_repeat1 = 249, - aux_sym_import_prefix_repeat1 = 250, - aux_sym__import_list_repeat1 = 251, - aux_sym_print_statement_repeat1 = 252, - aux_sym_assert_statement_repeat1 = 253, - aux_sym_if_statement_repeat1 = 254, - aux_sym_try_statement_repeat1 = 255, - aux_sym_try_statement_repeat2 = 256, - aux_sym_with_clause_repeat1 = 257, - aux_sym_cases_repeat1 = 258, - aux_sym_open_sequence_match_pattern_repeat1 = 259, - aux_sym_match_or_pattern_repeat1 = 260, - aux_sym_match_value_pattern_repeat1 = 261, - aux_sym_match_mapping_pattern_repeat1 = 262, - aux_sym_match_class_pattern_repeat1 = 263, - aux_sym_match_class_pattern_repeat2 = 264, - aux_sym_global_statement_repeat1 = 265, - aux_sym_type_parameters_repeat1 = 266, - aux_sym_argument_list_repeat1 = 267, - aux_sym_decorated_definition_repeat1 = 268, - aux_sym_expression_list_repeat1 = 269, - aux_sym__parameters_repeat1 = 270, - aux_sym__patterns_repeat1 = 271, - aux_sym_comparison_operator_repeat1 = 272, - aux_sym_index_expression_list_repeat1 = 273, - aux_sym_dictionary_repeat1 = 274, - aux_sym__comprehension_clauses_repeat1 = 275, - aux_sym__collection_elements_repeat1 = 276, - aux_sym_for_in_clause_repeat1 = 277, - aux_sym_concatenated_string_repeat1 = 278, - aux_sym_string_repeat1 = 279, - aux_sym_string_content_repeat1 = 280, - aux_sym_format_specifier_repeat1 = 281, - alias_sym_format_expression = 282, - anon_alias_sym_isnot = 283, - anon_alias_sym_notin = 284, + sym__template_string_start = 107, + sym_module = 108, + sym__statement = 109, + sym__simple_statements = 110, + sym_import_statement = 111, + sym_import_prefix = 112, + sym_relative_import = 113, + sym_future_import_statement = 114, + sym_import_from_statement = 115, + sym__import_list = 116, + sym_aliased_import = 117, + sym_wildcard_import = 118, + sym_print_statement = 119, + sym_chevron = 120, + sym_assert_statement = 121, + sym_expression_statement = 122, + sym_named_expression = 123, + sym_return_statement = 124, + sym_delete_statement = 125, + sym_raise_statement = 126, + sym_pass_statement = 127, + sym_break_statement = 128, + sym_continue_statement = 129, + sym_if_statement = 130, + sym_elif_clause = 131, + sym_else_clause = 132, + sym_for_statement = 133, + sym_while_statement = 134, + sym_try_statement = 135, + sym_exception_list = 136, + sym_except_clause = 137, + sym_except_group_clause = 138, + sym_finally_clause = 139, + sym_with_statement = 140, + sym_with_clause = 141, + sym_with_item = 142, + sym_match_statement = 143, + sym_cases = 144, + sym_case_block = 145, + sym__match_patterns = 146, + sym_open_sequence_match_pattern = 147, + sym__match_pattern = 148, + sym_match_as_pattern = 149, + sym__match_or_pattern = 150, + sym_match_or_pattern = 151, + sym__closed_pattern = 152, + sym_match_literal_pattern = 153, + sym_match_capture_pattern = 154, + sym_match_value_pattern = 155, + sym_match_group_pattern = 156, + sym_match_sequence_pattern = 157, + sym__match_maybe_star_pattern = 158, + sym_match_star_pattern = 159, + sym_match_mapping_pattern = 160, + sym_match_double_star_pattern = 161, + sym_match_key_value_pattern = 162, + sym_match_class_pattern = 163, + sym_pattern_class_name = 164, + sym_match_positional_pattern = 165, + sym_match_keyword_pattern = 166, + sym_guard = 167, + sym_function_definition = 168, + sym_parameters = 169, + sym_lambda_parameters = 170, + sym_list_splat = 171, + sym_dictionary_splat = 172, + sym_global_statement = 173, + sym_nonlocal_statement = 174, + sym_exec_statement = 175, + sym_type_alias_statement = 176, + sym_class_definition = 177, + sym_type_parameters = 178, + sym__type_bound = 179, + sym_typevar_parameter = 180, + sym_typevartuple_parameter = 181, + sym_paramspec_parameter = 182, + sym__type_parameter = 183, + sym__type_param_default = 184, + sym_parenthesized_list_splat = 185, + sym_argument_list = 186, + sym_decorated_definition = 187, + sym_decorator = 188, + sym_block = 189, + sym_expression_list = 190, + sym_dotted_name = 191, + sym__parameters = 192, + sym__patterns = 193, + sym_parameter = 194, + sym_pattern = 195, + sym_tuple_pattern = 196, + sym_list_pattern = 197, + sym_default_parameter = 198, + sym_typed_default_parameter = 199, + sym_list_splat_pattern = 200, + sym_dictionary_splat_pattern = 201, + sym__expression_within_for_in_clause = 202, + sym_expression = 203, + sym_primary_expression = 204, + sym_not_operator = 205, + sym_boolean_operator = 206, + sym_binary_operator = 207, + sym_unary_operator = 208, + sym_comparison_operator = 209, + sym_lambda = 210, + sym_lambda_within_for_in_clause = 211, + sym_assignment = 212, + sym_augmented_assignment = 213, + sym_pattern_list = 214, + sym__right_hand_side = 215, + sym_yield = 216, + sym_attribute = 217, + sym__index_expression = 218, + sym_index_expression_list = 219, + sym_subscript = 220, + sym_slice = 221, + sym_call = 222, + sym_typed_parameter = 223, + sym_type = 224, + sym_keyword_argument = 225, + sym_list = 226, + sym_set = 227, + sym_tuple = 228, + sym_dictionary = 229, + sym_pair = 230, + sym_list_comprehension = 231, + sym_dictionary_comprehension = 232, + sym_set_comprehension = 233, + sym_generator_expression = 234, + sym__comprehension_clauses = 235, + sym_parenthesized_expression = 236, + sym__collection_elements = 237, + sym_for_in_clause = 238, + sym_if_clause = 239, + sym_conditional_expression = 240, + sym_concatenated_string = 241, + sym_string = 242, + sym_concatenated_template_string = 243, + sym_template_string = 244, + sym_string_content = 245, + sym_interpolation = 246, + sym__f_expression = 247, + sym_format_specifier = 248, + sym_await = 249, + sym_positional_separator = 250, + sym_keyword_separator = 251, + aux_sym_module_repeat1 = 252, + aux_sym__simple_statements_repeat1 = 253, + aux_sym_import_prefix_repeat1 = 254, + aux_sym__import_list_repeat1 = 255, + aux_sym_print_statement_repeat1 = 256, + aux_sym_assert_statement_repeat1 = 257, + aux_sym_if_statement_repeat1 = 258, + aux_sym_try_statement_repeat1 = 259, + aux_sym_try_statement_repeat2 = 260, + aux_sym_exception_list_repeat1 = 261, + aux_sym_with_clause_repeat1 = 262, + aux_sym_cases_repeat1 = 263, + aux_sym_open_sequence_match_pattern_repeat1 = 264, + aux_sym_match_or_pattern_repeat1 = 265, + aux_sym_match_value_pattern_repeat1 = 266, + aux_sym_match_mapping_pattern_repeat1 = 267, + aux_sym_match_class_pattern_repeat1 = 268, + aux_sym_match_class_pattern_repeat2 = 269, + aux_sym_global_statement_repeat1 = 270, + aux_sym_type_parameters_repeat1 = 271, + aux_sym_argument_list_repeat1 = 272, + aux_sym_decorated_definition_repeat1 = 273, + aux_sym_expression_list_repeat1 = 274, + aux_sym__parameters_repeat1 = 275, + aux_sym__patterns_repeat1 = 276, + aux_sym_comparison_operator_repeat1 = 277, + aux_sym_index_expression_list_repeat1 = 278, + aux_sym_dictionary_repeat1 = 279, + aux_sym__comprehension_clauses_repeat1 = 280, + aux_sym__collection_elements_repeat1 = 281, + aux_sym_for_in_clause_repeat1 = 282, + aux_sym_concatenated_string_repeat1 = 283, + aux_sym_string_repeat1 = 284, + aux_sym_concatenated_template_string_repeat1 = 285, + aux_sym_string_content_repeat1 = 286, + aux_sym_format_specifier_repeat1 = 287, + alias_sym_format_expression = 288, + anon_alias_sym_isnot = 289, + anon_alias_sym_notin = 290, }; static const char * const ts_symbol_names[] = { @@ -411,6 +417,7 @@ static const char * const ts_symbol_names[] = { [sym__string_start] = "\"", [sym__string_content] = "_string_content", [sym__string_end] = "\"", + [sym__template_string_start] = "\"", [sym_module] = "module", [sym__statement] = "_statement", [sym__simple_statements] = "_simple_statements", @@ -439,6 +446,7 @@ static const char * const ts_symbol_names[] = { [sym_for_statement] = "for_statement", [sym_while_statement] = "while_statement", [sym_try_statement] = "try_statement", + [sym_exception_list] = "exception_list", [sym_except_clause] = "except_clause", [sym_except_group_clause] = "except_group_clause", [sym_finally_clause] = "finally_clause", @@ -545,6 +553,8 @@ static const char * const ts_symbol_names[] = { [sym_conditional_expression] = "conditional_expression", [sym_concatenated_string] = "concatenated_string", [sym_string] = "string", + [sym_concatenated_template_string] = "concatenated_template_string", + [sym_template_string] = "template_string", [sym_string_content] = "string_content", [sym_interpolation] = "interpolation", [sym__f_expression] = "_f_expression", @@ -561,6 +571,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_if_statement_repeat1] = "if_statement_repeat1", [aux_sym_try_statement_repeat1] = "try_statement_repeat1", [aux_sym_try_statement_repeat2] = "try_statement_repeat2", + [aux_sym_exception_list_repeat1] = "exception_list_repeat1", [aux_sym_with_clause_repeat1] = "with_clause_repeat1", [aux_sym_cases_repeat1] = "cases_repeat1", [aux_sym_open_sequence_match_pattern_repeat1] = "open_sequence_match_pattern_repeat1", @@ -584,6 +595,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_for_in_clause_repeat1] = "for_in_clause_repeat1", [aux_sym_concatenated_string_repeat1] = "concatenated_string_repeat1", [aux_sym_string_repeat1] = "string_repeat1", + [aux_sym_concatenated_template_string_repeat1] = "concatenated_template_string_repeat1", [aux_sym_string_content_repeat1] = "string_content_repeat1", [aux_sym_format_specifier_repeat1] = "format_specifier_repeat1", [alias_sym_format_expression] = "format_expression", @@ -699,6 +711,7 @@ static const TSSymbol ts_symbol_map[] = { [sym__string_start] = sym__string_start, [sym__string_content] = sym__string_content, [sym__string_end] = sym__string_start, + [sym__template_string_start] = sym__string_start, [sym_module] = sym_module, [sym__statement] = sym__statement, [sym__simple_statements] = sym__simple_statements, @@ -727,6 +740,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_for_statement] = sym_for_statement, [sym_while_statement] = sym_while_statement, [sym_try_statement] = sym_try_statement, + [sym_exception_list] = sym_exception_list, [sym_except_clause] = sym_except_clause, [sym_except_group_clause] = sym_except_group_clause, [sym_finally_clause] = sym_finally_clause, @@ -833,6 +847,8 @@ static const TSSymbol ts_symbol_map[] = { [sym_conditional_expression] = sym_conditional_expression, [sym_concatenated_string] = sym_concatenated_string, [sym_string] = sym_string, + [sym_concatenated_template_string] = sym_concatenated_template_string, + [sym_template_string] = sym_template_string, [sym_string_content] = sym_string_content, [sym_interpolation] = sym_interpolation, [sym__f_expression] = sym__f_expression, @@ -849,6 +865,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_if_statement_repeat1] = aux_sym_if_statement_repeat1, [aux_sym_try_statement_repeat1] = aux_sym_try_statement_repeat1, [aux_sym_try_statement_repeat2] = aux_sym_try_statement_repeat2, + [aux_sym_exception_list_repeat1] = aux_sym_exception_list_repeat1, [aux_sym_with_clause_repeat1] = aux_sym_with_clause_repeat1, [aux_sym_cases_repeat1] = aux_sym_cases_repeat1, [aux_sym_open_sequence_match_pattern_repeat1] = aux_sym_open_sequence_match_pattern_repeat1, @@ -872,6 +889,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_for_in_clause_repeat1] = aux_sym_for_in_clause_repeat1, [aux_sym_concatenated_string_repeat1] = aux_sym_concatenated_string_repeat1, [aux_sym_string_repeat1] = aux_sym_string_repeat1, + [aux_sym_concatenated_template_string_repeat1] = aux_sym_concatenated_template_string_repeat1, [aux_sym_string_content_repeat1] = aux_sym_string_content_repeat1, [aux_sym_format_specifier_repeat1] = aux_sym_format_specifier_repeat1, [alias_sym_format_expression] = alias_sym_format_expression, @@ -1308,6 +1326,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [sym__template_string_start] = { + .visible = true, + .named = false, + }, [sym_module] = { .visible = true, .named = true, @@ -1420,6 +1442,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_exception_list] = { + .visible = true, + .named = true, + }, [sym_except_clause] = { .visible = true, .named = true, @@ -1848,6 +1874,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_concatenated_template_string] = { + .visible = true, + .named = true, + }, + [sym_template_string] = { + .visible = true, + .named = true, + }, [sym_string_content] = { .visible = true, .named = true, @@ -1912,6 +1946,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_exception_list_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_with_clause_repeat1] = { .visible = false, .named = false, @@ -2004,6 +2042,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_concatenated_template_string_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_string_content_repeat1] = { .visible = false, .named = false, @@ -2990,2295 +3032,761 @@ static const uint16_t ts_non_terminal_alias_map[] = { 0, }; -static const TSStateId ts_primary_state_ids[STATE_COUNT] = { - [0] = 0, - [1] = 1, - [2] = 2, - [3] = 3, - [4] = 4, - [5] = 5, - [6] = 6, - [7] = 7, - [8] = 8, - [9] = 9, - [10] = 10, - [11] = 11, - [12] = 12, - [13] = 13, - [14] = 14, - [15] = 15, - [16] = 16, - [17] = 17, - [18] = 18, - [19] = 19, - [20] = 20, - [21] = 21, - [22] = 22, - [23] = 23, - [24] = 24, - [25] = 25, - [26] = 26, - [27] = 27, - [28] = 28, - [29] = 29, - [30] = 27, - [31] = 21, - [32] = 32, - [33] = 3, - [34] = 4, - [35] = 5, - [36] = 6, - [37] = 7, - [38] = 8, - [39] = 9, - [40] = 10, - [41] = 11, - [42] = 12, - [43] = 13, - [44] = 14, - [45] = 15, - [46] = 16, - [47] = 17, - [48] = 18, - [49] = 19, - [50] = 20, - [51] = 22, - [52] = 23, - [53] = 24, - [54] = 25, - [55] = 26, - [56] = 2, - [57] = 28, - [58] = 29, - [59] = 32, - [60] = 60, - [61] = 61, - [62] = 60, - [63] = 63, - [64] = 60, - [65] = 63, - [66] = 66, - [67] = 66, - [68] = 68, - [69] = 69, - [70] = 70, - [71] = 71, - [72] = 72, - [73] = 73, - [74] = 74, - [75] = 75, - [76] = 76, - [77] = 77, - [78] = 78, - [79] = 79, - [80] = 80, - [81] = 81, - [82] = 71, - [83] = 74, - [84] = 76, - [85] = 78, - [86] = 81, - [87] = 87, - [88] = 87, - [89] = 89, - [90] = 90, - [91] = 89, - [92] = 92, - [93] = 93, - [94] = 94, - [95] = 95, - [96] = 90, - [97] = 97, - [98] = 98, - [99] = 99, - [100] = 100, - [101] = 101, - [102] = 92, - [103] = 93, - [104] = 104, - [105] = 94, - [106] = 106, - [107] = 107, - [108] = 95, - [109] = 97, - [110] = 110, - [111] = 69, - [112] = 98, - [113] = 70, - [114] = 99, - [115] = 73, - [116] = 100, - [117] = 75, - [118] = 101, - [119] = 77, - [120] = 79, - [121] = 104, - [122] = 80, - [123] = 106, - [124] = 107, - [125] = 68, - [126] = 110, - [127] = 127, - [128] = 127, - [129] = 129, - [130] = 129, - [131] = 127, - [132] = 129, - [133] = 133, - [134] = 134, - [135] = 135, - [136] = 136, - [137] = 136, - [138] = 138, - [139] = 138, - [140] = 140, - [141] = 141, - [142] = 136, - [143] = 136, - [144] = 134, - [145] = 138, - [146] = 146, - [147] = 138, - [148] = 146, - [149] = 149, - [150] = 150, - [151] = 151, - [152] = 152, - [153] = 153, - [154] = 153, - [155] = 155, - [156] = 156, - [157] = 157, - [158] = 157, - [159] = 157, - [160] = 160, - [161] = 161, - [162] = 162, - [163] = 163, - [164] = 164, - [165] = 164, - [166] = 164, - [167] = 167, - [168] = 168, - [169] = 169, - [170] = 170, - [171] = 171, - [172] = 170, - [173] = 170, - [174] = 174, - [175] = 171, - [176] = 176, - [177] = 177, - [178] = 152, - [179] = 179, - [180] = 180, - [181] = 181, - [182] = 180, - [183] = 183, - [184] = 162, - [185] = 161, - [186] = 186, - [187] = 187, - [188] = 188, - [189] = 189, - [190] = 190, - [191] = 186, - [192] = 187, - [193] = 188, - [194] = 194, - [195] = 195, - [196] = 183, - [197] = 181, - [198] = 189, - [199] = 190, - [200] = 200, - [201] = 181, - [202] = 180, - [203] = 163, - [204] = 180, - [205] = 189, - [206] = 190, - [207] = 186, - [208] = 187, - [209] = 188, - [210] = 181, - [211] = 211, - [212] = 212, - [213] = 213, - [214] = 214, - [215] = 215, - [216] = 216, - [217] = 217, - [218] = 218, - [219] = 219, - [220] = 214, - [221] = 221, - [222] = 214, - [223] = 223, - [224] = 224, - [225] = 225, - [226] = 226, - [227] = 223, - [228] = 228, - [229] = 229, - [230] = 230, - [231] = 229, - [232] = 232, - [233] = 226, - [234] = 232, - [235] = 235, - [236] = 230, - [237] = 228, - [238] = 238, - [239] = 239, - [240] = 240, - [241] = 239, - [242] = 242, - [243] = 243, - [244] = 240, - [245] = 243, - [246] = 238, - [247] = 243, - [248] = 242, - [249] = 238, - [250] = 242, - [251] = 251, - [252] = 252, - [253] = 253, - [254] = 251, - [255] = 255, - [256] = 256, - [257] = 257, - [258] = 258, - [259] = 259, - [260] = 260, - [261] = 261, - [262] = 262, - [263] = 263, - [264] = 264, - [265] = 265, - [266] = 266, - [267] = 267, - [268] = 268, - [269] = 253, - [270] = 255, - [271] = 268, - [272] = 263, - [273] = 273, - [274] = 260, - [275] = 252, - [276] = 276, - [277] = 266, - [278] = 278, - [279] = 262, - [280] = 280, - [281] = 264, - [282] = 267, - [283] = 261, - [284] = 257, - [285] = 276, - [286] = 259, - [287] = 287, - [288] = 288, - [289] = 289, - [290] = 290, - [291] = 291, - [292] = 292, - [293] = 293, - [294] = 294, - [295] = 295, - [296] = 296, - [297] = 297, - [298] = 298, - [299] = 299, - [300] = 300, - [301] = 301, - [302] = 302, - [303] = 291, - [304] = 304, - [305] = 298, - [306] = 306, - [307] = 307, - [308] = 292, - [309] = 309, - [310] = 310, - [311] = 311, - [312] = 288, - [313] = 313, - [314] = 219, - [315] = 315, - [316] = 316, - [317] = 317, - [318] = 217, - [319] = 319, - [320] = 320, - [321] = 321, - [322] = 322, - [323] = 323, - [324] = 324, - [325] = 325, - [326] = 326, - [327] = 327, - [328] = 328, - [329] = 329, - [330] = 330, - [331] = 331, - [332] = 315, - [333] = 320, - [334] = 321, - [335] = 322, - [336] = 323, - [337] = 324, - [338] = 325, - [339] = 326, - [340] = 327, - [341] = 328, - [342] = 329, - [343] = 313, - [344] = 319, - [345] = 345, - [346] = 346, - [347] = 347, - [348] = 348, - [349] = 349, - [350] = 350, - [351] = 351, - [352] = 352, - [353] = 353, - [354] = 354, - [355] = 355, - [356] = 356, - [357] = 357, - [358] = 358, - [359] = 359, - [360] = 360, - [361] = 361, - [362] = 362, - [363] = 363, - [364] = 364, - [365] = 365, - [366] = 366, - [367] = 367, - [368] = 368, - [369] = 369, - [370] = 370, - [371] = 371, - [372] = 372, - [373] = 373, - [374] = 374, - [375] = 375, - [376] = 376, - [377] = 377, - [378] = 378, - [379] = 379, - [380] = 359, - [381] = 363, - [382] = 364, - [383] = 372, - [384] = 373, - [385] = 385, - [386] = 349, - [387] = 378, - [388] = 388, - [389] = 389, - [390] = 390, - [391] = 347, - [392] = 350, - [393] = 355, - [394] = 388, - [395] = 357, - [396] = 360, - [397] = 361, - [398] = 398, - [399] = 399, - [400] = 365, - [401] = 366, - [402] = 379, - [403] = 403, - [404] = 371, - [405] = 405, - [406] = 406, - [407] = 390, - [408] = 408, - [409] = 378, - [410] = 359, - [411] = 364, - [412] = 372, - [413] = 373, - [414] = 346, - [415] = 388, - [416] = 378, - [417] = 359, - [418] = 364, - [419] = 372, - [420] = 373, - [421] = 346, - [422] = 388, - [423] = 353, - [424] = 368, - [425] = 425, - [426] = 426, - [427] = 427, - [428] = 425, - [429] = 429, - [430] = 430, - [431] = 431, - [432] = 368, - [433] = 433, - [434] = 346, - [435] = 368, - [436] = 370, - [437] = 370, - [438] = 370, - [439] = 389, - [440] = 375, - [441] = 406, - [442] = 348, - [443] = 356, - [444] = 362, - [445] = 445, - [446] = 446, - [447] = 447, - [448] = 447, - [449] = 449, - [450] = 449, - [451] = 451, - [452] = 452, - [453] = 453, - [454] = 451, - [455] = 446, - [456] = 452, - [457] = 453, - [458] = 458, - [459] = 459, - [460] = 460, - [461] = 461, - [462] = 462, - [463] = 463, - [464] = 464, - [465] = 465, - [466] = 466, - [467] = 467, - [468] = 468, - [469] = 469, - [470] = 470, - [471] = 471, - [472] = 472, - [473] = 473, - [474] = 474, - [475] = 475, - [476] = 476, - [477] = 477, - [478] = 478, - [479] = 462, - [480] = 472, - [481] = 481, - [482] = 482, - [483] = 483, - [484] = 484, - [485] = 485, - [486] = 486, - [487] = 487, - [488] = 488, - [489] = 489, - [490] = 490, - [491] = 491, - [492] = 492, - [493] = 493, - [494] = 494, - [495] = 495, - [496] = 459, - [497] = 497, - [498] = 465, - [499] = 466, - [500] = 467, - [501] = 469, - [502] = 476, - [503] = 503, - [504] = 489, - [505] = 497, - [506] = 503, - [507] = 478, - [508] = 508, - [509] = 458, - [510] = 510, - [511] = 481, - [512] = 512, - [513] = 513, - [514] = 514, - [515] = 508, - [516] = 482, - [517] = 517, - [518] = 518, - [519] = 519, - [520] = 520, - [521] = 521, - [522] = 510, - [523] = 483, - [524] = 524, - [525] = 525, - [526] = 512, - [527] = 468, - [528] = 513, - [529] = 514, - [530] = 463, - [531] = 484, - [532] = 460, - [533] = 486, - [534] = 517, - [535] = 518, - [536] = 461, - [537] = 474, - [538] = 519, - [539] = 520, - [540] = 521, - [541] = 487, - [542] = 488, - [543] = 543, - [544] = 475, - [545] = 490, - [546] = 470, - [547] = 524, - [548] = 525, - [549] = 477, - [550] = 464, - [551] = 491, - [552] = 492, - [553] = 493, - [554] = 494, - [555] = 495, - [556] = 471, - [557] = 557, - [558] = 485, - [559] = 559, - [560] = 560, - [561] = 561, - [562] = 560, - [563] = 563, - [564] = 561, - [565] = 565, - [566] = 566, - [567] = 567, - [568] = 568, - [569] = 569, - [570] = 570, - [571] = 571, - [572] = 572, - [573] = 573, - [574] = 574, - [575] = 575, - [576] = 576, - [577] = 577, - [578] = 578, - [579] = 579, - [580] = 580, - [581] = 581, - [582] = 582, - [583] = 583, - [584] = 584, - [585] = 585, - [586] = 586, - [587] = 587, - [588] = 588, - [589] = 589, - [590] = 590, - [591] = 591, - [592] = 592, - [593] = 593, - [594] = 594, - [595] = 590, - [596] = 596, - [597] = 597, - [598] = 598, - [599] = 599, - [600] = 600, - [601] = 601, - [602] = 602, - [603] = 603, - [604] = 604, - [605] = 605, - [606] = 606, - [607] = 607, - [608] = 608, - [609] = 606, - [610] = 607, - [611] = 611, - [612] = 612, - [613] = 613, - [614] = 614, - [615] = 615, - [616] = 616, - [617] = 607, - [618] = 618, - [619] = 607, - [620] = 608, - [621] = 611, - [622] = 612, - [623] = 613, - [624] = 614, - [625] = 615, - [626] = 616, - [627] = 627, - [628] = 628, - [629] = 629, - [630] = 618, - [631] = 629, - [632] = 627, - [633] = 628, - [634] = 634, - [635] = 635, - [636] = 636, - [637] = 637, - [638] = 638, - [639] = 639, - [640] = 640, - [641] = 641, - [642] = 642, - [643] = 566, - [644] = 644, - [645] = 645, - [646] = 646, - [647] = 569, - [648] = 648, - [649] = 649, - [650] = 645, - [651] = 646, - [652] = 646, - [653] = 644, - [654] = 642, - [655] = 635, - [656] = 656, - [657] = 657, - [658] = 658, - [659] = 642, - [660] = 638, - [661] = 635, - [662] = 636, - [663] = 637, - [664] = 638, - [665] = 639, - [666] = 640, - [667] = 641, - [668] = 642, - [669] = 636, - [670] = 645, - [671] = 657, - [672] = 646, - [673] = 640, - [674] = 658, - [675] = 644, - [676] = 644, - [677] = 639, - [678] = 645, - [679] = 641, - [680] = 635, - [681] = 636, - [682] = 637, - [683] = 638, - [684] = 639, - [685] = 640, - [686] = 641, - [687] = 637, - [688] = 566, - [689] = 590, - [690] = 634, - [691] = 656, - [692] = 569, - [693] = 565, - [694] = 612, - [695] = 572, - [696] = 606, - [697] = 627, - [698] = 590, - [699] = 565, - [700] = 570, - [701] = 628, - [702] = 614, - [703] = 611, - [704] = 618, - [705] = 615, - [706] = 613, - [707] = 616, - [708] = 608, - [709] = 629, - [710] = 710, - [711] = 608, - [712] = 712, - [713] = 606, - [714] = 330, - [715] = 657, - [716] = 716, - [717] = 570, - [718] = 615, - [719] = 627, - [720] = 618, - [721] = 628, - [722] = 431, - [723] = 354, - [724] = 572, - [725] = 331, - [726] = 726, - [727] = 629, - [728] = 377, - [729] = 611, - [730] = 616, - [731] = 612, - [732] = 403, - [733] = 613, - [734] = 614, - [735] = 658, - [736] = 581, - [737] = 573, - [738] = 604, - [739] = 575, - [740] = 577, - [741] = 431, - [742] = 403, - [743] = 354, - [744] = 656, - [745] = 634, - [746] = 588, - [747] = 593, - [748] = 580, - [749] = 582, - [750] = 591, - [751] = 592, - [752] = 598, - [753] = 596, - [754] = 597, - [755] = 605, - [756] = 599, - [757] = 601, - [758] = 602, - [759] = 603, - [760] = 594, - [761] = 574, - [762] = 587, - [763] = 578, - [764] = 586, - [765] = 576, - [766] = 583, - [767] = 600, - [768] = 579, - [769] = 657, - [770] = 658, - [771] = 584, - [772] = 585, - [773] = 589, - [774] = 602, - [775] = 587, - [776] = 578, - [777] = 579, - [778] = 584, - [779] = 585, - [780] = 573, - [781] = 604, - [782] = 575, - [783] = 577, - [784] = 217, - [785] = 580, - [786] = 582, - [787] = 591, - [788] = 592, - [789] = 596, - [790] = 597, - [791] = 605, - [792] = 601, - [793] = 588, - [794] = 712, - [795] = 710, - [796] = 589, - [797] = 598, - [798] = 599, - [799] = 593, - [800] = 594, - [801] = 574, - [802] = 586, - [803] = 576, - [804] = 583, - [805] = 600, - [806] = 219, - [807] = 581, - [808] = 603, - [809] = 809, - [810] = 809, - [811] = 811, - [812] = 812, - [813] = 813, - [814] = 814, - [815] = 815, - [816] = 816, - [817] = 817, - [818] = 818, - [819] = 819, - [820] = 820, - [821] = 821, - [822] = 822, - [823] = 823, - [824] = 824, - [825] = 825, - [826] = 826, - [827] = 827, - [828] = 828, - [829] = 829, - [830] = 828, - [831] = 829, - [832] = 832, - [833] = 833, - [834] = 834, - [835] = 829, - [836] = 836, - [837] = 828, - [838] = 838, - [839] = 839, - [840] = 840, - [841] = 829, - [842] = 842, - [843] = 828, - [844] = 844, - [845] = 845, - [846] = 846, - [847] = 847, - [848] = 846, - [849] = 846, - [850] = 846, - [851] = 851, - [852] = 852, - [853] = 853, - [854] = 854, - [855] = 855, - [856] = 856, - [857] = 856, - [858] = 858, - [859] = 858, - [860] = 860, - [861] = 861, - [862] = 861, - [863] = 863, - [864] = 864, - [865] = 865, - [866] = 866, - [867] = 867, - [868] = 867, - [869] = 869, - [870] = 870, - [871] = 871, - [872] = 872, - [873] = 873, - [874] = 874, - [875] = 871, - [876] = 876, - [877] = 872, - [878] = 873, - [879] = 879, - [880] = 866, - [881] = 874, - [882] = 882, - [883] = 883, - [884] = 884, - [885] = 876, - [886] = 886, - [887] = 879, - [888] = 867, - [889] = 889, - [890] = 889, - [891] = 891, - [892] = 891, - [893] = 893, - [894] = 894, - [895] = 895, - [896] = 896, - [897] = 897, - [898] = 898, - [899] = 899, - [900] = 894, - [901] = 895, - [902] = 902, - [903] = 891, - [904] = 889, - [905] = 894, - [906] = 895, - [907] = 891, - [908] = 908, - [909] = 889, - [910] = 893, - [911] = 893, - [912] = 912, - [913] = 913, - [914] = 914, - [915] = 915, - [916] = 916, - [917] = 917, - [918] = 918, - [919] = 919, - [920] = 920, - [921] = 921, - [922] = 922, - [923] = 923, - [924] = 924, - [925] = 925, - [926] = 926, - [927] = 860, - [928] = 928, - [929] = 929, - [930] = 930, - [931] = 931, - [932] = 932, - [933] = 933, - [934] = 934, - [935] = 935, - [936] = 936, - [937] = 937, - [938] = 938, - [939] = 871, - [940] = 863, - [941] = 941, - [942] = 942, - [943] = 943, - [944] = 944, - [945] = 945, - [946] = 872, - [947] = 947, - [948] = 948, - [949] = 949, - [950] = 950, - [951] = 951, - [952] = 879, - [953] = 953, - [954] = 954, - [955] = 955, - [956] = 956, - [957] = 932, - [958] = 873, - [959] = 876, - [960] = 908, - [961] = 961, - [962] = 962, - [963] = 963, - [964] = 964, - [965] = 965, - [966] = 866, - [967] = 874, - [968] = 968, - [969] = 969, - [970] = 866, - [971] = 874, - [972] = 972, - [973] = 973, - [974] = 974, - [975] = 975, - [976] = 876, - [977] = 977, - [978] = 898, - [979] = 979, - [980] = 980, - [981] = 981, - [982] = 863, - [983] = 879, - [984] = 984, - [985] = 985, - [986] = 986, - [987] = 987, - [988] = 988, - [989] = 989, - [990] = 990, - [991] = 991, - [992] = 973, - [993] = 993, - [994] = 994, - [995] = 995, - [996] = 990, - [997] = 997, - [998] = 902, - [999] = 999, - [1000] = 1000, - [1001] = 871, - [1002] = 975, - [1003] = 860, - [1004] = 1004, - [1005] = 1005, - [1006] = 872, - [1007] = 873, - [1008] = 870, - [1009] = 1009, - [1010] = 990, - [1011] = 1011, - [1012] = 1012, - [1013] = 1013, - [1014] = 1014, - [1015] = 1015, - [1016] = 1016, - [1017] = 1017, - [1018] = 1018, - [1019] = 1019, - [1020] = 1020, - [1021] = 1021, - [1022] = 1014, - [1023] = 1023, - [1024] = 1024, - [1025] = 995, - [1026] = 1026, - [1027] = 1027, - [1028] = 1012, - [1029] = 865, - [1030] = 1011, - [1031] = 1031, - [1032] = 1032, - [1033] = 1033, - [1034] = 1032, - [1035] = 1035, - [1036] = 1036, - [1037] = 1037, - [1038] = 1038, - [1039] = 1039, - [1040] = 1017, - [1041] = 1041, - [1042] = 1042, - [1043] = 1043, - [1044] = 1044, - [1045] = 1039, - [1046] = 1046, - [1047] = 1046, - [1048] = 1048, - [1049] = 1049, - [1050] = 1050, - [1051] = 1051, - [1052] = 1052, - [1053] = 1053, - [1054] = 1054, - [1055] = 1055, - [1056] = 1056, - [1057] = 1057, - [1058] = 1058, - [1059] = 1059, - [1060] = 1060, - [1061] = 1061, - [1062] = 882, - [1063] = 984, - [1064] = 1064, - [1065] = 933, - [1066] = 1066, - [1067] = 1060, - [1068] = 1068, - [1069] = 1069, - [1070] = 1070, - [1071] = 1071, - [1072] = 899, - [1073] = 1073, - [1074] = 1074, - [1075] = 925, - [1076] = 1076, - [1077] = 1053, - [1078] = 1078, - [1079] = 936, - [1080] = 1080, - [1081] = 1081, - [1082] = 1082, - [1083] = 1083, - [1084] = 1084, - [1085] = 1085, - [1086] = 1086, - [1087] = 1087, - [1088] = 1088, - [1089] = 1089, - [1090] = 1090, - [1091] = 1088, - [1092] = 1092, - [1093] = 1093, - [1094] = 1094, - [1095] = 1095, - [1096] = 1096, - [1097] = 1097, - [1098] = 1098, - [1099] = 1099, - [1100] = 1100, - [1101] = 886, - [1102] = 1102, - [1103] = 1103, - [1104] = 1104, - [1105] = 1086, - [1106] = 1087, - [1107] = 1107, - [1108] = 1108, - [1109] = 1109, - [1110] = 1055, - [1111] = 1111, - [1112] = 1112, - [1113] = 1113, - [1114] = 1114, - [1115] = 1115, - [1116] = 1116, - [1117] = 1117, - [1118] = 1118, - [1119] = 1119, - [1120] = 1120, - [1121] = 1121, - [1122] = 1122, - [1123] = 1123, - [1124] = 1124, - [1125] = 1090, - [1126] = 1126, - [1127] = 1127, - [1128] = 1005, - [1129] = 1049, - [1130] = 1130, - [1131] = 1131, - [1132] = 1090, - [1133] = 1133, - [1134] = 1089, - [1135] = 1096, - [1136] = 1136, - [1137] = 1074, - [1138] = 1138, - [1139] = 1139, - [1140] = 1140, - [1141] = 1141, - [1142] = 1115, - [1143] = 1085, - [1144] = 1144, - [1145] = 1130, - [1146] = 1100, - [1147] = 1090, - [1148] = 1140, - [1149] = 1149, - [1150] = 1050, - [1151] = 1151, - [1152] = 1152, - [1153] = 1153, - [1154] = 1154, - [1155] = 1155, - [1156] = 1156, - [1157] = 1133, - [1158] = 1158, - [1159] = 1159, - [1160] = 1160, - [1161] = 1161, - [1162] = 1162, - [1163] = 1117, - [1164] = 1107, - [1165] = 1165, - [1166] = 1166, - [1167] = 1167, - [1168] = 1136, - [1169] = 1169, - [1170] = 1155, - [1171] = 1171, - [1172] = 1172, - [1173] = 1173, - [1174] = 1174, - [1175] = 1023, - [1176] = 1176, - [1177] = 1177, - [1178] = 1178, - [1179] = 1179, - [1180] = 1036, - [1181] = 1181, - [1182] = 570, - [1183] = 1183, - [1184] = 1184, - [1185] = 1124, - [1186] = 1186, - [1187] = 1187, - [1188] = 1188, - [1189] = 1189, - [1190] = 1190, - [1191] = 1191, - [1192] = 1192, - [1193] = 572, - [1194] = 1126, - [1195] = 1195, - [1196] = 1196, - [1197] = 1197, - [1198] = 1198, - [1199] = 1199, - [1200] = 1200, - [1201] = 1201, - [1202] = 1202, - [1203] = 1165, - [1204] = 1204, - [1205] = 1205, - [1206] = 1206, - [1207] = 1207, - [1208] = 1208, - [1209] = 1209, - [1210] = 1210, - [1211] = 1211, - [1212] = 1212, - [1213] = 1213, - [1214] = 1214, - [1215] = 1215, - [1216] = 1216, - [1217] = 1042, - [1218] = 1218, - [1219] = 1219, - [1220] = 1158, - [1221] = 1156, - [1222] = 1222, - [1223] = 1223, - [1224] = 1224, - [1225] = 1189, - [1226] = 1226, - [1227] = 1227, - [1228] = 1158, - [1229] = 1188, - [1230] = 1190, - [1231] = 1231, - [1232] = 1232, - [1233] = 1159, - [1234] = 1202, - [1235] = 1235, - [1236] = 1187, - [1237] = 1237, - [1238] = 1167, - [1239] = 1169, - [1240] = 1155, - [1241] = 1241, - [1242] = 1156, - [1243] = 1227, - [1244] = 1244, - [1245] = 1167, - [1246] = 1246, - [1247] = 1224, - [1248] = 1195, - [1249] = 1171, - [1250] = 1250, - [1251] = 1227, - [1252] = 1252, - [1253] = 1253, - [1254] = 1254, - [1255] = 1255, - [1256] = 1256, - [1257] = 1257, - [1258] = 1114, - [1259] = 1041, - [1260] = 1198, - [1261] = 1224, - [1262] = 1250, - [1263] = 1188, - [1264] = 1264, - [1265] = 1190, - [1266] = 1231, - [1267] = 1267, - [1268] = 1268, - [1269] = 1269, - [1270] = 1270, - [1271] = 1176, - [1272] = 1272, - [1273] = 1169, - [1274] = 1274, - [1275] = 1159, - [1276] = 1202, - [1277] = 1277, - [1278] = 1177, - [1279] = 1172, - [1280] = 1187, - [1281] = 1281, - [1282] = 1282, - [1283] = 1283, - [1284] = 1283, - [1285] = 1285, - [1286] = 252, - [1287] = 1287, - [1288] = 1288, - [1289] = 1289, - [1290] = 1290, - [1291] = 1291, - [1292] = 1292, - [1293] = 1293, - [1294] = 1294, - [1295] = 1255, - [1296] = 1296, - [1297] = 1297, - [1298] = 1298, - [1299] = 1299, - [1300] = 1300, - [1301] = 1301, - [1302] = 1302, - [1303] = 1303, - [1304] = 1304, - [1305] = 1305, - [1306] = 1306, - [1307] = 1307, - [1308] = 1308, - [1309] = 1309, - [1310] = 1310, - [1311] = 261, - [1312] = 1312, - [1313] = 1313, - [1314] = 1314, - [1315] = 1000, - [1316] = 1316, - [1317] = 1317, - [1318] = 1318, - [1319] = 1319, - [1320] = 1320, - [1321] = 262, - [1322] = 1268, - [1323] = 1323, - [1324] = 1324, - [1325] = 1325, - [1326] = 1244, - [1327] = 1327, - [1328] = 1288, - [1329] = 1302, - [1330] = 1299, - [1331] = 1324, - [1332] = 1332, - [1333] = 264, - [1334] = 1334, - [1335] = 1335, - [1336] = 1336, - [1337] = 1337, - [1338] = 1338, - [1339] = 1339, - [1340] = 1340, - [1341] = 1341, - [1342] = 1342, - [1343] = 1343, - [1344] = 1344, - [1345] = 1345, - [1346] = 1289, - [1347] = 1347, - [1348] = 1303, - [1349] = 260, - [1350] = 1350, - [1351] = 1351, - [1352] = 1352, - [1353] = 1353, - [1354] = 1354, - [1355] = 1355, - [1356] = 1356, - [1357] = 1357, - [1358] = 1358, - [1359] = 1359, - [1360] = 1360, - [1361] = 1361, - [1362] = 1362, - [1363] = 1363, - [1364] = 1364, - [1365] = 1365, - [1366] = 1366, - [1367] = 1360, - [1368] = 1355, - [1369] = 1369, - [1370] = 1356, - [1371] = 1364, - [1372] = 1372, - [1373] = 1359, - [1374] = 1363, - [1375] = 1375, - [1376] = 1375, - [1377] = 1377, - [1378] = 1378, - [1379] = 1379, - [1380] = 1359, - [1381] = 1381, - [1382] = 1382, - [1383] = 1383, - [1384] = 1384, - [1385] = 1385, - [1386] = 1386, - [1387] = 1387, - [1388] = 1388, - [1389] = 1375, - [1390] = 1390, - [1391] = 1391, - [1392] = 1383, - [1393] = 1356, - [1394] = 1361, - [1395] = 1395, - [1396] = 1361, - [1397] = 1397, - [1398] = 1398, - [1399] = 1399, - [1400] = 1400, - [1401] = 1355, - [1402] = 1385, - [1403] = 1403, - [1404] = 1404, - [1405] = 1405, - [1406] = 1406, - [1407] = 1362, - [1408] = 1408, - [1409] = 1405, - [1410] = 1410, - [1411] = 1411, - [1412] = 1412, - [1413] = 1413, - [1414] = 1365, - [1415] = 1415, - [1416] = 1404, - [1417] = 1417, - [1418] = 1418, - [1419] = 1358, - [1420] = 1378, - [1421] = 1357, - [1422] = 1354, - [1423] = 1423, - [1424] = 1413, - [1425] = 1425, - [1426] = 1426, - [1427] = 1427, - [1428] = 1382, - [1429] = 1429, - [1430] = 1391, - [1431] = 1410, - [1432] = 1432, - [1433] = 1412, - [1434] = 1434, - [1435] = 1435, - [1436] = 1436, - [1437] = 1437, - [1438] = 1403, - [1439] = 1366, - [1440] = 1440, - [1441] = 1432, - [1442] = 1442, - [1443] = 1426, - [1444] = 1434, - [1445] = 1363, - [1446] = 1446, - [1447] = 1408, - [1448] = 1362, - [1449] = 1423, - [1450] = 1450, - [1451] = 1361, - [1452] = 1452, - [1453] = 1400, - [1454] = 1454, - [1455] = 1366, - [1456] = 1378, - [1457] = 1360, - [1458] = 1458, - [1459] = 1459, - [1460] = 1460, - [1461] = 1461, - [1462] = 1426, - [1463] = 1381, - [1464] = 1458, - [1465] = 1465, - [1466] = 1440, - [1467] = 1356, - [1468] = 1364, - [1469] = 1379, - [1470] = 1418, - [1471] = 1458, - [1472] = 1437, - [1473] = 1459, - [1474] = 1450, - [1475] = 1429, - [1476] = 1476, - [1477] = 1477, - [1478] = 1478, -}; - 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 + return (c < 43020 + ? (c < 4096 + ? (c < 2693 + ? (c < 1969 + ? (c < 910 + ? (c < 736 + ? (c < 186 ? (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 <= 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 < 1646 + ? (c < 1369 + ? (c < 1162 + ? (c < 1015 + ? (c >= 931 && c <= 1013) + : c <= 1153) + : (c <= 1327 || (c >= 1329 && c <= 1366))) + : (c <= 1369 || (c < 1519 + ? (c < 1488 + ? (c >= 1376 && c <= 1416) + : c <= 1514) + : (c <= 1522 || (c >= 1568 && c <= 1610))))) + : (c <= 1647 || (c < 1786 + ? (c < 1765 + ? (c < 1749 + ? (c >= 1649 && c <= 1747) + : c <= 1749) + : (c <= 1766 || (c >= 1774 && c <= 1775))) + : (c <= 1788 || (c < 1810 + ? (c < 1808 + ? c == 1791 + : c <= 1808) + : (c <= 1839 || (c >= 1869 && c <= 1957))))))))) + : (c <= 1969 || (c < 2474 ? (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 < 2074 + ? (c < 2042 + ? (c < 2036 + ? (c >= 1994 && c <= 2026) + : c <= 2037) + : (c <= 2042 || (c >= 2048 && c <= 2069))) + : (c <= 2074 || (c < 2112 + ? (c < 2088 + ? c == 2084 + : c <= 2088) + : (c <= 2136 || (c >= 2144 && c <= 2154))))) + : (c <= 2228 || (c < 2392 + ? (c < 2365 + ? (c < 2308 + ? (c >= 2230 && c <= 2247) + : c <= 2361) + : (c <= 2365 || c == 2384)) + : (c <= 2401 || (c < 2447 + ? (c < 2437 + ? (c >= 2417 && c <= 2432) + : c <= 2444) + : (c <= 2448 || (c >= 2451 && c <= 2472))))))) + : (c <= 2480 || (c < 2575 + ? (c < 2524 + ? (c < 2493 + ? (c < 2486 + ? c == 2482 + : c <= 2489) + : (c <= 2493 || c == 2510)) + : (c <= 2525 || (c < 2556 + ? (c < 2544 + ? (c >= 2527 && c <= 2529) + : c <= 2545) + : (c <= 2556 || (c >= 2565 && c <= 2570))))) + : (c <= 2576 || (c < 2616 + ? (c < 2610 + ? (c < 2602 + ? (c >= 2579 && c <= 2600) + : c <= 2608) + : (c <= 2611 || (c >= 2613 && c <= 2614))) + : (c <= 2617 || (c < 2654 + ? (c >= 2649 && c <= 2652) + : (c <= 2654 || (c >= 2674 && c <= 2676))))))))))) + : (c <= 2701 || (c < 3214 + ? (c < 2947 + ? (c < 2821 + ? (c < 2741 + ? (c < 2730 + ? (c < 2707 + ? (c >= 2703 && c <= 2705) + : c <= 2728) + : (c <= 2736 || (c >= 2738 && c <= 2739))) + : (c <= 2745 || (c < 2784 + ? (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 <= 2768) + : (c <= 2785 || c == 2809)))) + : (c <= 2828 || (c < 2869 + ? (c < 2858 + ? (c < 2835 + ? (c >= 2831 && c <= 2832) + : c <= 2856) + : (c <= 2864 || (c >= 2866 && c <= 2867))) + : (c <= 2873 || (c < 2911 + ? (c < 2908 + ? c == 2877 + : c <= 2909) + : (c <= 2913 || c == 2929)))))) + : (c <= 2947 || (c < 3024 + ? (c < 2972 + ? (c < 2962 + ? (c < 2958 + ? (c >= 2949 && c <= 2954) + : c <= 2960) + : (c <= 2965 || (c >= 2969 && c <= 2970))) + : (c <= 2972 || (c < 2984 + ? (c < 2979 + ? (c >= 2974 && c <= 2975) + : c <= 2980) + : (c <= 2986 || (c >= 2990 && c <= 3001))))) + : (c <= 3024 || (c < 3133 + ? (c < 3090 + ? (c < 3086 + ? (c >= 3077 && c <= 3084) + : c <= 3088) + : (c <= 3112 || (c >= 3114 && c <= 3129))) + : (c <= 3133 || (c < 3200 + ? (c < 3168 + ? (c >= 3160 && c <= 3162) + : c <= 3169) + : (c <= 3200 || (c >= 3205 && c <= 3212))))))))) + : (c <= 3216 || (c < 3520 + ? (c < 3346 + ? (c < 3294 + ? (c < 3253 + ? (c < 3242 + ? (c >= 3218 && c <= 3240) + : c <= 3251) + : (c <= 3257 || c == 3261)) + : (c <= 3294 || (c < 3332 + ? (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 <= 3314) + : (c <= 3340 || (c >= 3342 && c <= 3344))))) + : (c <= 3386 || (c < 3450 + ? (c < 3412 + ? (c < 3406 + ? c == 3389 + : c <= 3406) + : (c <= 3414 || (c >= 3423 && c <= 3425))) + : (c <= 3455 || (c < 3507 + ? (c < 3482 + ? (c >= 3461 && c <= 3478) + : c <= 3505) + : (c <= 3515 || c == 3517)))))) + : (c <= 3526 || (c < 3762 + ? (c < 3716 + ? (c < 3648 + ? (c < 3634 + ? (c >= 3585 && c <= 3632) + : c <= 3634) + : (c <= 3654 || (c >= 3713 && c <= 3714))) + : (c <= 3716 || (c < 3749 + ? (c < 3724 + ? (c >= 3718 && c <= 3722) + : c <= 3747) + : (c <= 3749 || (c >= 3751 && c <= 3760))))) + : (c <= 3762 || (c < 3840 + ? (c < 3782 + ? (c < 3776 + ? c == 3773 + : c <= 3780) + : (c <= 3782 || (c >= 3804 && c <= 3807))) + : (c <= 3840 || (c < 3913 + ? (c >= 3904 && c <= 3911) + : (c <= 3948 || (c >= 3976 && c <= 3980))))))))))))) + : (c <= 4138 || (c < 8025 + ? (c < 5952 + ? (c < 4752 + ? (c < 4295 + ? (c < 4197 + ? (c < 4186 + ? (c < 4176 + ? c == 4159 + : c <= 4181) + : (c <= 4189 || c == 4193)) + : (c <= 4198 || (c < 4238 + ? (c < 4213 + ? (c >= 4206 && c <= 4208) + : c <= 4225) + : (c <= 4238 || (c >= 4256 && c <= 4293))))) + : (c <= 4295 || (c < 4688 + ? (c < 4348 ? (c < 4304 ? c == 4301 : c <= 4346) - : (c <= 4680 || (c >= 4682 && c <= 4685))))) - : (c <= 4694 || (c < 4752 - ? (c < 4704 + : (c <= 4680 || (c >= 4682 && c <= 4685))) + : (c <= 4694 || (c < 4704 ? (c < 4698 ? c == 4696 : c <= 4701) - : (c <= 4744 || (c >= 4746 && c <= 4749))) - : (c <= 4784 || (c < 4800 + : (c <= 4744 || (c >= 4746 && c <= 4749))))))) + : (c <= 4784 || (c < 5024 + ? (c < 4808 + ? (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 <= 4800 || (c >= 4802 && c <= 4805))) + : (c <= 4822 || (c < 4888 ? (c < 4882 ? (c >= 4824 && c <= 4880) : c <= 4885) - : (c <= 4954 || (c >= 4992 && c <= 5007))) - : (c <= 5109 || (c < 5743 + : (c <= 4954 || (c >= 4992 && c <= 5007))))) + : (c <= 5109 || (c < 5792 + ? (c < 5743 ? (c < 5121 ? (c >= 5112 && c <= 5117) : c <= 5740) - : (c <= 5759 || (c >= 5761 && c <= 5786))))) - : (c <= 5866 || (c < 5984 - ? (c < 5919 + : (c <= 5759 || (c >= 5761 && c <= 5786))) + : (c <= 5866 || (c < 5902 ? (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 <= 5900) + : (c <= 5905 || (c >= 5920 && c <= 5937))))))))) + : (c <= 5969 || (c < 7043 + ? (c < 6400 + ? (c < 6108 + ? (c < 6016 + ? (c < 5998 + ? (c >= 5984 && c <= 5996) + : c <= 6000) + : (c <= 6067 || c == 6103)) + : (c <= 6108 || (c < 6314 + ? (c < 6272 + ? (c >= 6176 && c <= 6264) + : c <= 6312) + : (c <= 6314 || (c >= 6320 && c <= 6389))))) + : (c <= 6430 || (c < 6656 + ? (c < 6528 + ? (c < 6512 + ? (c >= 6480 && c <= 6509) + : c <= 6516) + : (c <= 6571 || (c >= 6576 && c <= 6601))) + : (c <= 6678 || (c < 6917 + ? (c < 6823 + ? (c >= 6688 && c <= 6740) + : c <= 6823) + : (c <= 6963 || (c >= 6981 && c <= 6987))))))) + : (c <= 7072 || (c < 7406 + ? (c < 7258 + ? (c < 7168 + ? (c < 7098 + ? (c >= 7086 && c <= 7087) + : c <= 7141) + : (c <= 7203 || (c >= 7245 && c <= 7247))) + : (c <= 7293 || (c < 7357 + ? (c < 7312 + ? (c >= 7296 && c <= 7304) + : c <= 7354) + : (c <= 7359 || (c >= 7401 && c <= 7404))))) + : (c <= 7411 || (c < 7960 + ? (c < 7424 + ? (c < 7418 + ? (c >= 7413 && c <= 7414) + : c <= 7418) + : (c <= 7615 || (c >= 7680 && c <= 7957))) + : (c <= 7965 || (c < 8008 + ? (c >= 7968 && c <= 8005) + : (c <= 8013 || (c >= 8016 && c <= 8023))))))))))) + : (c <= 8025 || (c < 11631 + ? (c < 8469 + ? (c < 8150 + ? (c < 8118 + ? (c < 8031 + ? (c < 8029 + ? c == 8027 + : c <= 8029) + : (c <= 8061 || (c >= 8064 && c <= 8116))) + : (c <= 8124 || (c < 8134 + ? (c < 8130 + ? c == 8126 + : c <= 8132) + : (c <= 8140 || (c >= 8144 && c <= 8147))))) + : (c <= 8155 || (c < 8319 + ? (c < 8182 + ? (c < 8178 + ? (c >= 8160 && c <= 8172) + : c <= 8180) + : (c <= 8188 || c == 8305)) + : (c <= 8319 || (c < 8455 + ? (c < 8450 + ? (c >= 8336 && c <= 8348) + : c <= 8450) + : (c <= 8455 || (c >= 8458 && c <= 8467))))))) + : (c <= 8469 || (c < 11264 + ? (c < 8490 + ? (c < 8486 + ? (c < 8484 + ? (c >= 8472 && c <= 8477) + : c <= 8484) + : (c <= 8486 || c == 8488)) + : (c <= 8505 || (c < 8526 + ? (c < 8517 + ? (c >= 8508 && c <= 8511) + : c <= 8521) + : (c <= 8526 || (c >= 8544 && c <= 8584))))) + : (c <= 11310 || (c < 11520 + ? (c < 11499 + ? (c < 11360 + ? (c >= 11312 && c <= 11358) + : c <= 11492) + : (c <= 11502 || (c >= 11506 && c <= 11507))) + : (c <= 11557 || (c < 11565 + ? c == 11559 + : (c <= 11565 || (c >= 11568 && c <= 11623))))))))) + : (c <= 11631 || (c < 12704 + ? (c < 12293 + ? (c < 11704 + ? (c < 11688 + ? (c < 11680 + ? (c >= 11648 && c <= 11670) + : c <= 11686) + : (c <= 11694 || (c >= 11696 && c <= 11702))) + : (c <= 11710 || (c < 11728 + ? (c < 11720 + ? (c >= 11712 && c <= 11718) + : c <= 11726) + : (c <= 11734 || (c >= 11736 && c <= 11742))))) + : (c <= 12295 || (c < 12445 + ? (c < 12344 + ? (c < 12337 + ? (c >= 12321 && c <= 12329) + : c <= 12341) + : (c <= 12348 || (c >= 12353 && c <= 12438))) + : (c <= 12447 || (c < 12549 + ? (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 <= 12543) + : (c <= 12591 || (c >= 12593 && c <= 12686))))))) + : (c <= 12735 || (c < 42623 + ? (c < 42192 + ? (c < 19968 + ? (c < 13312 + ? (c >= 12784 && c <= 12799) + : c <= 19903) + : (c <= 40956 || (c >= 40960 && c <= 42124))) + : (c <= 42237 || (c < 42538 + ? (c < 42512 + ? (c >= 42240 && c <= 42508) + : c <= 42527) + : (c <= 42539 || (c >= 42560 && c <= 42606))))) + : (c <= 42653 || (c < 42946 + ? (c < 42786 + ? (c < 42775 + ? (c >= 42656 && c <= 42735) + : c <= 42783) + : (c <= 42888 || (c >= 42891 && c <= 42943))) + : (c <= 42954 || (c < 43011 + ? (c >= 42997 && c <= 43009) + : (c <= 43013 || (c >= 43015 && c <= 43018))))))))))))))) + : (c <= 43042 || (c < 70453 + ? (c < 66176 + ? (c < 64112 + ? (c < 43697 + ? (c < 43471 + ? (c < 43261 + ? (c < 43250 + ? (c < 43138 + ? (c >= 43072 && c <= 43123) + : c <= 43187) + : (c <= 43255 || c == 43259)) + : (c <= 43262 || (c < 43360 + ? (c < 43312 + ? (c >= 43274 && c <= 43301) + : c <= 43334) + : (c <= 43388 || (c >= 43396 && c <= 43442))))) + : (c <= 43471 || (c < 43584 + ? (c < 43514 + ? (c < 43494 + ? (c >= 43488 && c <= 43492) + : c <= 43503) + : (c <= 43518 || (c >= 43520 && c <= 43560))) + : (c <= 43586 || (c < 43642 + ? (c < 43616 + ? (c >= 43588 && c <= 43595) + : c <= 43638) + : (c <= 43642 || (c >= 43646 && c <= 43695))))))) + : (c <= 43697 || (c < 43793 + ? (c < 43739 + ? (c < 43712 + ? (c < 43705 + ? (c >= 43701 && c <= 43702) + : c <= 43709) + : (c <= 43712 || c == 43714)) + : (c <= 43741 || (c < 43777 + ? (c < 43762 + ? (c >= 43744 && c <= 43754) + : c <= 43764) + : (c <= 43782 || (c >= 43785 && c <= 43790))))) + : (c <= 43798 || (c < 43888 + ? (c < 43824 + ? (c < 43816 + ? (c >= 43808 && c <= 43814) + : c <= 43822) + : (c <= 43866 || (c >= 43868 && c <= 43881))) + : (c <= 44002 || (c < 55243 + ? (c < 55216 + ? (c >= 44032 && c <= 55203) + : c <= 55238) + : (c <= 55291 || (c >= 63744 && c <= 64109))))))))) + : (c <= 64217 || (c < 65147 + ? (c < 64326 + ? (c < 64298 + ? (c < 64285 + ? (c < 64275 + ? (c >= 64256 && c <= 64262) + : c <= 64279) + : (c <= 64285 || (c >= 64287 && c <= 64296))) + : (c <= 64310 || (c < 64320 + ? (c < 64318 + ? (c >= 64312 && c <= 64316) + : c <= 64318) + : (c <= 64321 || (c >= 64323 && c <= 64324))))) + : (c <= 64433 || (c < 65008 + ? (c < 64848 + ? (c < 64612 + ? (c >= 64467 && c <= 64605) + : c <= 64829) + : (c <= 64911 || (c >= 64914 && c <= 64967))) + : (c <= 65017 || (c < 65143 + ? (c < 65139 + ? c == 65137 + : c <= 65139) + : (c <= 65143 || c == 65145)))))) + : (c <= 65147 || (c < 65498 + ? (c < 65382 + ? (c < 65313 ? (c < 65151 ? c == 65149 : c <= 65276) - : (c <= 65338 || (c >= 65345 && c <= 65370))))) - : (c <= 65437 || (c < 65498 - ? (c < 65482 + : (c <= 65338 || (c >= 65345 && c <= 65370))) + : (c <= 65437 || (c < 65482 ? (c < 65474 ? (c >= 65440 && c <= 65470) : c <= 65479) - : (c <= 65487 || (c >= 65490 && c <= 65495))) - : (c <= 65500 || (c < 65576 + : (c <= 65487 || (c >= 65490 && c <= 65495))))) + : (c <= 65500 || (c < 65599 + ? (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 <= 65594 || (c >= 65596 && c <= 65597))) + : (c <= 65613 || (c < 65664 + ? (c >= 65616 && c <= 65629) + : (c <= 65786 || (c >= 65856 && c <= 65908))))))))))) + : (c <= 66204 || (c < 68416 + ? (c < 67639 + ? (c < 66736 + ? (c < 66432 + ? (c < 66349 + ? (c < 66304 + ? (c >= 66208 && c <= 66256) + : c <= 66335) + : (c <= 66378 || (c >= 66384 && c <= 66421))) + : (c <= 66461 || (c < 66513 + ? (c < 66504 + ? (c >= 66464 && c <= 66499) + : c <= 66511) + : (c <= 66517 || (c >= 66560 && c <= 66717))))) + : (c <= 66771 || (c < 67392 + ? (c < 66864 + ? (c < 66816 + ? (c >= 66776 && c <= 66811) + : c <= 66855) + : (c <= 66915 || (c >= 67072 && c <= 67382))) + : (c <= 67413 || (c < 67592 + ? (c < 67584 + ? (c >= 67424 && c <= 67431) + : c <= 67589) + : (c <= 67592 || (c >= 67594 && c <= 67637))))))) + : (c <= 67640 || (c < 68030 + ? (c < 67808 + ? (c < 67680 + ? (c < 67647 + ? c == 67644 + : c <= 67669) + : (c <= 67702 || (c >= 67712 && c <= 67742))) + : (c <= 67826 || (c < 67872 + ? (c < 67840 + ? (c >= 67828 && c <= 67829) + : c <= 67861) + : (c <= 67897 || (c >= 67968 && c <= 68023))))) + : (c <= 68031 || (c < 68192 + ? (c < 68117 + ? (c < 68112 + ? c == 68096 + : c <= 68115) + : (c <= 68119 || (c >= 68121 && c <= 68149))) + : (c <= 68220 || (c < 68297 + ? (c < 68288 + ? (c >= 68224 && c <= 68252) + : c <= 68295) + : (c <= 68324 || (c >= 68352 && c <= 68405))))))))) + : (c <= 68437 || (c < 69968 + ? (c < 69415 + ? (c < 68800 + ? (c < 68608 + ? (c < 68480 + ? (c >= 68448 && c <= 68466) + : c <= 68497) + : (c <= 68680 || (c >= 68736 && c <= 68786))) + : (c <= 68850 || (c < 69296 + ? (c < 69248 + ? (c >= 68864 && c <= 68899) + : c <= 69289) + : (c <= 69297 || (c >= 69376 && c <= 69404))))) + : (c <= 69415 || (c < 69763 + ? (c < 69600 + ? (c < 69552 + ? (c >= 69424 && c <= 69445) + : c <= 69572) + : (c <= 69622 || (c >= 69635 && c <= 69687))) + : (c <= 69807 || (c < 69956 + ? (c < 69891 + ? (c >= 69840 && c <= 69864) + : c <= 69926) + : (c <= 69956 || c == 69959)))))) + : (c <= 70002 || (c < 70282 + ? (c < 70108 + ? (c < 70081 + ? (c < 70019 + ? c == 70006 + : c <= 70066) + : (c <= 70084 || c == 70106)) + : (c <= 70108 || (c < 70272 + ? (c < 70163 + ? (c >= 70144 && c <= 70161) + : c <= 70187) + : (c <= 70278 || c == 70280)))) + : (c <= 70285 || (c < 70415 + ? (c < 70320 + ? (c < 70303 + ? (c >= 70287 && c <= 70301) + : c <= 70312) + : (c <= 70366 || (c >= 70405 && c <= 70412))) + : (c <= 70416 || (c < 70442 + ? (c >= 70419 && c <= 70440) + : (c <= 70448 || (c >= 70450 && c <= 70451))))))))))))) + : (c <= 70457 || (c < 113808 + ? (c < 72818 + ? (c < 71945 + ? (c < 71040 + ? (c < 70727 + ? (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 <= 70497 || (c >= 70656 && c <= 70708))) + : (c <= 70730 || (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 <= 70853 || c == 70855)))) + : (c <= 71086 || (c < 71352 + ? (c < 71236 + ? (c < 71168 + ? (c >= 71128 && c <= 71131) + : c <= 71215) + : (c <= 71236 || (c >= 71296 && c <= 71338))) + : (c <= 71352 || (c < 71840 ? (c < 71680 - ? (c >= 71488 && c <= 71494) + ? (c >= 71424 && c <= 71450) : c <= 71723) - : (c <= 71903 || (c >= 71935 && c <= 71942))) - : (c <= 71945 || (c < 71960 + : (c <= 71903 || (c >= 71935 && c <= 71942))))))) + : (c <= 71945 || (c < 72192 + ? (c < 72001 + ? (c < 71960 ? (c < 71957 ? (c >= 71948 && c <= 71955) : c <= 71958) - : (c <= 71983 || c == 71999)))))) - : (c <= 72001 || (c < 72349 - ? (c < 72192 - ? (c < 72161 + : (c <= 71983 || c == 71999)) + : (c <= 72001 || (c < 72161 ? (c < 72106 ? (c >= 72096 && c <= 72103) : c <= 72144) - : (c <= 72161 || c == 72163)) - : (c <= 72192 || (c < 72272 + : (c <= 72161 || c == 72163)))) + : (c <= 72192 || (c < 72349 + ? (c < 72272 ? (c < 72250 ? (c >= 72203 && c <= 72242) : c <= 72250) - : (c <= 72272 || (c >= 72284 && c <= 72329))))) - : (c <= 72349 || (c < 72818 - ? (c < 72714 + : (c <= 72272 || (c >= 72284 && c <= 72329))) + : (c <= 72349 || (c < 72714 ? (c < 72704 - ? (c >= 72368 && c <= 72440) + ? (c >= 72384 && c <= 72440) : c <= 72712) - : (c <= 72750 || c == 72768)) - : (c <= 72847 || (c < 72971 + : (c <= 72750 || c == 72768)))))))) + : (c <= 72847 || (c < 92992 + ? (c < 73648 + ? (c < 73056 + ? (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 <= 73008 || c == 73030)) + : (c <= 73061 || (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 <= 73112 || (c >= 73440 && c <= 73458))))) + : (c <= 73648 || (c < 82944 + ? (c < 74880 + ? (c < 74752 + ? (c >= 73728 && c <= 74649) + : c <= 74862) + : (c <= 75075 || (c >= 77824 && c <= 78894))) + : (c <= 83526 || (c < 92880 ? (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 <= 92909 || (c >= 92928 && c <= 92975))))))) + : (c <= 92995 || (c < 100352 + ? (c < 94032 + ? (c < 93760 + ? (c < 93053 + ? (c >= 93027 && c <= 93047) + : c <= 93071) + : (c <= 93823 || (c >= 93952 && c <= 94026))) + : (c <= 94032 || (c < 94179 + ? (c < 94176 + ? (c >= 94099 && c <= 94111) + : c <= 94177) + : (c <= 94179 || (c >= 94208 && c <= 100343))))) + : (c <= 101589 || (c < 110960 + ? (c < 110928 + ? (c < 110592 + ? (c >= 101632 && c <= 101640) + : c <= 110878) + : (c <= 110930 || (c >= 110948 && c <= 110951))) + : (c <= 111355 || (c < 113776 + ? (c >= 113664 && c <= 113770) + : (c <= 113788 || (c >= 113792 && c <= 113800))))))))))) + : (c <= 113817 || (c < 126469 + ? (c < 120488 + ? (c < 120005 + ? (c < 119973 + ? (c < 119966 + ? (c < 119894 + ? (c >= 119808 && c <= 119892) + : c <= 119964) + : (c <= 119967 || c == 119970)) + : (c <= 119974 || (c < 119995 + ? (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 <= 119993) + : (c <= 119995 || (c >= 119997 && c <= 120003))))) + : (c <= 120069 || (c < 120123 + ? (c < 120086 + ? (c < 120077 + ? (c >= 120071 && c <= 120074) + : c <= 120084) + : (c <= 120092 || (c >= 120094 && c <= 120121))) + : (c <= 120126 || (c < 120138 + ? (c < 120134 + ? (c >= 120128 && c <= 120132) + : c <= 120134) + : (c <= 120144 || (c >= 120146 && c <= 120485))))))) + : (c <= 120512 || (c < 120772 + ? (c < 120630 + ? (c < 120572 + ? (c < 120540 + ? (c >= 120514 && c <= 120538) + : c <= 120570) + : (c <= 120596 || (c >= 120598 && c <= 120628))) + : (c <= 120654 || (c < 120714 + ? (c < 120688 + ? (c >= 120656 && c <= 120686) + : c <= 120712) + : (c <= 120744 || (c >= 120746 && c <= 120770))))) + : (c <= 120779 || (c < 124928 + ? (c < 123214 + ? (c < 123191 + ? (c >= 123136 && c <= 123180) + : c <= 123197) + : (c <= 123214 || (c >= 123584 && c <= 123627))) + : (c <= 125124 || (c < 125259 + ? (c >= 125184 && c <= 125251) + : (c <= 125259 || (c >= 126464 && c <= 126467))))))))) + : (c <= 126495 || (c < 126561 + ? (c < 126537 + ? (c < 126516 + ? (c < 126503 + ? (c < 126500 + ? (c >= 126497 && c <= 126498) + : c <= 126500) + : (c <= 126503 || (c >= 126505 && c <= 126514))) + : (c <= 126519 || (c < 126530 + ? (c < 126523 + ? c == 126521 + : c <= 126523) + : (c <= 126530 || c == 126535)))) + : (c <= 126537 || (c < 126551 + ? (c < 126545 + ? (c < 126541 + ? c == 126539 + : c <= 126543) + : (c <= 126546 || c == 126548)) + : (c <= 126551 || (c < 126557 + ? (c < 126555 + ? c == 126553 + : c <= 126555) + : (c <= 126557 || c == 126559)))))) + : (c <= 126562 || (c < 126629 + ? (c < 126585 + ? (c < 126572 + ? (c < 126567 + ? c == 126564 + : c <= 126570) + : (c <= 126578 || (c >= 126580 && c <= 126583))) + : (c <= 126588 || (c < 126603 + ? (c < 126592 + ? c == 126590 + : c <= 126601) + : (c <= 126619 || (c >= 126625 && c <= 126627))))) + : (c <= 126633 || (c < 178208 + ? (c < 173824 + ? (c < 131072 + ? (c >= 126635 && c <= 126651) + : c <= 173789) + : (c <= 177972 || (c >= 177984 && c <= 178205))) + : (c <= 183969 || (c < 194560 + ? (c >= 183984 && c <= 191456) : (c <= 195101 || (c >= 196608 && c <= 201546))))))))))))))))); } static inline bool sym_identifier_character_set_2(int32_t c) { - return (c < 43616 - ? (c < 3782 - ? (c < 2748 - ? (c < 2045 + return (c < 43052 + ? (c < 3718 + ? (c < 2730 + ? (c < 2042 ? (c < 1015 ? (c < 710 ? (c < 181 @@ -5339,344 +3847,338 @@ static inline bool sym_identifier_character_set_2(int32_t c) { ? (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 <= 1969 || (c >= 1984 && c <= 2037))))))))) + : (c <= 2042 || (c < 2534 + ? (c < 2447 + ? (c < 2230 + ? (c < 2112 + ? (c < 2048 + ? c == 2045 + : c <= 2093) + : (c <= 2139 || (c < 2208 + ? (c >= 2144 && c <= 2154) + : c <= 2228))) + : (c <= 2247 || (c < 2406 + ? (c < 2275 + ? (c >= 2259 && c <= 2273) + : c <= 2403) + : (c <= 2415 || (c < 2437 + ? (c >= 2417 && c <= 2435) + : c <= 2444))))) + : (c <= 2448 || (c < 2503 + ? (c < 2482 + ? (c < 2474 + ? (c >= 2451 && c <= 2472) + : c <= 2480) + : (c <= 2482 || (c < 2492 + ? (c >= 2486 && c <= 2489) + : c <= 2500))) + : (c <= 2504 || (c < 2524 + ? (c < 2519 + ? (c >= 2507 && c <= 2510) + : c <= 2519) + : (c <= 2525 || (c >= 2527 && c <= 2531))))))) + : (c <= 2545 || (c < 2622 + ? (c < 2579 + ? (c < 2561 + ? (c < 2558 + ? c == 2556 + : c <= 2558) + : (c <= 2563 || (c < 2575 + ? (c >= 2565 && c <= 2570) + : c <= 2576))) + : (c <= 2600 || (c < 2613 + ? (c < 2610 + ? (c >= 2602 && c <= 2608) + : c <= 2611) + : (c <= 2614 || (c < 2620 + ? (c >= 2616 && c <= 2617) + : c <= 2620))))) + : (c <= 2626 || (c < 2662 + ? (c < 2641 + ? (c < 2635 + ? (c >= 2631 && c <= 2632) + : c <= 2637) + : (c <= 2641 || (c < 2654 + ? (c >= 2649 && c <= 2652) + : c <= 2654))) + : (c <= 2677 || (c < 2703 + ? (c < 2693 + ? (c >= 2689 && c <= 2691) + : c <= 2701) + : (c <= 2705 || (c >= 2707 && c <= 2728))))))))))) + : (c <= 2736 || (c < 3142 + ? (c < 2918 + ? (c < 2831 + ? (c < 2768 + ? (c < 2748 + ? (c < 2741 ? (c >= 2738 && c <= 2739) - : c <= 2745))))))))))) - : (c <= 2757 || (c < 3168 - ? (c < 2958 - ? (c < 2866 - ? (c < 2809 - ? (c < 2768 - ? (c < 2763 + : c <= 2745) + : (c <= 2757 || (c < 2763 ? (c >= 2759 && c <= 2761) - : c <= 2765) - : (c <= 2768 || (c < 2790 + : c <= 2765))) + : (c <= 2768 || (c < 2809 + ? (c < 2790 ? (c >= 2784 && c <= 2787) - : c <= 2799))) - : (c <= 2815 || (c < 2831 - ? (c < 2821 + : c <= 2799) + : (c <= 2815 || (c < 2821 ? (c >= 2817 && c <= 2819) - : c <= 2828) - : (c <= 2832 || (c < 2858 + : c <= 2828))))) + : (c <= 2832 || (c < 2887 + ? (c < 2866 + ? (c < 2858 ? (c >= 2835 && c <= 2856) - : c <= 2864))))) - : (c <= 2867 || (c < 2908 - ? (c < 2887 - ? (c < 2876 + : c <= 2864) + : (c <= 2867 || (c < 2876 ? (c >= 2869 && c <= 2873) - : c <= 2884) - : (c <= 2888 || (c < 2901 + : c <= 2884))) + : (c <= 2888 || (c < 2908 + ? (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 <= 2903) + : (c <= 2909 || (c >= 2911 && c <= 2915))))))) + : (c <= 2927 || (c < 3006 + ? (c < 2969 + ? (c < 2949 + ? (c < 2946 + ? c == 2929 + : c <= 2947) + : (c <= 2954 || (c < 2962 + ? (c >= 2958 && c <= 2960) + : c <= 2965))) + : (c <= 2970 || (c < 2979 + ? (c < 2974 + ? c == 2972 + : c <= 2975) + : (c <= 2980 || (c < 2990 + ? (c >= 2984 && c <= 2986) + : c <= 3001))))) + : (c <= 3010 || (c < 3072 + ? (c < 3024 + ? (c < 3018 + ? (c >= 3014 && c <= 3016) + : c <= 3021) + : (c <= 3024 || (c < 3046 + ? c == 3031 + : c <= 3055))) + : (c <= 3084 || (c < 3114 + ? (c < 3090 + ? (c >= 3086 && c <= 3088) + : c <= 3112) + : (c <= 3129 || (c >= 3133 && c <= 3140))))))))) + : (c <= 3144 || (c < 3398 + ? (c < 3260 + ? (c < 3200 + ? (c < 3160 + ? (c < 3157 + ? (c >= 3146 && c <= 3149) + : c <= 3158) + : (c <= 3162 || (c < 3174 + ? (c >= 3168 && c <= 3171) + : c <= 3183))) + : (c <= 3203 || (c < 3218 + ? (c < 3214 + ? (c >= 3205 && c <= 3212) + : c <= 3216) + : (c <= 3240 || (c < 3253 + ? (c >= 3242 && c <= 3251) + : c <= 3257))))) + : (c <= 3268 || (c < 3302 + ? (c < 3285 + ? (c < 3274 + ? (c >= 3270 && c <= 3272) + : c <= 3277) + : (c <= 3286 || (c < 3296 + ? c == 3294 + : c <= 3299))) + : (c <= 3311 || (c < 3342 + ? (c < 3328 + ? (c >= 3313 && c <= 3314) + : c <= 3340) + : (c <= 3344 || (c >= 3346 && c <= 3396))))))) + : (c <= 3400 || (c < 3530 + ? (c < 3457 + ? (c < 3423 + ? (c < 3412 + ? (c >= 3402 && c <= 3406) + : c <= 3415) + : (c <= 3427 || (c < 3450 + ? (c >= 3430 && c <= 3439) + : c <= 3455))) + : (c <= 3459 || (c < 3507 + ? (c < 3482 + ? (c >= 3461 && c <= 3478) + : c <= 3505) + : (c <= 3515 || (c < 3520 + ? c == 3517 + : c <= 3526))))) + : (c <= 3530 || (c < 3585 + ? (c < 3544 + ? (c < 3542 + ? (c >= 3535 && c <= 3540) + : c <= 3542) + : (c <= 3551 || (c < 3570 + ? (c >= 3558 && c <= 3567) + : c <= 3571))) + : (c <= 3642 || (c < 3713 + ? (c < 3664 + ? (c >= 3648 && c <= 3662) + : c <= 3673) + : (c <= 3714 || c == 3716)))))))))))) + : (c <= 3722 || (c < 7296 + ? (c < 5024 + ? (c < 4256 + ? (c < 3893 + ? (c < 3784 + ? (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 <= 3773 || (c < 3782 + ? (c >= 3776 && c <= 3780) + : c <= 3782))) + : (c <= 3789 || (c < 3840 + ? (c < 3804 + ? (c >= 3792 && c <= 3801) + : c <= 3807) + : (c <= 3840 || (c < 3872 + ? (c >= 3864 && c <= 3865) + : c <= 3881))))) + : (c <= 3893 || (c < 3974 + ? (c < 3902 + ? (c < 3897 + ? c == 3895 + : c <= 3897) + : (c <= 3911 || (c < 3953 + ? (c >= 3913 && c <= 3948) + : c <= 3972))) + : (c <= 3991 || (c < 4096 + ? (c < 4038 + ? (c >= 3993 && c <= 4028) + : c <= 4038) + : (c <= 4169 || (c >= 4176 && c <= 4253))))))) + : (c <= 4293 || (c < 4786 + ? (c < 4688 + ? (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 <= 4685))) + : (c <= 4694 || (c < 4704 ? (c < 4698 ? c == 4696 : c <= 4701) : (c <= 4744 || (c < 4752 ? (c >= 4746 && c <= 4749) - : c <= 4784))) - : (c <= 4789 || (c < 4802 + : c <= 4784))))) + : (c <= 4789 || (c < 4882 + ? (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 <= 4880))) + : (c <= 4885 || (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 <= 4977 || (c >= 4992 && c <= 5007))))))))) + : (c <= 5109 || (c < 6400 + ? (c < 5998 + ? (c < 5870 + ? (c < 5743 + ? (c < 5121 + ? (c >= 5112 && c <= 5117) + : c <= 5740) + : (c <= 5759 || (c < 5792 + ? (c >= 5761 && c <= 5786) + : c <= 5866))) + : (c <= 5880 || (c < 5920 + ? (c < 5902 + ? (c >= 5888 && c <= 5900) + : c <= 5908) + : (c <= 5940 || (c < 5984 + ? (c >= 5952 && c <= 5971) + : c <= 5996))))) + : (c <= 6000 || (c < 6155 + ? (c < 6103 + ? (c < 6016 + ? (c >= 6002 && c <= 6003) + : c <= 6099) + : (c <= 6103 || (c < 6112 + ? (c >= 6108 && c <= 6109) + : c <= 6121))) + : (c <= 6157 || (c < 6272 + ? (c < 6176 + ? (c >= 6160 && c <= 6169) + : c <= 6264) + : (c <= 6314 || (c >= 6320 && c <= 6389))))))) + : (c <= 6430 || (c < 6800 + ? (c < 6576 + ? (c < 6470 + ? (c < 6448 ? (c >= 6432 && c <= 6443) - : c <= 6459))) - : (c <= 6509 || (c < 6576 - ? (c < 6528 + : c <= 6459) + : (c <= 6509 || (c < 6528 ? (c >= 6512 && c <= 6516) - : c <= 6571) - : (c <= 6601 || (c < 6656 + : c <= 6571))) + : (c <= 6601 || (c < 6688 + ? (c < 6656 ? (c >= 6608 && c <= 6618) - : c <= 6683))))))) - : (c <= 6750 || (c < 7232 - ? (c < 6847 - ? (c < 6800 - ? (c < 6783 + : c <= 6683) + : (c <= 6750 || (c < 6783 ? (c >= 6752 && c <= 6780) - : c <= 6793) - : (c <= 6809 || (c < 6832 + : c <= 6793))))) + : (c <= 6809 || (c < 7019 + ? (c < 6847 + ? (c < 6832 ? c == 6823 - : c <= 6845))) - : (c <= 6862 || (c < 7019 - ? (c < 6992 - ? (c >= 6912 && c <= 6988) - : c <= 7001) - : (c <= 7027 || (c < 7168 + : c <= 6845) + : (c <= 6848 || (c < 6992 + ? (c >= 6912 && c <= 6987) + : c <= 7001))) + : (c <= 7027 || (c < 7232 + ? (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 <= 7223) + : (c <= 7241 || (c >= 7245 && c <= 7293))))))))))) + : (c <= 7304 || (c < 11264 + ? (c < 8178 + ? (c < 8027 + ? (c < 7675 + ? (c < 7376 + ? (c < 7357 + ? (c >= 7312 && c <= 7354) + : c <= 7359) + : (c <= 7378 || (c < 7424 + ? (c >= 7380 && c <= 7418) + : c <= 7673))) + : (c <= 7957 || (c < 8008 + ? (c < 7968 + ? (c >= 7960 && c <= 7965) + : c <= 8005) + : (c <= 8013 || (c < 8025 + ? (c >= 8016 && c <= 8023) + : c <= 8025))))) + : (c <= 8027 || (c < 8130 + ? (c < 8064 + ? (c < 8031 + ? c == 8029 + : c <= 8061) + : (c <= 8116 || (c < 8126 + ? (c >= 8118 && c <= 8124) + : c <= 8126))) + : (c <= 8132 || (c < 8150 + ? (c < 8144 + ? (c >= 8134 && c <= 8140) + : c <= 8147) + : (c <= 8155 || (c >= 8160 && c <= 8172))))))) + : (c <= 8180 || (c < 8458 + ? (c < 8336 ? (c < 8276 ? (c < 8255 ? (c >= 8182 && c <= 8188) @@ -5690,9 +4192,8 @@ static inline bool sym_identifier_character_set_2(int32_t c) { : c <= 8417) : (c <= 8432 || (c < 8455 ? c == 8450 - : c <= 8455))))))) - : (c <= 8467 || (c < 11499 - ? (c < 8490 + : c <= 8455))))) + : (c <= 8467 || (c < 8490 ? (c < 8484 ? (c < 8472 ? c == 8469 @@ -5704,563 +4205,518 @@ static inline bool sym_identifier_character_set_2(int32_t c) { ? (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 <= 8526 || (c >= 8544 && c <= 8584))))))))) + : (c <= 11310 || (c < 12353 + ? (c < 11696 + ? (c < 11565 + ? (c < 11499 + ? (c < 11360 + ? (c >= 11312 && c <= 11358) + : c <= 11492) + : (c <= 11507 || (c < 11559 ? (c >= 11520 && c <= 11557) - : c <= 11559) - : (c <= 11565 || (c < 11631 + : c <= 11559))) + : (c <= 11565 || (c < 11647 + ? (c < 11631 ? (c >= 11568 && c <= 11623) - : c <= 11631))) - : (c <= 11670 || (c < 11696 - ? (c < 11688 + : c <= 11631) + : (c <= 11670 || (c < 11688 ? (c >= 11680 && c <= 11686) - : c <= 11694) - : (c <= 11702 || (c < 11712 + : c <= 11694))))) + : (c <= 11702 || (c < 11744 + ? (c < 11720 + ? (c < 11712 ? (c >= 11704 && c <= 11710) - : c <= 11718))))))))) - : (c <= 11726 || (c < 42623 - ? (c < 12540 - ? (c < 12337 - ? (c < 11744 - ? (c < 11736 + : c <= 11718) + : (c <= 11726 || (c < 11736 ? (c >= 11728 && c <= 11734) - : c <= 11742) - : (c <= 11775 || (c < 12321 + : c <= 11742))) + : (c <= 11775 || (c < 12337 + ? (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 <= 12335) + : (c <= 12341 || (c >= 12344 && c <= 12348))))))) + : (c <= 12438 || (c < 42192 + ? (c < 12593 + ? (c < 12449 + ? (c < 12445 + ? (c >= 12441 && c <= 12442) + : c <= 12447) + : (c <= 12538 || (c < 12549 + ? (c >= 12540 && c <= 12543) + : c <= 12591))) + : (c <= 12686 || (c < 13312 + ? (c < 12784 + ? (c >= 12704 && c <= 12735) + : c <= 12799) + : (c <= 19903 || (c < 40960 + ? (c >= 19968 && c <= 40956) + : c <= 42124))))) + : (c <= 42237 || (c < 42775 + ? (c < 42560 + ? (c < 42512 + ? (c >= 42240 && c <= 42508) + : c <= 42539) + : (c <= 42607 || (c < 42623 + ? (c >= 42612 && c <= 42621) + : c <= 42737))) + : (c <= 42783 || (c < 42946 + ? (c < 42891 + ? (c >= 42786 && c <= 42888) + : c <= 42943) + : (c <= 42954 || (c >= 42997 && c <= 43047))))))))))))))) + : (c <= 43052 || (c < 71096 + ? (c < 66864 + ? (c < 64914 + ? (c < 43816 + ? (c < 43520 + ? (c < 43261 + ? (c < 43216 + ? (c < 43136 + ? (c >= 43072 && c <= 43123) + : c <= 43205) + : (c <= 43225 || (c < 43259 + ? (c >= 43232 && c <= 43255) + : c <= 43259))) + : (c <= 43309 || (c < 43392 + ? (c < 43360 + ? (c >= 43312 && c <= 43347) + : c <= 43388) + : (c <= 43456 || (c < 43488 + ? (c >= 43471 && c <= 43481) + : c <= 43518))))) + : (c <= 43574 || (c < 43744 + ? (c < 43616 + ? (c < 43600 + ? (c >= 43584 && c <= 43597) + : c <= 43609) + : (c <= 43638 || (c < 43739 ? (c >= 43642 && c <= 43714) - : c <= 43741) - : (c <= 43759 || (c < 43777 + : c <= 43741))) + : (c <= 43759 || (c < 43785 + ? (c < 43777 ? (c >= 43762 && c <= 43766) - : c <= 43782))) - : (c <= 43790 || (c < 43816 - ? (c < 43808 + : c <= 43782) + : (c <= 43790 || (c < 43808 ? (c >= 43793 && c <= 43798) - : c <= 43814) - : (c <= 43822 || (c < 43868 + : c <= 43814))))))) + : (c <= 43822 || (c < 64275 + ? (c < 44032 + ? (c < 43888 + ? (c < 43868 ? (c >= 43824 && c <= 43866) - : c <= 43881))))) - : (c <= 44010 || (c < 63744 - ? (c < 44032 - ? (c < 44016 + : c <= 43881) + : (c <= 44010 || (c < 44016 ? (c >= 44012 && c <= 44013) - : c <= 44025) - : (c <= 55203 || (c < 55243 + : c <= 44025))) + : (c <= 55203 || (c < 63744 + ? (c < 55243 ? (c >= 55216 && c <= 55238) - : c <= 55291))) - : (c <= 64109 || (c < 64275 - ? (c < 64256 + : c <= 55291) + : (c <= 64109 || (c < 64256 ? (c >= 64112 && c <= 64217) - : c <= 64262) - : (c <= 64279 || (c < 64298 + : c <= 64262))))) + : (c <= 64279 || (c < 64323 + ? (c < 64312 + ? (c < 64298 ? (c >= 64285 && c <= 64296) - : c <= 64310))))))) - : (c <= 64316 || (c < 65075 - ? (c < 64612 - ? (c < 64323 - ? (c < 64320 + : c <= 64310) + : (c <= 64316 || (c < 64320 ? c == 64318 - : c <= 64321) - : (c <= 64324 || (c < 64467 + : c <= 64321))) + : (c <= 64324 || (c < 64612 + ? (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 <= 64605) + : (c <= 64829 || (c >= 64848 && c <= 64911))))))))) + : (c <= 64967 || (c < 65549 + ? (c < 65151 + ? (c < 65137 + ? (c < 65056 + ? (c < 65024 + ? (c >= 65008 && c <= 65017) + : c <= 65039) + : (c <= 65071 || (c < 65101 + ? (c >= 65075 && c <= 65076) + : c <= 65103))) + : (c <= 65137 || (c < 65145 + ? (c < 65143 + ? c == 65139 + : c <= 65143) + : (c <= 65145 || (c < 65149 + ? c == 65147 + : c <= 65149))))) + : (c <= 65276 || (c < 65474 + ? (c < 65343 + ? (c < 65313 + ? (c >= 65296 && c <= 65305) + : c <= 65338) + : (c <= 65343 || (c < 65382 + ? (c >= 65345 && c <= 65370) + : c <= 65470))) + : (c <= 65479 || (c < 65498 + ? (c < 65490 + ? (c >= 65482 && c <= 65487) + : c <= 65495) + : (c <= 65500 || (c >= 65536 && c <= 65547))))))) + : (c <= 65574 || (c < 66349 + ? (c < 65856 + ? (c < 65599 + ? (c < 65596 + ? (c >= 65576 && c <= 65594) + : c <= 65597) + : (c <= 65613 || (c < 65664 + ? (c >= 65616 && c <= 65629) + : c <= 65786))) + : (c <= 65908 || (c < 66208 + ? (c < 66176 + ? c == 66045 + : c <= 66204) + : (c <= 66256 || (c < 66304 + ? c == 66272 + : c <= 66335))))) + : (c <= 66378 || (c < 66560 + ? (c < 66464 + ? (c < 66432 + ? (c >= 66384 && c <= 66426) + : c <= 66461) + : (c <= 66499 || (c < 66513 + ? (c >= 66504 && c <= 66511) + : c <= 66517))) + : (c <= 66717 || (c < 66776 + ? (c < 66736 + ? (c >= 66720 && c <= 66729) + : c <= 66771) + : (c <= 66811 || (c >= 66816 && c <= 66855))))))))))) + : (c <= 66915 || (c < 69632 + ? (c < 68152 + ? (c < 67808 + ? (c < 67594 + ? (c < 67424 + ? (c < 67392 + ? (c >= 67072 && c <= 67382) + : c <= 67413) + : (c <= 67431 || (c < 67592 + ? (c >= 67584 && c <= 67589) + : c <= 67592))) + : (c <= 67637 || (c < 67647 + ? (c < 67644 + ? (c >= 67639 && c <= 67640) + : c <= 67644) + : (c <= 67669 || (c < 67712 + ? (c >= 67680 && c <= 67702) + : c <= 67742))))) + : (c <= 67826 || (c < 68096 + ? (c < 67872 + ? (c < 67840 + ? (c >= 67828 && c <= 67829) + : c <= 67861) + : (c <= 67897 || (c < 68030 + ? (c >= 67968 && c <= 68023) + : c <= 68031))) + : (c <= 68099 || (c < 68117 + ? (c < 68108 + ? (c >= 68101 && c <= 68102) + : c <= 68115) + : (c <= 68119 || (c >= 68121 && c <= 68149))))))) + : (c <= 68154 || (c < 68800 + ? (c < 68352 + ? (c < 68224 + ? (c < 68192 + ? c == 68159 + : c <= 68220) + : (c <= 68252 || (c < 68297 + ? (c >= 68288 && c <= 68295) + : c <= 68326))) + : (c <= 68405 || (c < 68480 + ? (c < 68448 + ? (c >= 68416 && c <= 68437) + : c <= 68466) + : (c <= 68497 || (c < 68736 + ? (c >= 68608 && c <= 68680) + : c <= 68786))))) + : (c <= 68850 || (c < 69376 + ? (c < 69248 + ? (c < 68912 + ? (c >= 68864 && c <= 68903) + : c <= 68921) + : (c <= 69289 || (c < 69296 + ? (c >= 69291 && c <= 69292) + : c <= 69297))) + : (c <= 69404 || (c < 69552 + ? (c < 69424 + ? c == 69415 + : c <= 69456) + : (c <= 69572 || (c >= 69600 && c <= 69622))))))))) + : (c <= 69702 || (c < 70384 + ? (c < 70094 + ? (c < 69942 + ? (c < 69840 + ? (c < 69759 + ? (c >= 69734 && c <= 69743) + : c <= 69818) + : (c <= 69864 || (c < 69888 + ? (c >= 69872 && c <= 69881) + : c <= 69940))) + : (c <= 69951 || (c < 70006 + ? (c < 69968 + ? (c >= 69956 && c <= 69959) + : c <= 70003) + : (c <= 70006 || (c < 70089 + ? (c >= 70016 && c <= 70084) + : c <= 70092))))) + : (c <= 70106 || (c < 70280 + ? (c < 70163 + ? (c < 70144 + ? c == 70108 + : c <= 70161) + : (c <= 70199 || (c < 70272 + ? c == 70206 + : c <= 70278))) + : (c <= 70280 || (c < 70303 + ? (c < 70287 + ? (c >= 70282 && c <= 70285) + : c <= 70301) + : (c <= 70312 || (c >= 70320 && c <= 70378))))))) + : (c <= 70393 || (c < 70487 + ? (c < 70450 + ? (c < 70415 + ? (c < 70405 + ? (c >= 70400 && c <= 70403) + : c <= 70412) + : (c <= 70416 || (c < 70442 + ? (c >= 70419 && c <= 70440) + : c <= 70448))) + : (c <= 70451 || (c < 70471 + ? (c < 70459 + ? (c >= 70453 && c <= 70457) + : c <= 70468) + : (c <= 70472 || (c < 70480 + ? (c >= 70475 && c <= 70477) + : c <= 70480))))) + : (c <= 70487 || (c < 70750 + ? (c < 70512 + ? (c < 70502 + ? (c >= 70493 && c <= 70499) + : c <= 70508) + : (c <= 70516 || (c < 70736 + ? (c >= 70656 && c <= 70730) + : c <= 70745))) + : (c <= 70753 || (c < 70864 + ? (c < 70855 + ? (c >= 70784 && c <= 70853) + : c <= 70855) + : (c <= 70873 || (c >= 71040 && c <= 71093))))))))))))) + : (c <= 71104 || (c < 119894 + ? (c < 73104 + ? (c < 72163 + ? (c < 71935 + ? (c < 71360 + ? (c < 71236 + ? (c < 71168 ? (c >= 71128 && c <= 71133) - : c <= 71232))) - : (c <= 71236 || (c < 71360 - ? (c < 71296 + : c <= 71232) + : (c <= 71236 || (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 <= 71352))) + : (c <= 71369 || (c < 71472 + ? (c < 71453 + ? (c >= 71424 && c <= 71450) + : c <= 71467) + : (c <= 71481 || (c < 71840 + ? (c >= 71680 && c <= 71738) + : c <= 71913))))) + : (c <= 71942 || (c < 71995 + ? (c < 71957 + ? (c < 71948 + ? c == 71945 + : c <= 71955) + : (c <= 71958 || (c < 71991 + ? (c >= 71960 && c <= 71989) + : c <= 71992))) + : (c <= 72003 || (c < 72106 + ? (c < 72096 + ? (c >= 72016 && c <= 72025) + : c <= 72103) + : (c <= 72151 || (c >= 72154 && c <= 72161))))))) + : (c <= 72164 || (c < 72873 + ? (c < 72704 + ? (c < 72272 + ? (c < 72263 + ? (c >= 72192 && c <= 72254) + : c <= 72263) + : (c <= 72345 || (c < 72384 + ? c == 72349 + : c <= 72440))) + : (c <= 72712 || (c < 72784 + ? (c < 72760 + ? (c >= 72714 && c <= 72758) + : c <= 72768) + : (c <= 72793 || (c < 72850 + ? (c >= 72818 && c <= 72847) + : c <= 72871))))) + : (c <= 72886 || (c < 73023 + ? (c < 72971 + ? (c < 72968 + ? (c >= 72960 && c <= 72966) + : c <= 72969) + : (c <= 73014 || (c < 73020 + ? c == 73018 + : c <= 73021))) + : (c <= 73031 || (c < 73063 + ? (c < 73056 + ? (c >= 73040 && c <= 73049) + : c <= 73061) + : (c <= 73064 || (c >= 73066 && c <= 73102))))))))) + : (c <= 73105 || (c < 94095 + ? (c < 92768 + ? (c < 74752 + ? (c < 73440 + ? (c < 73120 ? (c >= 73107 && c <= 73112) - : c <= 73129))) - : (c <= 73462 || (c < 74752 - ? (c < 73728 + : c <= 73129) + : (c <= 73462 || (c < 73728 ? c == 73648 - : c <= 74649) - : (c <= 74862 || (c < 77712 + : c <= 74649))) + : (c <= 74862 || (c < 82944 + ? (c < 77824 ? (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 <= 78894) + : (c <= 83526 || (c < 92736 + ? (c >= 92160 && c <= 92728) + : c <= 92766))))) + : (c <= 92777 || (c < 93027 + ? (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 <= 93017))) + : (c <= 93047 || (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 <= 94026 || (c >= 94031 && c <= 94087))))))) + : (c <= 94111 || (c < 113776 + ? (c < 101632 + ? (c < 94192 + ? (c < 94179 + ? (c >= 94176 && c <= 94177) + : c <= 94180) + : (c <= 94193 || (c < 100352 + ? (c >= 94208 && c <= 100343) + : c <= 101589))) + : (c <= 101640 || (c < 110948 + ? (c < 110928 + ? (c >= 110592 && c <= 110878) + : c <= 110930) + : (c <= 110951 || (c < 113664 + ? (c >= 110960 && c <= 111355) + : c <= 113770))))) + : (c <= 113788 || (c < 119163 + ? (c < 113821 + ? (c < 113808 + ? (c >= 113792 && c <= 113800) + : c <= 113817) + : (c <= 113822 || (c < 119149 + ? (c >= 119141 && c <= 119145) + : c <= 119154))) + : (c <= 119170 || (c < 119362 + ? (c < 119210 + ? (c >= 119173 && c <= 119179) + : c <= 119213) + : (c <= 119364 || (c >= 119808 && c <= 119892))))))))))) + : (c <= 119964 || (c < 124928 + ? (c < 120630 + ? (c < 120094 + ? (c < 119995 + ? (c < 119973 + ? (c < 119970 ? (c >= 119966 && c <= 119967) - : c <= 119970))))))))))) - : (c <= 119974 || (c < 124912 - ? (c < 120746 - ? (c < 120134 - ? (c < 120071 - ? (c < 119995 - ? (c < 119982 + : c <= 119970) + : (c <= 119974 || (c < 119982 ? (c >= 119977 && c <= 119980) - : c <= 119993) - : (c <= 119995 || (c < 120005 + : c <= 119993))) + : (c <= 119995 || (c < 120071 + ? (c < 120005 ? (c >= 119997 && c <= 120003) - : c <= 120069))) - : (c <= 120074 || (c < 120094 - ? (c < 120086 + : c <= 120069) + : (c <= 120074 || (c < 120086 ? (c >= 120077 && c <= 120084) - : c <= 120092) - : (c <= 120121 || (c < 120128 + : c <= 120092))))) + : (c <= 120121 || (c < 120488 + ? (c < 120134 + ? (c < 120128 ? (c >= 120123 && c <= 120126) - : c <= 120132))))) - : (c <= 120134 || (c < 120572 - ? (c < 120488 - ? (c < 120146 + : c <= 120132) + : (c <= 120134 || (c < 120146 ? (c >= 120138 && c <= 120144) - : c <= 120485) - : (c <= 120512 || (c < 120540 + : c <= 120485))) + : (c <= 120512 || (c < 120572 + ? (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 <= 120570) + : (c <= 120596 || (c >= 120598 && c <= 120628))))))) + : (c <= 120654 || (c < 121505 + ? (c < 120782 + ? (c < 120714 + ? (c < 120688 + ? (c >= 120656 && c <= 120686) + : c <= 120712) + : (c <= 120744 || (c < 120772 + ? (c >= 120746 && c <= 120770) + : c <= 120779))) + : (c <= 120831 || (c < 121461 + ? (c < 121403 + ? (c >= 121344 && c <= 121398) + : c <= 121452) + : (c <= 121461 || (c < 121499 + ? c == 121476 + : c <= 121503))))) + : (c <= 121519 || (c < 123136 + ? (c < 122907 + ? (c < 122888 ? (c >= 122880 && c <= 122886) - : c <= 122904))))) - : (c <= 122913 || (c < 123214 - ? (c < 123136 - ? (c < 122918 + : c <= 122904) + : (c <= 122913 || (c < 122918 ? (c >= 122915 && c <= 122916) - : c <= 122922) - : (c <= 123180 || (c < 123200 + : c <= 122922))) + : (c <= 123180 || (c < 123214 + ? (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 <= 123209) + : (c <= 123214 || (c >= 123584 && c <= 123641))))))))) + : (c <= 125124 || (c < 126557 + ? (c < 126523 + ? (c < 126497 + ? (c < 125264 + ? (c < 125184 + ? (c >= 125136 && c <= 125142) + : c <= 125259) + : (c <= 125273 || (c < 126469 + ? (c >= 126464 && c <= 126467) + : c <= 126495))) + : (c <= 126498 || (c < 126505 + ? (c < 126503 + ? c == 126500 + : c <= 126503) + : (c <= 126514 || (c < 126521 + ? (c >= 126516 && c <= 126519) + : c <= 126521))))) + : (c <= 126523 || (c < 126545 + ? (c < 126537 + ? (c < 126535 + ? c == 126530 + : c <= 126535) + : (c <= 126537 || (c < 126541 + ? c == 126539 + : c <= 126543))) + : (c <= 126546 || (c < 126553 + ? (c < 126551 + ? c == 126548 + : c <= 126551) + : (c <= 126553 || c == 126555)))))) : (c <= 126557 || (c < 126629 ? (c < 126580 ? (c < 126564 @@ -6282,8 +4738,8 @@ static inline bool sym_identifier_character_set_2(int32_t c) { ? (c < 130032 ? (c >= 126635 && c <= 126651) : c <= 130041) - : (c <= 173791 || (c < 177984 - ? (c >= 173824 && c <= 177976) + : (c <= 173789 || (c < 177984 + ? (c >= 173824 && c <= 177972) : c <= 178205))) : (c <= 183969 || (c < 196608 ? (c < 194560 @@ -7740,18 +6196,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [58] = {.lex_state = 50, .external_lex_state = 3}, [59] = {.lex_state = 50, .external_lex_state = 3}, [60] = {.lex_state = 50, .external_lex_state = 3}, - [61] = {.lex_state = 50, .external_lex_state = 2}, + [61] = {.lex_state = 50, .external_lex_state = 3}, [62] = {.lex_state = 50, .external_lex_state = 3}, - [63] = {.lex_state = 50, .external_lex_state = 2}, - [64] = {.lex_state = 50, .external_lex_state = 3}, - [65] = {.lex_state = 50, .external_lex_state = 3}, + [63] = {.lex_state = 50, .external_lex_state = 3}, + [64] = {.lex_state = 50, .external_lex_state = 2}, + [65] = {.lex_state = 50, .external_lex_state = 2}, [66] = {.lex_state = 50, .external_lex_state = 4}, [67] = {.lex_state = 50, .external_lex_state = 4}, [68] = {.lex_state = 50, .external_lex_state = 5}, [69] = {.lex_state = 50, .external_lex_state = 5}, [70] = {.lex_state = 50, .external_lex_state = 5}, [71] = {.lex_state = 50, .external_lex_state = 5}, - [72] = {.lex_state = 50, .external_lex_state = 4}, + [72] = {.lex_state = 50, .external_lex_state = 5}, [73] = {.lex_state = 50, .external_lex_state = 5}, [74] = {.lex_state = 50, .external_lex_state = 5}, [75] = {.lex_state = 50, .external_lex_state = 5}, @@ -7790,7 +6246,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [108] = {.lex_state = 50, .external_lex_state = 5}, [109] = {.lex_state = 50, .external_lex_state = 5}, [110] = {.lex_state = 50, .external_lex_state = 5}, - [111] = {.lex_state = 50, .external_lex_state = 5}, + [111] = {.lex_state = 50, .external_lex_state = 4}, [112] = {.lex_state = 50, .external_lex_state = 5}, [113] = {.lex_state = 50, .external_lex_state = 5}, [114] = {.lex_state = 50, .external_lex_state = 5}, @@ -7816,12 +6272,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [134] = {.lex_state = 50, .external_lex_state = 4}, [135] = {.lex_state = 50, .external_lex_state = 2}, [136] = {.lex_state = 50, .external_lex_state = 2}, - [137] = {.lex_state = 50, .external_lex_state = 2}, - [138] = {.lex_state = 14, .external_lex_state = 2}, + [137] = {.lex_state = 14, .external_lex_state = 2}, + [138] = {.lex_state = 50, .external_lex_state = 2}, [139] = {.lex_state = 14, .external_lex_state = 2}, - [140] = {.lex_state = 14, .external_lex_state = 2}, + [140] = {.lex_state = 50, .external_lex_state = 4}, [141] = {.lex_state = 14, .external_lex_state = 2}, - [142] = {.lex_state = 50, .external_lex_state = 4}, + [142] = {.lex_state = 14, .external_lex_state = 2}, [143] = {.lex_state = 50, .external_lex_state = 2}, [144] = {.lex_state = 50, .external_lex_state = 2}, [145] = {.lex_state = 50, .external_lex_state = 4}, @@ -7834,20 +6290,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [152] = {.lex_state = 14, .external_lex_state = 2}, [153] = {.lex_state = 50, .external_lex_state = 2}, [154] = {.lex_state = 50, .external_lex_state = 2}, - [155] = {.lex_state = 14, .external_lex_state = 2}, + [155] = {.lex_state = 50, .external_lex_state = 2}, [156] = {.lex_state = 50, .external_lex_state = 2}, [157] = {.lex_state = 50, .external_lex_state = 2}, - [158] = {.lex_state = 50, .external_lex_state = 2}, + [158] = {.lex_state = 14, .external_lex_state = 2}, [159] = {.lex_state = 50, .external_lex_state = 2}, [160] = {.lex_state = 14, .external_lex_state = 2}, - [161] = {.lex_state = 14, .external_lex_state = 2}, + [161] = {.lex_state = 50, .external_lex_state = 2}, [162] = {.lex_state = 14, .external_lex_state = 2}, [163] = {.lex_state = 14, .external_lex_state = 2}, [164] = {.lex_state = 50, .external_lex_state = 2}, - [165] = {.lex_state = 50, .external_lex_state = 2}, + [165] = {.lex_state = 14, .external_lex_state = 2}, [166] = {.lex_state = 50, .external_lex_state = 2}, [167] = {.lex_state = 50, .external_lex_state = 2}, - [168] = {.lex_state = 50, .external_lex_state = 4}, + [168] = {.lex_state = 50, .external_lex_state = 2}, [169] = {.lex_state = 50, .external_lex_state = 2}, [170] = {.lex_state = 50, .external_lex_state = 2}, [171] = {.lex_state = 50, .external_lex_state = 2}, @@ -7856,24 +6312,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [174] = {.lex_state = 50, .external_lex_state = 2}, [175] = {.lex_state = 50, .external_lex_state = 2}, [176] = {.lex_state = 50, .external_lex_state = 2}, - [177] = {.lex_state = 50, .external_lex_state = 2}, + [177] = {.lex_state = 50, .external_lex_state = 4}, [178] = {.lex_state = 50, .external_lex_state = 4}, [179] = {.lex_state = 50, .external_lex_state = 2}, [180] = {.lex_state = 50, .external_lex_state = 2}, [181] = {.lex_state = 50, .external_lex_state = 2}, [182] = {.lex_state = 50, .external_lex_state = 2}, [183] = {.lex_state = 50, .external_lex_state = 2}, - [184] = {.lex_state = 50, .external_lex_state = 4}, - [185] = {.lex_state = 50, .external_lex_state = 4}, - [186] = {.lex_state = 50, .external_lex_state = 2}, + [184] = {.lex_state = 50, .external_lex_state = 2}, + [185] = {.lex_state = 50, .external_lex_state = 2}, + [186] = {.lex_state = 50, .external_lex_state = 4}, [187] = {.lex_state = 50, .external_lex_state = 2}, - [188] = {.lex_state = 50, .external_lex_state = 2}, + [188] = {.lex_state = 50, .external_lex_state = 4}, [189] = {.lex_state = 50, .external_lex_state = 2}, - [190] = {.lex_state = 50, .external_lex_state = 2}, + [190] = {.lex_state = 50, .external_lex_state = 4}, [191] = {.lex_state = 50, .external_lex_state = 2}, [192] = {.lex_state = 50, .external_lex_state = 2}, [193] = {.lex_state = 50, .external_lex_state = 2}, - [194] = {.lex_state = 50, .external_lex_state = 4}, + [194] = {.lex_state = 50, .external_lex_state = 2}, [195] = {.lex_state = 50, .external_lex_state = 2}, [196] = {.lex_state = 50, .external_lex_state = 2}, [197] = {.lex_state = 50, .external_lex_state = 2}, @@ -7882,123 +6338,123 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [200] = {.lex_state = 50, .external_lex_state = 2}, [201] = {.lex_state = 50, .external_lex_state = 2}, [202] = {.lex_state = 50, .external_lex_state = 2}, - [203] = {.lex_state = 50, .external_lex_state = 4}, + [203] = {.lex_state = 50, .external_lex_state = 2}, [204] = {.lex_state = 50, .external_lex_state = 2}, [205] = {.lex_state = 50, .external_lex_state = 2}, [206] = {.lex_state = 50, .external_lex_state = 2}, [207] = {.lex_state = 50, .external_lex_state = 2}, [208] = {.lex_state = 50, .external_lex_state = 2}, [209] = {.lex_state = 50, .external_lex_state = 2}, - [210] = {.lex_state = 50, .external_lex_state = 2}, + [210] = {.lex_state = 50, .external_lex_state = 4}, [211] = {.lex_state = 50, .external_lex_state = 2}, - [212] = {.lex_state = 14, .external_lex_state = 2}, + [212] = {.lex_state = 50, .external_lex_state = 2}, [213] = {.lex_state = 14, .external_lex_state = 2}, [214] = {.lex_state = 14, .external_lex_state = 2}, - [215] = {.lex_state = 50, .external_lex_state = 2}, - [216] = {.lex_state = 50, .external_lex_state = 2}, - [217] = {.lex_state = 16}, - [218] = {.lex_state = 50, .external_lex_state = 2}, - [219] = {.lex_state = 16}, + [215] = {.lex_state = 14, .external_lex_state = 2}, + [216] = {.lex_state = 14, .external_lex_state = 2}, + [217] = {.lex_state = 50, .external_lex_state = 2}, + [218] = {.lex_state = 14, .external_lex_state = 2}, + [219] = {.lex_state = 50, .external_lex_state = 2}, [220] = {.lex_state = 14, .external_lex_state = 2}, - [221] = {.lex_state = 14, .external_lex_state = 2}, - [222] = {.lex_state = 14, .external_lex_state = 2}, + [221] = {.lex_state = 50, .external_lex_state = 2}, + [222] = {.lex_state = 50, .external_lex_state = 2}, [223] = {.lex_state = 50, .external_lex_state = 2}, [224] = {.lex_state = 50, .external_lex_state = 2}, [225] = {.lex_state = 50, .external_lex_state = 2}, - [226] = {.lex_state = 50, .external_lex_state = 3}, - [227] = {.lex_state = 50, .external_lex_state = 3}, + [226] = {.lex_state = 14, .external_lex_state = 2}, + [227] = {.lex_state = 50, .external_lex_state = 2}, [228] = {.lex_state = 50, .external_lex_state = 2}, - [229] = {.lex_state = 50, .external_lex_state = 3}, + [229] = {.lex_state = 50, .external_lex_state = 2}, [230] = {.lex_state = 50, .external_lex_state = 2}, [231] = {.lex_state = 50, .external_lex_state = 2}, [232] = {.lex_state = 50, .external_lex_state = 2}, [233] = {.lex_state = 50, .external_lex_state = 2}, - [234] = {.lex_state = 50, .external_lex_state = 3}, - [235] = {.lex_state = 14, .external_lex_state = 2}, + [234] = {.lex_state = 50, .external_lex_state = 2}, + [235] = {.lex_state = 50, .external_lex_state = 2}, [236] = {.lex_state = 50, .external_lex_state = 2}, [237] = {.lex_state = 50, .external_lex_state = 2}, [238] = {.lex_state = 50, .external_lex_state = 2}, - [239] = {.lex_state = 15, .external_lex_state = 6}, + [239] = {.lex_state = 50, .external_lex_state = 2}, [240] = {.lex_state = 50, .external_lex_state = 2}, - [241] = {.lex_state = 15, .external_lex_state = 6}, + [241] = {.lex_state = 50, .external_lex_state = 2}, [242] = {.lex_state = 50, .external_lex_state = 2}, - [243] = {.lex_state = 50, .external_lex_state = 2}, - [244] = {.lex_state = 50, .external_lex_state = 2}, - [245] = {.lex_state = 50, .external_lex_state = 2}, - [246] = {.lex_state = 50, .external_lex_state = 2}, + [243] = {.lex_state = 14, .external_lex_state = 2}, + [244] = {.lex_state = 16}, + [245] = {.lex_state = 16}, + [246] = {.lex_state = 14, .external_lex_state = 2}, [247] = {.lex_state = 50, .external_lex_state = 2}, [248] = {.lex_state = 50, .external_lex_state = 2}, [249] = {.lex_state = 50, .external_lex_state = 2}, - [250] = {.lex_state = 50, .external_lex_state = 2}, + [250] = {.lex_state = 50, .external_lex_state = 3}, [251] = {.lex_state = 50, .external_lex_state = 2}, - [252] = {.lex_state = 50, .external_lex_state = 2}, - [253] = {.lex_state = 50, .external_lex_state = 3}, - [254] = {.lex_state = 50, .external_lex_state = 3}, + [252] = {.lex_state = 50, .external_lex_state = 3}, + [253] = {.lex_state = 50, .external_lex_state = 2}, + [254] = {.lex_state = 50, .external_lex_state = 2}, [255] = {.lex_state = 50, .external_lex_state = 3}, - [256] = {.lex_state = 15, .external_lex_state = 4}, - [257] = {.lex_state = 50, .external_lex_state = 2}, + [256] = {.lex_state = 50, .external_lex_state = 2}, + [257] = {.lex_state = 50, .external_lex_state = 3}, [258] = {.lex_state = 50, .external_lex_state = 2}, [259] = {.lex_state = 50, .external_lex_state = 2}, [260] = {.lex_state = 50, .external_lex_state = 2}, [261] = {.lex_state = 50, .external_lex_state = 2}, - [262] = {.lex_state = 50, .external_lex_state = 2}, - [263] = {.lex_state = 50, .external_lex_state = 3}, + [262] = {.lex_state = 14, .external_lex_state = 2}, + [263] = {.lex_state = 14, .external_lex_state = 2}, [264] = {.lex_state = 50, .external_lex_state = 2}, - [265] = {.lex_state = 14, .external_lex_state = 2}, - [266] = {.lex_state = 50, .external_lex_state = 3}, - [267] = {.lex_state = 50, .external_lex_state = 2}, - [268] = {.lex_state = 50, .external_lex_state = 3}, + [265] = {.lex_state = 50, .external_lex_state = 4}, + [266] = {.lex_state = 50, .external_lex_state = 2}, + [267] = {.lex_state = 14, .external_lex_state = 2}, + [268] = {.lex_state = 50, .external_lex_state = 2}, [269] = {.lex_state = 50, .external_lex_state = 2}, [270] = {.lex_state = 50, .external_lex_state = 2}, - [271] = {.lex_state = 50, .external_lex_state = 2}, - [272] = {.lex_state = 50, .external_lex_state = 2}, + [271] = {.lex_state = 50, .external_lex_state = 4}, + [272] = {.lex_state = 50, .external_lex_state = 4}, [273] = {.lex_state = 50, .external_lex_state = 2}, - [274] = {.lex_state = 50, .external_lex_state = 3}, - [275] = {.lex_state = 50, .external_lex_state = 3}, + [274] = {.lex_state = 50, .external_lex_state = 2}, + [275] = {.lex_state = 50, .external_lex_state = 2}, [276] = {.lex_state = 50, .external_lex_state = 2}, - [277] = {.lex_state = 50, .external_lex_state = 2}, - [278] = {.lex_state = 14, .external_lex_state = 2}, - [279] = {.lex_state = 50, .external_lex_state = 3}, + [277] = {.lex_state = 14, .external_lex_state = 2}, + [278] = {.lex_state = 50, .external_lex_state = 2}, + [279] = {.lex_state = 50, .external_lex_state = 2}, [280] = {.lex_state = 50, .external_lex_state = 2}, - [281] = {.lex_state = 50, .external_lex_state = 3}, + [281] = {.lex_state = 50, .external_lex_state = 2}, [282] = {.lex_state = 50, .external_lex_state = 2}, - [283] = {.lex_state = 50, .external_lex_state = 3}, + [283] = {.lex_state = 50, .external_lex_state = 2}, [284] = {.lex_state = 50, .external_lex_state = 2}, [285] = {.lex_state = 50, .external_lex_state = 2}, - [286] = {.lex_state = 50, .external_lex_state = 2}, + [286] = {.lex_state = 50, .external_lex_state = 4}, [287] = {.lex_state = 50, .external_lex_state = 2}, - [288] = {.lex_state = 14, .external_lex_state = 2}, + [288] = {.lex_state = 50, .external_lex_state = 2}, [289] = {.lex_state = 50, .external_lex_state = 2}, [290] = {.lex_state = 50, .external_lex_state = 2}, [291] = {.lex_state = 50, .external_lex_state = 2}, - [292] = {.lex_state = 50, .external_lex_state = 2}, - [293] = {.lex_state = 50, .external_lex_state = 4}, + [292] = {.lex_state = 50, .external_lex_state = 3}, + [293] = {.lex_state = 50, .external_lex_state = 3}, [294] = {.lex_state = 50, .external_lex_state = 2}, [295] = {.lex_state = 50, .external_lex_state = 2}, - [296] = {.lex_state = 50, .external_lex_state = 2}, + [296] = {.lex_state = 50, .external_lex_state = 3}, [297] = {.lex_state = 50, .external_lex_state = 2}, - [298] = {.lex_state = 50, .external_lex_state = 2}, - [299] = {.lex_state = 50, .external_lex_state = 2}, - [300] = {.lex_state = 50, .external_lex_state = 4}, - [301] = {.lex_state = 15, .external_lex_state = 6}, + [298] = {.lex_state = 15, .external_lex_state = 6}, + [299] = {.lex_state = 15, .external_lex_state = 6}, + [300] = {.lex_state = 50, .external_lex_state = 3}, + [301] = {.lex_state = 50, .external_lex_state = 3}, [302] = {.lex_state = 50, .external_lex_state = 2}, [303] = {.lex_state = 50, .external_lex_state = 2}, - [304] = {.lex_state = 50, .external_lex_state = 2}, + [304] = {.lex_state = 50, .external_lex_state = 3}, [305] = {.lex_state = 50, .external_lex_state = 2}, - [306] = {.lex_state = 50, .external_lex_state = 4}, - [307] = {.lex_state = 50, .external_lex_state = 4}, - [308] = {.lex_state = 50, .external_lex_state = 3}, + [306] = {.lex_state = 50, .external_lex_state = 3}, + [307] = {.lex_state = 50, .external_lex_state = 3}, + [308] = {.lex_state = 50, .external_lex_state = 2}, [309] = {.lex_state = 50, .external_lex_state = 2}, - [310] = {.lex_state = 50, .external_lex_state = 2}, + [310] = {.lex_state = 50, .external_lex_state = 3}, [311] = {.lex_state = 50, .external_lex_state = 2}, - [312] = {.lex_state = 14, .external_lex_state = 2}, - [313] = {.lex_state = 50, .external_lex_state = 2}, - [314] = {.lex_state = 16, .external_lex_state = 6}, + [312] = {.lex_state = 50, .external_lex_state = 3}, + [313] = {.lex_state = 50, .external_lex_state = 3}, + [314] = {.lex_state = 50, .external_lex_state = 2}, [315] = {.lex_state = 50, .external_lex_state = 2}, - [316] = {.lex_state = 15}, - [317] = {.lex_state = 15}, - [318] = {.lex_state = 16, .external_lex_state = 6}, - [319] = {.lex_state = 14, .external_lex_state = 2}, + [316] = {.lex_state = 50, .external_lex_state = 2}, + [317] = {.lex_state = 50, .external_lex_state = 2}, + [318] = {.lex_state = 50, .external_lex_state = 2}, + [319] = {.lex_state = 50, .external_lex_state = 2}, [320] = {.lex_state = 50, .external_lex_state = 2}, [321] = {.lex_state = 50, .external_lex_state = 2}, [322] = {.lex_state = 50, .external_lex_state = 2}, @@ -8009,21 +6465,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [327] = {.lex_state = 50, .external_lex_state = 2}, [328] = {.lex_state = 50, .external_lex_state = 2}, [329] = {.lex_state = 50, .external_lex_state = 2}, - [330] = {.lex_state = 15, .external_lex_state = 6}, - [331] = {.lex_state = 15, .external_lex_state = 6}, - [332] = {.lex_state = 50, .external_lex_state = 3}, - [333] = {.lex_state = 50, .external_lex_state = 3}, - [334] = {.lex_state = 50, .external_lex_state = 3}, - [335] = {.lex_state = 50, .external_lex_state = 3}, - [336] = {.lex_state = 50, .external_lex_state = 3}, - [337] = {.lex_state = 50, .external_lex_state = 3}, - [338] = {.lex_state = 50, .external_lex_state = 3}, - [339] = {.lex_state = 50, .external_lex_state = 3}, - [340] = {.lex_state = 50, .external_lex_state = 3}, - [341] = {.lex_state = 50, .external_lex_state = 3}, - [342] = {.lex_state = 50, .external_lex_state = 3}, - [343] = {.lex_state = 50, .external_lex_state = 3}, - [344] = {.lex_state = 14, .external_lex_state = 2}, + [330] = {.lex_state = 50, .external_lex_state = 2}, + [331] = {.lex_state = 50, .external_lex_state = 2}, + [332] = {.lex_state = 50, .external_lex_state = 2}, + [333] = {.lex_state = 50, .external_lex_state = 2}, + [334] = {.lex_state = 50, .external_lex_state = 2}, + [335] = {.lex_state = 50, .external_lex_state = 2}, + [336] = {.lex_state = 50, .external_lex_state = 2}, + [337] = {.lex_state = 50, .external_lex_state = 2}, + [338] = {.lex_state = 50, .external_lex_state = 2}, + [339] = {.lex_state = 50, .external_lex_state = 2}, + [340] = {.lex_state = 50, .external_lex_state = 2}, + [341] = {.lex_state = 50, .external_lex_state = 2}, + [342] = {.lex_state = 50, .external_lex_state = 2}, + [343] = {.lex_state = 50, .external_lex_state = 2}, + [344] = {.lex_state = 50, .external_lex_state = 2}, [345] = {.lex_state = 50, .external_lex_state = 2}, [346] = {.lex_state = 50, .external_lex_state = 2}, [347] = {.lex_state = 50, .external_lex_state = 2}, @@ -8033,7 +6489,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [351] = {.lex_state = 50, .external_lex_state = 2}, [352] = {.lex_state = 50, .external_lex_state = 2}, [353] = {.lex_state = 50, .external_lex_state = 2}, - [354] = {.lex_state = 16, .external_lex_state = 6}, + [354] = {.lex_state = 50, .external_lex_state = 2}, [355] = {.lex_state = 50, .external_lex_state = 2}, [356] = {.lex_state = 50, .external_lex_state = 2}, [357] = {.lex_state = 50, .external_lex_state = 2}, @@ -8048,7 +6504,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [366] = {.lex_state = 50, .external_lex_state = 2}, [367] = {.lex_state = 50, .external_lex_state = 2}, [368] = {.lex_state = 50, .external_lex_state = 2}, - [369] = {.lex_state = 50, .external_lex_state = 2}, + [369] = {.lex_state = 50, .external_lex_state = 3}, [370] = {.lex_state = 50, .external_lex_state = 2}, [371] = {.lex_state = 50, .external_lex_state = 2}, [372] = {.lex_state = 50, .external_lex_state = 2}, @@ -8056,121 +6512,121 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [374] = {.lex_state = 50, .external_lex_state = 2}, [375] = {.lex_state = 50, .external_lex_state = 2}, [376] = {.lex_state = 50, .external_lex_state = 2}, - [377] = {.lex_state = 16}, + [377] = {.lex_state = 50, .external_lex_state = 2}, [378] = {.lex_state = 50, .external_lex_state = 2}, [379] = {.lex_state = 50, .external_lex_state = 2}, [380] = {.lex_state = 50, .external_lex_state = 2}, - [381] = {.lex_state = 50, .external_lex_state = 2}, + [381] = {.lex_state = 15, .external_lex_state = 7}, [382] = {.lex_state = 50, .external_lex_state = 2}, [383] = {.lex_state = 50, .external_lex_state = 2}, [384] = {.lex_state = 50, .external_lex_state = 2}, [385] = {.lex_state = 50, .external_lex_state = 2}, - [386] = {.lex_state = 50, .external_lex_state = 3}, + [386] = {.lex_state = 50, .external_lex_state = 2}, [387] = {.lex_state = 50, .external_lex_state = 2}, [388] = {.lex_state = 50, .external_lex_state = 2}, [389] = {.lex_state = 50, .external_lex_state = 2}, [390] = {.lex_state = 50, .external_lex_state = 3}, - [391] = {.lex_state = 50, .external_lex_state = 3}, + [391] = {.lex_state = 50, .external_lex_state = 2}, [392] = {.lex_state = 50, .external_lex_state = 3}, [393] = {.lex_state = 50, .external_lex_state = 3}, [394] = {.lex_state = 50, .external_lex_state = 2}, - [395] = {.lex_state = 50, .external_lex_state = 3}, - [396] = {.lex_state = 50, .external_lex_state = 3}, - [397] = {.lex_state = 50, .external_lex_state = 3}, + [395] = {.lex_state = 50, .external_lex_state = 2}, + [396] = {.lex_state = 50, .external_lex_state = 2}, + [397] = {.lex_state = 15, .external_lex_state = 6}, [398] = {.lex_state = 50, .external_lex_state = 2}, [399] = {.lex_state = 50, .external_lex_state = 2}, - [400] = {.lex_state = 50, .external_lex_state = 3}, + [400] = {.lex_state = 50, .external_lex_state = 2}, [401] = {.lex_state = 50, .external_lex_state = 3}, - [402] = {.lex_state = 50, .external_lex_state = 2}, - [403] = {.lex_state = 16, .external_lex_state = 6}, + [402] = {.lex_state = 50, .external_lex_state = 3}, + [403] = {.lex_state = 50, .external_lex_state = 3}, [404] = {.lex_state = 50, .external_lex_state = 3}, [405] = {.lex_state = 50, .external_lex_state = 2}, - [406] = {.lex_state = 50, .external_lex_state = 2}, + [406] = {.lex_state = 50, .external_lex_state = 3}, [407] = {.lex_state = 50, .external_lex_state = 2}, - [408] = {.lex_state = 50, .external_lex_state = 2}, + [408] = {.lex_state = 50, .external_lex_state = 3}, [409] = {.lex_state = 50, .external_lex_state = 2}, - [410] = {.lex_state = 50, .external_lex_state = 2}, + [410] = {.lex_state = 50, .external_lex_state = 3}, [411] = {.lex_state = 50, .external_lex_state = 2}, - [412] = {.lex_state = 50, .external_lex_state = 2}, - [413] = {.lex_state = 50, .external_lex_state = 2}, + [412] = {.lex_state = 50, .external_lex_state = 3}, + [413] = {.lex_state = 50, .external_lex_state = 3}, [414] = {.lex_state = 50, .external_lex_state = 2}, [415] = {.lex_state = 50, .external_lex_state = 2}, - [416] = {.lex_state = 50, .external_lex_state = 2}, + [416] = {.lex_state = 15}, [417] = {.lex_state = 50, .external_lex_state = 2}, - [418] = {.lex_state = 50, .external_lex_state = 2}, - [419] = {.lex_state = 50, .external_lex_state = 2}, + [418] = {.lex_state = 50, .external_lex_state = 3}, + [419] = {.lex_state = 50, .external_lex_state = 3}, [420] = {.lex_state = 50, .external_lex_state = 2}, - [421] = {.lex_state = 50, .external_lex_state = 2}, - [422] = {.lex_state = 50, .external_lex_state = 2}, + [421] = {.lex_state = 50, .external_lex_state = 3}, + [422] = {.lex_state = 16, .external_lex_state = 6}, [423] = {.lex_state = 50, .external_lex_state = 2}, - [424] = {.lex_state = 50, .external_lex_state = 2}, - [425] = {.lex_state = 50, .external_lex_state = 2}, + [424] = {.lex_state = 50, .external_lex_state = 3}, + [425] = {.lex_state = 50, .external_lex_state = 3}, [426] = {.lex_state = 50, .external_lex_state = 2}, - [427] = {.lex_state = 50, .external_lex_state = 2}, + [427] = {.lex_state = 50, .external_lex_state = 3}, [428] = {.lex_state = 50, .external_lex_state = 2}, - [429] = {.lex_state = 50, .external_lex_state = 2}, - [430] = {.lex_state = 50, .external_lex_state = 2}, - [431] = {.lex_state = 16, .external_lex_state = 6}, + [429] = {.lex_state = 15, .external_lex_state = 6}, + [430] = {.lex_state = 50, .external_lex_state = 3}, + [431] = {.lex_state = 50, .external_lex_state = 3}, [432] = {.lex_state = 50, .external_lex_state = 2}, - [433] = {.lex_state = 50, .external_lex_state = 2}, + [433] = {.lex_state = 50, .external_lex_state = 3}, [434] = {.lex_state = 50, .external_lex_state = 2}, [435] = {.lex_state = 50, .external_lex_state = 2}, - [436] = {.lex_state = 50, .external_lex_state = 2}, + [436] = {.lex_state = 50, .external_lex_state = 3}, [437] = {.lex_state = 50, .external_lex_state = 2}, [438] = {.lex_state = 50, .external_lex_state = 2}, - [439] = {.lex_state = 50, .external_lex_state = 2}, - [440] = {.lex_state = 50, .external_lex_state = 2}, + [439] = {.lex_state = 50, .external_lex_state = 3}, + [440] = {.lex_state = 15, .external_lex_state = 6}, [441] = {.lex_state = 50, .external_lex_state = 2}, - [442] = {.lex_state = 50, .external_lex_state = 2}, - [443] = {.lex_state = 50, .external_lex_state = 2}, + [442] = {.lex_state = 15}, + [443] = {.lex_state = 16, .external_lex_state = 6}, [444] = {.lex_state = 50, .external_lex_state = 2}, [445] = {.lex_state = 50, .external_lex_state = 2}, - [446] = {.lex_state = 50, .external_lex_state = 2}, + [446] = {.lex_state = 16, .external_lex_state = 6}, [447] = {.lex_state = 50, .external_lex_state = 2}, - [448] = {.lex_state = 50, .external_lex_state = 3}, + [448] = {.lex_state = 50, .external_lex_state = 2}, [449] = {.lex_state = 50, .external_lex_state = 2}, - [450] = {.lex_state = 50, .external_lex_state = 3}, - [451] = {.lex_state = 50, .external_lex_state = 3}, - [452] = {.lex_state = 50, .external_lex_state = 3}, - [453] = {.lex_state = 50, .external_lex_state = 3}, + [450] = {.lex_state = 50, .external_lex_state = 2}, + [451] = {.lex_state = 16, .external_lex_state = 6}, + [452] = {.lex_state = 16}, + [453] = {.lex_state = 50, .external_lex_state = 2}, [454] = {.lex_state = 50, .external_lex_state = 2}, [455] = {.lex_state = 50, .external_lex_state = 3}, [456] = {.lex_state = 50, .external_lex_state = 2}, [457] = {.lex_state = 50, .external_lex_state = 2}, - [458] = {.lex_state = 50, .external_lex_state = 3}, - [459] = {.lex_state = 50, .external_lex_state = 2}, + [458] = {.lex_state = 50, .external_lex_state = 2}, + [459] = {.lex_state = 16, .external_lex_state = 6}, [460] = {.lex_state = 50, .external_lex_state = 3}, - [461] = {.lex_state = 50, .external_lex_state = 3}, - [462] = {.lex_state = 50, .external_lex_state = 2}, + [461] = {.lex_state = 50, .external_lex_state = 2}, + [462] = {.lex_state = 50, .external_lex_state = 3}, [463] = {.lex_state = 50, .external_lex_state = 3}, [464] = {.lex_state = 50, .external_lex_state = 3}, [465] = {.lex_state = 50, .external_lex_state = 2}, - [466] = {.lex_state = 50, .external_lex_state = 2}, + [466] = {.lex_state = 50, .external_lex_state = 3}, [467] = {.lex_state = 50, .external_lex_state = 2}, [468] = {.lex_state = 50, .external_lex_state = 3}, [469] = {.lex_state = 50, .external_lex_state = 2}, [470] = {.lex_state = 50, .external_lex_state = 3}, [471] = {.lex_state = 50, .external_lex_state = 3}, [472] = {.lex_state = 50, .external_lex_state = 2}, - [473] = {.lex_state = 50, .external_lex_state = 2}, + [473] = {.lex_state = 50, .external_lex_state = 3}, [474] = {.lex_state = 50, .external_lex_state = 3}, [475] = {.lex_state = 50, .external_lex_state = 3}, - [476] = {.lex_state = 50, .external_lex_state = 3}, + [476] = {.lex_state = 50, .external_lex_state = 2}, [477] = {.lex_state = 50, .external_lex_state = 3}, [478] = {.lex_state = 50, .external_lex_state = 3}, [479] = {.lex_state = 50, .external_lex_state = 3}, [480] = {.lex_state = 50, .external_lex_state = 3}, [481] = {.lex_state = 50, .external_lex_state = 3}, - [482] = {.lex_state = 50, .external_lex_state = 3}, - [483] = {.lex_state = 50, .external_lex_state = 3}, - [484] = {.lex_state = 50, .external_lex_state = 3}, + [482] = {.lex_state = 50, .external_lex_state = 2}, + [483] = {.lex_state = 50, .external_lex_state = 2}, + [484] = {.lex_state = 50, .external_lex_state = 2}, [485] = {.lex_state = 50, .external_lex_state = 2}, [486] = {.lex_state = 50, .external_lex_state = 3}, - [487] = {.lex_state = 50, .external_lex_state = 3}, + [487] = {.lex_state = 50, .external_lex_state = 2}, [488] = {.lex_state = 50, .external_lex_state = 3}, - [489] = {.lex_state = 50, .external_lex_state = 2}, - [490] = {.lex_state = 50, .external_lex_state = 3}, - [491] = {.lex_state = 50, .external_lex_state = 3}, + [489] = {.lex_state = 50, .external_lex_state = 3}, + [490] = {.lex_state = 50, .external_lex_state = 2}, + [491] = {.lex_state = 50, .external_lex_state = 2}, [492] = {.lex_state = 50, .external_lex_state = 3}, [493] = {.lex_state = 50, .external_lex_state = 3}, [494] = {.lex_state = 50, .external_lex_state = 3}, @@ -8182,982 +6638,1013 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [500] = {.lex_state = 50, .external_lex_state = 3}, [501] = {.lex_state = 50, .external_lex_state = 3}, [502] = {.lex_state = 50, .external_lex_state = 2}, - [503] = {.lex_state = 50, .external_lex_state = 2}, - [504] = {.lex_state = 50, .external_lex_state = 3}, + [503] = {.lex_state = 50, .external_lex_state = 3}, + [504] = {.lex_state = 50, .external_lex_state = 2}, [505] = {.lex_state = 50, .external_lex_state = 3}, - [506] = {.lex_state = 50, .external_lex_state = 3}, + [506] = {.lex_state = 50, .external_lex_state = 2}, [507] = {.lex_state = 50, .external_lex_state = 2}, - [508] = {.lex_state = 50, .external_lex_state = 3}, - [509] = {.lex_state = 50, .external_lex_state = 2}, - [510] = {.lex_state = 50, .external_lex_state = 3}, - [511] = {.lex_state = 50, .external_lex_state = 2}, + [508] = {.lex_state = 50, .external_lex_state = 2}, + [509] = {.lex_state = 50, .external_lex_state = 3}, + [510] = {.lex_state = 50, .external_lex_state = 2}, + [511] = {.lex_state = 50, .external_lex_state = 3}, [512] = {.lex_state = 50, .external_lex_state = 3}, - [513] = {.lex_state = 50, .external_lex_state = 3}, + [513] = {.lex_state = 50, .external_lex_state = 2}, [514] = {.lex_state = 50, .external_lex_state = 3}, [515] = {.lex_state = 50, .external_lex_state = 2}, - [516] = {.lex_state = 50, .external_lex_state = 2}, + [516] = {.lex_state = 50, .external_lex_state = 3}, [517] = {.lex_state = 50, .external_lex_state = 3}, - [518] = {.lex_state = 50, .external_lex_state = 3}, - [519] = {.lex_state = 50, .external_lex_state = 3}, - [520] = {.lex_state = 50, .external_lex_state = 3}, - [521] = {.lex_state = 50, .external_lex_state = 3}, - [522] = {.lex_state = 50, .external_lex_state = 2}, + [518] = {.lex_state = 50, .external_lex_state = 2}, + [519] = {.lex_state = 50, .external_lex_state = 2}, + [520] = {.lex_state = 50, .external_lex_state = 2}, + [521] = {.lex_state = 50, .external_lex_state = 2}, + [522] = {.lex_state = 50, .external_lex_state = 3}, [523] = {.lex_state = 50, .external_lex_state = 2}, - [524] = {.lex_state = 50, .external_lex_state = 3}, + [524] = {.lex_state = 50, .external_lex_state = 2}, [525] = {.lex_state = 50, .external_lex_state = 3}, - [526] = {.lex_state = 50, .external_lex_state = 2}, + [526] = {.lex_state = 50, .external_lex_state = 3}, [527] = {.lex_state = 50, .external_lex_state = 2}, [528] = {.lex_state = 50, .external_lex_state = 2}, - [529] = {.lex_state = 50, .external_lex_state = 2}, - [530] = {.lex_state = 50, .external_lex_state = 2}, + [529] = {.lex_state = 50, .external_lex_state = 3}, + [530] = {.lex_state = 50, .external_lex_state = 3}, [531] = {.lex_state = 50, .external_lex_state = 2}, [532] = {.lex_state = 50, .external_lex_state = 2}, [533] = {.lex_state = 50, .external_lex_state = 2}, [534] = {.lex_state = 50, .external_lex_state = 2}, [535] = {.lex_state = 50, .external_lex_state = 2}, - [536] = {.lex_state = 50, .external_lex_state = 2}, - [537] = {.lex_state = 50, .external_lex_state = 2}, - [538] = {.lex_state = 50, .external_lex_state = 2}, - [539] = {.lex_state = 50, .external_lex_state = 2}, + [536] = {.lex_state = 50, .external_lex_state = 3}, + [537] = {.lex_state = 50, .external_lex_state = 3}, + [538] = {.lex_state = 50, .external_lex_state = 3}, + [539] = {.lex_state = 50, .external_lex_state = 3}, [540] = {.lex_state = 50, .external_lex_state = 2}, [541] = {.lex_state = 50, .external_lex_state = 2}, [542] = {.lex_state = 50, .external_lex_state = 2}, - [543] = {.lex_state = 50, .external_lex_state = 2}, + [543] = {.lex_state = 50, .external_lex_state = 3}, [544] = {.lex_state = 50, .external_lex_state = 2}, [545] = {.lex_state = 50, .external_lex_state = 2}, [546] = {.lex_state = 50, .external_lex_state = 2}, [547] = {.lex_state = 50, .external_lex_state = 2}, - [548] = {.lex_state = 50, .external_lex_state = 2}, + [548] = {.lex_state = 50, .external_lex_state = 3}, [549] = {.lex_state = 50, .external_lex_state = 2}, - [550] = {.lex_state = 50, .external_lex_state = 2}, - [551] = {.lex_state = 50, .external_lex_state = 2}, + [550] = {.lex_state = 50, .external_lex_state = 3}, + [551] = {.lex_state = 50, .external_lex_state = 3}, [552] = {.lex_state = 50, .external_lex_state = 2}, - [553] = {.lex_state = 50, .external_lex_state = 2}, + [553] = {.lex_state = 50, .external_lex_state = 3}, [554] = {.lex_state = 50, .external_lex_state = 2}, - [555] = {.lex_state = 50, .external_lex_state = 2}, + [555] = {.lex_state = 50, .external_lex_state = 3}, [556] = {.lex_state = 50, .external_lex_state = 2}, [557] = {.lex_state = 50, .external_lex_state = 2}, - [558] = {.lex_state = 50, .external_lex_state = 3}, - [559] = {.lex_state = 50, .external_lex_state = 2}, - [560] = {.lex_state = 50, .external_lex_state = 2}, - [561] = {.lex_state = 50, .external_lex_state = 2}, + [558] = {.lex_state = 50, .external_lex_state = 2}, + [559] = {.lex_state = 50, .external_lex_state = 3}, + [560] = {.lex_state = 50, .external_lex_state = 3}, + [561] = {.lex_state = 50, .external_lex_state = 3}, [562] = {.lex_state = 50, .external_lex_state = 2}, [563] = {.lex_state = 50, .external_lex_state = 2}, [564] = {.lex_state = 50, .external_lex_state = 2}, - [565] = {.lex_state = 16, .external_lex_state = 2}, - [566] = {.lex_state = 16, .external_lex_state = 2}, + [565] = {.lex_state = 50, .external_lex_state = 2}, + [566] = {.lex_state = 50, .external_lex_state = 2}, [567] = {.lex_state = 50, .external_lex_state = 2}, - [568] = {.lex_state = 50, .external_lex_state = 2}, - [569] = {.lex_state = 16, .external_lex_state = 2}, - [570] = {.lex_state = 16, .external_lex_state = 2}, - [571] = {.lex_state = 14, .external_lex_state = 2}, - [572] = {.lex_state = 16, .external_lex_state = 2}, - [573] = {.lex_state = 16}, - [574] = {.lex_state = 16}, - [575] = {.lex_state = 16}, - [576] = {.lex_state = 16}, - [577] = {.lex_state = 16}, - [578] = {.lex_state = 16}, - [579] = {.lex_state = 16}, - [580] = {.lex_state = 16}, - [581] = {.lex_state = 16}, - [582] = {.lex_state = 16}, - [583] = {.lex_state = 16}, - [584] = {.lex_state = 16}, - [585] = {.lex_state = 16}, - [586] = {.lex_state = 16}, - [587] = {.lex_state = 16}, - [588] = {.lex_state = 16}, - [589] = {.lex_state = 16}, - [590] = {.lex_state = 16}, - [591] = {.lex_state = 16}, - [592] = {.lex_state = 16}, - [593] = {.lex_state = 16}, - [594] = {.lex_state = 16}, - [595] = {.lex_state = 16}, - [596] = {.lex_state = 16}, - [597] = {.lex_state = 16}, - [598] = {.lex_state = 16}, - [599] = {.lex_state = 16}, - [600] = {.lex_state = 16}, - [601] = {.lex_state = 16}, - [602] = {.lex_state = 16}, - [603] = {.lex_state = 16}, - [604] = {.lex_state = 16}, - [605] = {.lex_state = 16}, - [606] = {.lex_state = 16}, + [568] = {.lex_state = 14, .external_lex_state = 2}, + [569] = {.lex_state = 16, .external_lex_state = 8}, + [570] = {.lex_state = 16, .external_lex_state = 9}, + [571] = {.lex_state = 16, .external_lex_state = 9}, + [572] = {.lex_state = 16, .external_lex_state = 9}, + [573] = {.lex_state = 16, .external_lex_state = 8}, + [574] = {.lex_state = 16, .external_lex_state = 8}, + [575] = {.lex_state = 50, .external_lex_state = 2}, + [576] = {.lex_state = 50, .external_lex_state = 2}, + [577] = {.lex_state = 50, .external_lex_state = 2}, + [578] = {.lex_state = 50, .external_lex_state = 2}, + [579] = {.lex_state = 50, .external_lex_state = 2}, + [580] = {.lex_state = 16, .external_lex_state = 8}, + [581] = {.lex_state = 16, .external_lex_state = 9}, + [582] = {.lex_state = 50, .external_lex_state = 2}, + [583] = {.lex_state = 50, .external_lex_state = 2}, + [584] = {.lex_state = 16, .external_lex_state = 8}, + [585] = {.lex_state = 50, .external_lex_state = 2}, + [586] = {.lex_state = 50, .external_lex_state = 2}, + [587] = {.lex_state = 50, .external_lex_state = 2}, + [588] = {.lex_state = 50, .external_lex_state = 2}, + [589] = {.lex_state = 50, .external_lex_state = 2}, + [590] = {.lex_state = 50, .external_lex_state = 2}, + [591] = {.lex_state = 50, .external_lex_state = 2}, + [592] = {.lex_state = 50, .external_lex_state = 2}, + [593] = {.lex_state = 50, .external_lex_state = 2}, + [594] = {.lex_state = 50, .external_lex_state = 2}, + [595] = {.lex_state = 50, .external_lex_state = 2}, + [596] = {.lex_state = 50, .external_lex_state = 2}, + [597] = {.lex_state = 50, .external_lex_state = 2}, + [598] = {.lex_state = 50, .external_lex_state = 2}, + [599] = {.lex_state = 50, .external_lex_state = 2}, + [600] = {.lex_state = 50, .external_lex_state = 2}, + [601] = {.lex_state = 50, .external_lex_state = 2}, + [602] = {.lex_state = 50, .external_lex_state = 2}, + [603] = {.lex_state = 50, .external_lex_state = 2}, + [604] = {.lex_state = 50, .external_lex_state = 2}, + [605] = {.lex_state = 50, .external_lex_state = 2}, + [606] = {.lex_state = 50, .external_lex_state = 2}, [607] = {.lex_state = 50, .external_lex_state = 2}, - [608] = {.lex_state = 16}, - [609] = {.lex_state = 16}, + [608] = {.lex_state = 50, .external_lex_state = 2}, + [609] = {.lex_state = 50, .external_lex_state = 2}, [610] = {.lex_state = 50, .external_lex_state = 2}, - [611] = {.lex_state = 16}, - [612] = {.lex_state = 16}, - [613] = {.lex_state = 16}, - [614] = {.lex_state = 16}, - [615] = {.lex_state = 16}, - [616] = {.lex_state = 16}, + [611] = {.lex_state = 50, .external_lex_state = 2}, + [612] = {.lex_state = 50, .external_lex_state = 2}, + [613] = {.lex_state = 50, .external_lex_state = 2}, + [614] = {.lex_state = 50, .external_lex_state = 2}, + [615] = {.lex_state = 50, .external_lex_state = 2}, + [616] = {.lex_state = 50, .external_lex_state = 2}, [617] = {.lex_state = 50, .external_lex_state = 2}, - [618] = {.lex_state = 16}, + [618] = {.lex_state = 50, .external_lex_state = 2}, [619] = {.lex_state = 50, .external_lex_state = 2}, - [620] = {.lex_state = 16}, - [621] = {.lex_state = 16}, - [622] = {.lex_state = 16}, - [623] = {.lex_state = 16}, - [624] = {.lex_state = 16}, - [625] = {.lex_state = 16}, - [626] = {.lex_state = 16}, - [627] = {.lex_state = 16}, - [628] = {.lex_state = 16}, + [620] = {.lex_state = 50, .external_lex_state = 2}, + [621] = {.lex_state = 50, .external_lex_state = 2}, + [622] = {.lex_state = 50, .external_lex_state = 2}, + [623] = {.lex_state = 50, .external_lex_state = 2}, + [624] = {.lex_state = 16, .external_lex_state = 9}, + [625] = {.lex_state = 50, .external_lex_state = 2}, + [626] = {.lex_state = 50, .external_lex_state = 2}, + [627] = {.lex_state = 50, .external_lex_state = 2}, + [628] = {.lex_state = 50, .external_lex_state = 2}, [629] = {.lex_state = 16}, [630] = {.lex_state = 16}, [631] = {.lex_state = 16}, [632] = {.lex_state = 16}, [633] = {.lex_state = 16}, [634] = {.lex_state = 16}, - [635] = {.lex_state = 50, .external_lex_state = 2}, - [636] = {.lex_state = 50, .external_lex_state = 2}, - [637] = {.lex_state = 50, .external_lex_state = 2}, - [638] = {.lex_state = 50, .external_lex_state = 2}, - [639] = {.lex_state = 50, .external_lex_state = 2}, - [640] = {.lex_state = 50, .external_lex_state = 2}, - [641] = {.lex_state = 50, .external_lex_state = 2}, - [642] = {.lex_state = 50, .external_lex_state = 2}, - [643] = {.lex_state = 16, .external_lex_state = 2}, - [644] = {.lex_state = 50, .external_lex_state = 2}, - [645] = {.lex_state = 50, .external_lex_state = 2}, - [646] = {.lex_state = 50, .external_lex_state = 2}, - [647] = {.lex_state = 16, .external_lex_state = 2}, - [648] = {.lex_state = 50, .external_lex_state = 2}, - [649] = {.lex_state = 50, .external_lex_state = 2}, - [650] = {.lex_state = 50, .external_lex_state = 2}, - [651] = {.lex_state = 50, .external_lex_state = 2}, - [652] = {.lex_state = 50, .external_lex_state = 2}, - [653] = {.lex_state = 50, .external_lex_state = 2}, - [654] = {.lex_state = 50, .external_lex_state = 2}, - [655] = {.lex_state = 50, .external_lex_state = 2}, + [635] = {.lex_state = 16}, + [636] = {.lex_state = 16}, + [637] = {.lex_state = 16}, + [638] = {.lex_state = 16}, + [639] = {.lex_state = 16}, + [640] = {.lex_state = 16}, + [641] = {.lex_state = 16}, + [642] = {.lex_state = 16}, + [643] = {.lex_state = 16}, + [644] = {.lex_state = 16}, + [645] = {.lex_state = 16}, + [646] = {.lex_state = 16}, + [647] = {.lex_state = 16}, + [648] = {.lex_state = 16}, + [649] = {.lex_state = 16}, + [650] = {.lex_state = 16}, + [651] = {.lex_state = 16}, + [652] = {.lex_state = 16}, + [653] = {.lex_state = 16}, + [654] = {.lex_state = 16}, + [655] = {.lex_state = 16}, [656] = {.lex_state = 16}, - [657] = {.lex_state = 15}, - [658] = {.lex_state = 15}, - [659] = {.lex_state = 50, .external_lex_state = 2}, - [660] = {.lex_state = 50, .external_lex_state = 2}, - [661] = {.lex_state = 50, .external_lex_state = 2}, - [662] = {.lex_state = 50, .external_lex_state = 2}, - [663] = {.lex_state = 50, .external_lex_state = 2}, - [664] = {.lex_state = 50, .external_lex_state = 2}, - [665] = {.lex_state = 50, .external_lex_state = 2}, - [666] = {.lex_state = 50, .external_lex_state = 2}, - [667] = {.lex_state = 50, .external_lex_state = 2}, - [668] = {.lex_state = 50, .external_lex_state = 2}, - [669] = {.lex_state = 50, .external_lex_state = 2}, - [670] = {.lex_state = 50, .external_lex_state = 2}, - [671] = {.lex_state = 15}, - [672] = {.lex_state = 50, .external_lex_state = 2}, - [673] = {.lex_state = 50, .external_lex_state = 2}, - [674] = {.lex_state = 15}, - [675] = {.lex_state = 50, .external_lex_state = 2}, - [676] = {.lex_state = 50, .external_lex_state = 2}, - [677] = {.lex_state = 50, .external_lex_state = 2}, - [678] = {.lex_state = 50, .external_lex_state = 2}, - [679] = {.lex_state = 50, .external_lex_state = 2}, - [680] = {.lex_state = 50, .external_lex_state = 2}, - [681] = {.lex_state = 50, .external_lex_state = 2}, - [682] = {.lex_state = 50, .external_lex_state = 2}, - [683] = {.lex_state = 50, .external_lex_state = 2}, - [684] = {.lex_state = 50, .external_lex_state = 2}, - [685] = {.lex_state = 50, .external_lex_state = 2}, - [686] = {.lex_state = 50, .external_lex_state = 2}, - [687] = {.lex_state = 50, .external_lex_state = 2}, - [688] = {.lex_state = 16, .external_lex_state = 4}, - [689] = {.lex_state = 16, .external_lex_state = 6}, + [657] = {.lex_state = 16}, + [658] = {.lex_state = 16}, + [659] = {.lex_state = 16}, + [660] = {.lex_state = 16}, + [661] = {.lex_state = 16}, + [662] = {.lex_state = 16}, + [663] = {.lex_state = 16}, + [664] = {.lex_state = 16}, + [665] = {.lex_state = 16}, + [666] = {.lex_state = 16}, + [667] = {.lex_state = 16}, + [668] = {.lex_state = 16}, + [669] = {.lex_state = 16}, + [670] = {.lex_state = 16}, + [671] = {.lex_state = 16}, + [672] = {.lex_state = 16}, + [673] = {.lex_state = 16}, + [674] = {.lex_state = 16}, + [675] = {.lex_state = 16}, + [676] = {.lex_state = 16}, + [677] = {.lex_state = 16}, + [678] = {.lex_state = 16}, + [679] = {.lex_state = 16}, + [680] = {.lex_state = 16}, + [681] = {.lex_state = 16}, + [682] = {.lex_state = 16}, + [683] = {.lex_state = 16}, + [684] = {.lex_state = 16}, + [685] = {.lex_state = 16}, + [686] = {.lex_state = 16, .external_lex_state = 9}, + [687] = {.lex_state = 15}, + [688] = {.lex_state = 16, .external_lex_state = 8}, + [689] = {.lex_state = 16, .external_lex_state = 9}, [690] = {.lex_state = 16}, - [691] = {.lex_state = 16}, - [692] = {.lex_state = 16, .external_lex_state = 4}, - [693] = {.lex_state = 16, .external_lex_state = 4}, - [694] = {.lex_state = 16, .external_lex_state = 6}, - [695] = {.lex_state = 16, .external_lex_state = 2}, - [696] = {.lex_state = 16, .external_lex_state = 6}, - [697] = {.lex_state = 16, .external_lex_state = 6}, - [698] = {.lex_state = 16}, - [699] = {.lex_state = 16, .external_lex_state = 2}, - [700] = {.lex_state = 16, .external_lex_state = 2}, - [701] = {.lex_state = 16, .external_lex_state = 6}, + [691] = {.lex_state = 16, .external_lex_state = 8}, + [692] = {.lex_state = 15}, + [693] = {.lex_state = 15}, + [694] = {.lex_state = 15}, + [695] = {.lex_state = 16}, + [696] = {.lex_state = 16, .external_lex_state = 10}, + [697] = {.lex_state = 16}, + [698] = {.lex_state = 16, .external_lex_state = 7}, + [699] = {.lex_state = 16, .external_lex_state = 7}, + [700] = {.lex_state = 16, .external_lex_state = 10}, + [701] = {.lex_state = 16, .external_lex_state = 10}, [702] = {.lex_state = 16, .external_lex_state = 6}, - [703] = {.lex_state = 16, .external_lex_state = 6}, - [704] = {.lex_state = 16, .external_lex_state = 6}, + [703] = {.lex_state = 16}, + [704] = {.lex_state = 16, .external_lex_state = 7}, [705] = {.lex_state = 16, .external_lex_state = 6}, [706] = {.lex_state = 16, .external_lex_state = 6}, [707] = {.lex_state = 16, .external_lex_state = 6}, [708] = {.lex_state = 16, .external_lex_state = 6}, - [709] = {.lex_state = 16, .external_lex_state = 6}, - [710] = {.lex_state = 15}, - [711] = {.lex_state = 16}, - [712] = {.lex_state = 15}, - [713] = {.lex_state = 16}, - [714] = {.lex_state = 15}, - [715] = {.lex_state = 15, .external_lex_state = 6}, - [716] = {.lex_state = 16}, - [717] = {.lex_state = 16, .external_lex_state = 4}, + [709] = {.lex_state = 16, .external_lex_state = 8}, + [710] = {.lex_state = 16, .external_lex_state = 6}, + [711] = {.lex_state = 16, .external_lex_state = 6}, + [712] = {.lex_state = 16, .external_lex_state = 6}, + [713] = {.lex_state = 16, .external_lex_state = 6}, + [714] = {.lex_state = 16, .external_lex_state = 6}, + [715] = {.lex_state = 16, .external_lex_state = 9}, + [716] = {.lex_state = 16, .external_lex_state = 8}, + [717] = {.lex_state = 16, .external_lex_state = 6}, [718] = {.lex_state = 16}, - [719] = {.lex_state = 16}, - [720] = {.lex_state = 16}, - [721] = {.lex_state = 16}, - [722] = {.lex_state = 16}, - [723] = {.lex_state = 16}, - [724] = {.lex_state = 16, .external_lex_state = 4}, - [725] = {.lex_state = 15}, - [726] = {.lex_state = 16}, - [727] = {.lex_state = 16}, - [728] = {.lex_state = 16}, - [729] = {.lex_state = 16}, - [730] = {.lex_state = 16}, + [719] = {.lex_state = 16, .external_lex_state = 9}, + [720] = {.lex_state = 16, .external_lex_state = 8}, + [721] = {.lex_state = 16, .external_lex_state = 6}, + [722] = {.lex_state = 16, .external_lex_state = 9}, + [723] = {.lex_state = 16, .external_lex_state = 6}, + [724] = {.lex_state = 16}, + [725] = {.lex_state = 16, .external_lex_state = 10}, + [726] = {.lex_state = 16, .external_lex_state = 10}, + [727] = {.lex_state = 15, .external_lex_state = 6}, + [728] = {.lex_state = 50, .external_lex_state = 2}, + [729] = {.lex_state = 15}, + [730] = {.lex_state = 15, .external_lex_state = 6}, [731] = {.lex_state = 16}, [732] = {.lex_state = 16}, - [733] = {.lex_state = 16}, + [733] = {.lex_state = 50, .external_lex_state = 2}, [734] = {.lex_state = 16}, - [735] = {.lex_state = 15, .external_lex_state = 6}, - [736] = {.lex_state = 16, .external_lex_state = 6}, - [737] = {.lex_state = 16, .external_lex_state = 6}, - [738] = {.lex_state = 16, .external_lex_state = 6}, - [739] = {.lex_state = 16, .external_lex_state = 6}, - [740] = {.lex_state = 16, .external_lex_state = 6}, + [735] = {.lex_state = 16}, + [736] = {.lex_state = 16}, + [737] = {.lex_state = 14, .external_lex_state = 2}, + [738] = {.lex_state = 16}, + [739] = {.lex_state = 16}, + [740] = {.lex_state = 16}, [741] = {.lex_state = 16}, [742] = {.lex_state = 16}, - [743] = {.lex_state = 16}, - [744] = {.lex_state = 16, .external_lex_state = 6}, - [745] = {.lex_state = 16, .external_lex_state = 6}, - [746] = {.lex_state = 16, .external_lex_state = 6}, - [747] = {.lex_state = 16, .external_lex_state = 6}, - [748] = {.lex_state = 16, .external_lex_state = 6}, - [749] = {.lex_state = 16, .external_lex_state = 6}, - [750] = {.lex_state = 16, .external_lex_state = 6}, - [751] = {.lex_state = 16, .external_lex_state = 6}, - [752] = {.lex_state = 16, .external_lex_state = 6}, - [753] = {.lex_state = 16, .external_lex_state = 6}, - [754] = {.lex_state = 16, .external_lex_state = 6}, - [755] = {.lex_state = 16, .external_lex_state = 6}, - [756] = {.lex_state = 16, .external_lex_state = 6}, + [743] = {.lex_state = 16, .external_lex_state = 7}, + [744] = {.lex_state = 16}, + [745] = {.lex_state = 16}, + [746] = {.lex_state = 16}, + [747] = {.lex_state = 15}, + [748] = {.lex_state = 16}, + [749] = {.lex_state = 15}, + [750] = {.lex_state = 14, .external_lex_state = 2}, + [751] = {.lex_state = 16}, + [752] = {.lex_state = 16}, + [753] = {.lex_state = 16}, + [754] = {.lex_state = 15}, + [755] = {.lex_state = 16, .external_lex_state = 7}, + [756] = {.lex_state = 16}, [757] = {.lex_state = 16, .external_lex_state = 6}, [758] = {.lex_state = 16, .external_lex_state = 6}, [759] = {.lex_state = 16, .external_lex_state = 6}, [760] = {.lex_state = 16, .external_lex_state = 6}, [761] = {.lex_state = 16, .external_lex_state = 6}, - [762] = {.lex_state = 16, .external_lex_state = 6}, + [762] = {.lex_state = 15}, [763] = {.lex_state = 16, .external_lex_state = 6}, [764] = {.lex_state = 16, .external_lex_state = 6}, - [765] = {.lex_state = 16, .external_lex_state = 6}, - [766] = {.lex_state = 16, .external_lex_state = 6}, + [765] = {.lex_state = 50, .external_lex_state = 2}, + [766] = {.lex_state = 50, .external_lex_state = 2}, [767] = {.lex_state = 16, .external_lex_state = 6}, - [768] = {.lex_state = 16, .external_lex_state = 6}, - [769] = {.lex_state = 15}, - [770] = {.lex_state = 15}, - [771] = {.lex_state = 16, .external_lex_state = 6}, + [768] = {.lex_state = 50, .external_lex_state = 2}, + [769] = {.lex_state = 16, .external_lex_state = 6}, + [770] = {.lex_state = 16}, + [771] = {.lex_state = 50, .external_lex_state = 2}, [772] = {.lex_state = 16, .external_lex_state = 6}, - [773] = {.lex_state = 16, .external_lex_state = 6}, - [774] = {.lex_state = 16}, - [775] = {.lex_state = 16}, - [776] = {.lex_state = 16}, - [777] = {.lex_state = 16}, - [778] = {.lex_state = 16}, - [779] = {.lex_state = 16}, - [780] = {.lex_state = 16}, - [781] = {.lex_state = 16}, - [782] = {.lex_state = 16}, - [783] = {.lex_state = 16}, - [784] = {.lex_state = 16}, - [785] = {.lex_state = 16}, - [786] = {.lex_state = 16}, - [787] = {.lex_state = 16}, - [788] = {.lex_state = 16}, - [789] = {.lex_state = 16}, - [790] = {.lex_state = 16}, - [791] = {.lex_state = 16}, - [792] = {.lex_state = 16}, - [793] = {.lex_state = 16}, - [794] = {.lex_state = 15}, - [795] = {.lex_state = 15}, + [773] = {.lex_state = 50, .external_lex_state = 2}, + [774] = {.lex_state = 50, .external_lex_state = 2}, + [775] = {.lex_state = 16, .external_lex_state = 6}, + [776] = {.lex_state = 16, .external_lex_state = 6}, + [777] = {.lex_state = 16, .external_lex_state = 6}, + [778] = {.lex_state = 15}, + [779] = {.lex_state = 16, .external_lex_state = 6}, + [780] = {.lex_state = 16, .external_lex_state = 6}, + [781] = {.lex_state = 16, .external_lex_state = 6}, + [782] = {.lex_state = 16, .external_lex_state = 6}, + [783] = {.lex_state = 16, .external_lex_state = 6}, + [784] = {.lex_state = 16, .external_lex_state = 6}, + [785] = {.lex_state = 16, .external_lex_state = 6}, + [786] = {.lex_state = 16, .external_lex_state = 6}, + [787] = {.lex_state = 16, .external_lex_state = 6}, + [788] = {.lex_state = 16, .external_lex_state = 6}, + [789] = {.lex_state = 16, .external_lex_state = 6}, + [790] = {.lex_state = 16, .external_lex_state = 6}, + [791] = {.lex_state = 16, .external_lex_state = 6}, + [792] = {.lex_state = 16, .external_lex_state = 6}, + [793] = {.lex_state = 16, .external_lex_state = 6}, + [794] = {.lex_state = 16, .external_lex_state = 6}, + [795] = {.lex_state = 16, .external_lex_state = 6}, [796] = {.lex_state = 16}, - [797] = {.lex_state = 16}, - [798] = {.lex_state = 16}, - [799] = {.lex_state = 16}, + [797] = {.lex_state = 16, .external_lex_state = 6}, + [798] = {.lex_state = 16, .external_lex_state = 6}, + [799] = {.lex_state = 16, .external_lex_state = 6}, [800] = {.lex_state = 16}, [801] = {.lex_state = 16}, [802] = {.lex_state = 16}, - [803] = {.lex_state = 16}, - [804] = {.lex_state = 16}, + [803] = {.lex_state = 15}, + [804] = {.lex_state = 50, .external_lex_state = 2}, [805] = {.lex_state = 16}, [806] = {.lex_state = 16}, - [807] = {.lex_state = 16}, + [807] = {.lex_state = 50, .external_lex_state = 2}, [808] = {.lex_state = 16}, - [809] = {.lex_state = 50, .external_lex_state = 2}, + [809] = {.lex_state = 16}, [810] = {.lex_state = 50, .external_lex_state = 2}, - [811] = {.lex_state = 14, .external_lex_state = 2}, - [812] = {.lex_state = 14, .external_lex_state = 2}, - [813] = {.lex_state = 50, .external_lex_state = 2}, - [814] = {.lex_state = 50, .external_lex_state = 2}, - [815] = {.lex_state = 50, .external_lex_state = 2}, - [816] = {.lex_state = 50, .external_lex_state = 2}, - [817] = {.lex_state = 50, .external_lex_state = 2}, - [818] = {.lex_state = 50, .external_lex_state = 2}, - [819] = {.lex_state = 50, .external_lex_state = 2}, - [820] = {.lex_state = 50, .external_lex_state = 2}, - [821] = {.lex_state = 50, .external_lex_state = 2}, - [822] = {.lex_state = 50, .external_lex_state = 2}, + [811] = {.lex_state = 16}, + [812] = {.lex_state = 16}, + [813] = {.lex_state = 16}, + [814] = {.lex_state = 16}, + [815] = {.lex_state = 16}, + [816] = {.lex_state = 16}, + [817] = {.lex_state = 16}, + [818] = {.lex_state = 16}, + [819] = {.lex_state = 16}, + [820] = {.lex_state = 16}, + [821] = {.lex_state = 16}, + [822] = {.lex_state = 16}, [823] = {.lex_state = 50, .external_lex_state = 2}, - [824] = {.lex_state = 50, .external_lex_state = 2}, - [825] = {.lex_state = 50, .external_lex_state = 2}, - [826] = {.lex_state = 50, .external_lex_state = 2}, - [827] = {.lex_state = 50, .external_lex_state = 2}, - [828] = {.lex_state = 14}, - [829] = {.lex_state = 14}, - [830] = {.lex_state = 14}, - [831] = {.lex_state = 14}, - [832] = {.lex_state = 14}, - [833] = {.lex_state = 14}, - [834] = {.lex_state = 14}, - [835] = {.lex_state = 0, .external_lex_state = 6}, - [836] = {.lex_state = 14}, - [837] = {.lex_state = 0, .external_lex_state = 6}, + [824] = {.lex_state = 16}, + [825] = {.lex_state = 15}, + [826] = {.lex_state = 16}, + [827] = {.lex_state = 16}, + [828] = {.lex_state = 16}, + [829] = {.lex_state = 16}, + [830] = {.lex_state = 16}, + [831] = {.lex_state = 16}, + [832] = {.lex_state = 16}, + [833] = {.lex_state = 16}, + [834] = {.lex_state = 16}, + [835] = {.lex_state = 16}, + [836] = {.lex_state = 16}, + [837] = {.lex_state = 16}, [838] = {.lex_state = 16}, - [839] = {.lex_state = 16}, - [840] = {.lex_state = 14}, - [841] = {.lex_state = 14}, - [842] = {.lex_state = 14}, - [843] = {.lex_state = 14}, - [844] = {.lex_state = 16}, + [839] = {.lex_state = 50, .external_lex_state = 2}, + [840] = {.lex_state = 50, .external_lex_state = 2}, + [841] = {.lex_state = 50, .external_lex_state = 2}, + [842] = {.lex_state = 50, .external_lex_state = 2}, + [843] = {.lex_state = 50, .external_lex_state = 2}, + [844] = {.lex_state = 14}, [845] = {.lex_state = 14}, [846] = {.lex_state = 14}, [847] = {.lex_state = 14}, [848] = {.lex_state = 14}, [849] = {.lex_state = 14}, - [850] = {.lex_state = 14}, - [851] = {.lex_state = 0}, - [852] = {.lex_state = 50, .external_lex_state = 2}, - [853] = {.lex_state = 50, .external_lex_state = 2}, - [854] = {.lex_state = 50, .external_lex_state = 2}, - [855] = {.lex_state = 14}, - [856] = {.lex_state = 14}, - [857] = {.lex_state = 0}, - [858] = {.lex_state = 14}, - [859] = {.lex_state = 0}, + [850] = {.lex_state = 0, .external_lex_state = 6}, + [851] = {.lex_state = 50, .external_lex_state = 2}, + [852] = {.lex_state = 16}, + [853] = {.lex_state = 14}, + [854] = {.lex_state = 14}, + [855] = {.lex_state = 50, .external_lex_state = 2}, + [856] = {.lex_state = 0, .external_lex_state = 6}, + [857] = {.lex_state = 14}, + [858] = {.lex_state = 50, .external_lex_state = 2}, + [859] = {.lex_state = 16}, [860] = {.lex_state = 14}, - [861] = {.lex_state = 0}, - [862] = {.lex_state = 0}, + [861] = {.lex_state = 14}, + [862] = {.lex_state = 16}, [863] = {.lex_state = 14}, - [864] = {.lex_state = 50, .external_lex_state = 2}, - [865] = {.lex_state = 16}, + [864] = {.lex_state = 14}, + [865] = {.lex_state = 14}, [866] = {.lex_state = 14}, [867] = {.lex_state = 14}, [868] = {.lex_state = 14}, - [869] = {.lex_state = 16}, - [870] = {.lex_state = 14}, - [871] = {.lex_state = 14}, - [872] = {.lex_state = 14}, - [873] = {.lex_state = 14}, + [869] = {.lex_state = 14}, + [870] = {.lex_state = 50, .external_lex_state = 2}, + [871] = {.lex_state = 0}, + [872] = {.lex_state = 0}, + [873] = {.lex_state = 0}, [874] = {.lex_state = 14}, [875] = {.lex_state = 14}, [876] = {.lex_state = 14}, - [877] = {.lex_state = 14}, - [878] = {.lex_state = 14}, + [877] = {.lex_state = 0}, + [878] = {.lex_state = 0}, [879] = {.lex_state = 14}, [880] = {.lex_state = 14}, - [881] = {.lex_state = 14}, + [881] = {.lex_state = 16}, [882] = {.lex_state = 16}, - [883] = {.lex_state = 16}, - [884] = {.lex_state = 0}, + [883] = {.lex_state = 14}, + [884] = {.lex_state = 14}, [885] = {.lex_state = 14}, - [886] = {.lex_state = 14, .external_lex_state = 2}, + [886] = {.lex_state = 14}, [887] = {.lex_state = 14}, [888] = {.lex_state = 14}, - [889] = {.lex_state = 18, .external_lex_state = 7}, - [890] = {.lex_state = 18, .external_lex_state = 7}, - [891] = {.lex_state = 18, .external_lex_state = 7}, - [892] = {.lex_state = 18, .external_lex_state = 7}, - [893] = {.lex_state = 0}, - [894] = {.lex_state = 0}, - [895] = {.lex_state = 0}, + [889] = {.lex_state = 14}, + [890] = {.lex_state = 14}, + [891] = {.lex_state = 14, .external_lex_state = 9}, + [892] = {.lex_state = 14, .external_lex_state = 8}, + [893] = {.lex_state = 14}, + [894] = {.lex_state = 16}, + [895] = {.lex_state = 14}, [896] = {.lex_state = 14}, [897] = {.lex_state = 14}, [898] = {.lex_state = 14}, [899] = {.lex_state = 14}, - [900] = {.lex_state = 0}, - [901] = {.lex_state = 0}, - [902] = {.lex_state = 14}, - [903] = {.lex_state = 18, .external_lex_state = 7}, - [904] = {.lex_state = 18, .external_lex_state = 7}, - [905] = {.lex_state = 0}, - [906] = {.lex_state = 0}, - [907] = {.lex_state = 18, .external_lex_state = 7}, - [908] = {.lex_state = 14}, - [909] = {.lex_state = 18, .external_lex_state = 7}, - [910] = {.lex_state = 0}, + [900] = {.lex_state = 14}, + [901] = {.lex_state = 14}, + [902] = {.lex_state = 16}, + [903] = {.lex_state = 0}, + [904] = {.lex_state = 14}, + [905] = {.lex_state = 14}, + [906] = {.lex_state = 18, .external_lex_state = 11}, + [907] = {.lex_state = 18, .external_lex_state = 11}, + [908] = {.lex_state = 0}, + [909] = {.lex_state = 0}, + [910] = {.lex_state = 14}, [911] = {.lex_state = 0}, - [912] = {.lex_state = 18, .external_lex_state = 7}, - [913] = {.lex_state = 0}, - [914] = {.lex_state = 14}, - [915] = {.lex_state = 14}, - [916] = {.lex_state = 0}, + [912] = {.lex_state = 0}, + [913] = {.lex_state = 18, .external_lex_state = 11}, + [914] = {.lex_state = 18, .external_lex_state = 11}, + [915] = {.lex_state = 18, .external_lex_state = 11}, + [916] = {.lex_state = 18, .external_lex_state = 11}, [917] = {.lex_state = 14}, - [918] = {.lex_state = 14}, - [919] = {.lex_state = 0}, - [920] = {.lex_state = 0}, + [918] = {.lex_state = 18, .external_lex_state = 11}, + [919] = {.lex_state = 18, .external_lex_state = 11}, + [920] = {.lex_state = 18, .external_lex_state = 11}, [921] = {.lex_state = 0}, - [922] = {.lex_state = 0}, - [923] = {.lex_state = 14}, + [922] = {.lex_state = 18, .external_lex_state = 11}, + [923] = {.lex_state = 18, .external_lex_state = 11}, [924] = {.lex_state = 14}, - [925] = {.lex_state = 14}, - [926] = {.lex_state = 14}, - [927] = {.lex_state = 0, .external_lex_state = 6}, + [925] = {.lex_state = 18, .external_lex_state = 11}, + [926] = {.lex_state = 18, .external_lex_state = 11}, + [927] = {.lex_state = 14}, [928] = {.lex_state = 0}, - [929] = {.lex_state = 14}, - [930] = {.lex_state = 14}, - [931] = {.lex_state = 0}, - [932] = {.lex_state = 0}, - [933] = {.lex_state = 14}, + [929] = {.lex_state = 18, .external_lex_state = 11}, + [930] = {.lex_state = 0}, + [931] = {.lex_state = 14}, + [932] = {.lex_state = 18, .external_lex_state = 11}, + [933] = {.lex_state = 0}, [934] = {.lex_state = 14}, - [935] = {.lex_state = 14}, - [936] = {.lex_state = 14}, - [937] = {.lex_state = 14}, - [938] = {.lex_state = 0}, - [939] = {.lex_state = 0, .external_lex_state = 6}, - [940] = {.lex_state = 0, .external_lex_state = 6}, + [935] = {.lex_state = 0}, + [936] = {.lex_state = 0}, + [937] = {.lex_state = 0}, + [938] = {.lex_state = 14}, + [939] = {.lex_state = 14}, + [940] = {.lex_state = 14}, [941] = {.lex_state = 0}, - [942] = {.lex_state = 14}, - [943] = {.lex_state = 14}, + [942] = {.lex_state = 0}, + [943] = {.lex_state = 0}, [944] = {.lex_state = 14}, [945] = {.lex_state = 0}, - [946] = {.lex_state = 0, .external_lex_state = 6}, + [946] = {.lex_state = 14}, [947] = {.lex_state = 14}, [948] = {.lex_state = 14}, [949] = {.lex_state = 14}, [950] = {.lex_state = 14}, - [951] = {.lex_state = 14}, - [952] = {.lex_state = 0, .external_lex_state = 6}, - [953] = {.lex_state = 14}, + [951] = {.lex_state = 0, .external_lex_state = 6}, + [952] = {.lex_state = 14}, + [953] = {.lex_state = 0, .external_lex_state = 6}, [954] = {.lex_state = 14}, - [955] = {.lex_state = 14}, - [956] = {.lex_state = 0, .external_lex_state = 6}, - [957] = {.lex_state = 0}, - [958] = {.lex_state = 0, .external_lex_state = 6}, - [959] = {.lex_state = 0, .external_lex_state = 6}, - [960] = {.lex_state = 0, .external_lex_state = 6}, - [961] = {.lex_state = 14}, + [955] = {.lex_state = 0, .external_lex_state = 6}, + [956] = {.lex_state = 14}, + [957] = {.lex_state = 14}, + [958] = {.lex_state = 14}, + [959] = {.lex_state = 14}, + [960] = {.lex_state = 0}, + [961] = {.lex_state = 0}, [962] = {.lex_state = 14}, - [963] = {.lex_state = 0}, + [963] = {.lex_state = 0, .external_lex_state = 6}, [964] = {.lex_state = 14}, - [965] = {.lex_state = 16}, - [966] = {.lex_state = 0, .external_lex_state = 6}, - [967] = {.lex_state = 0, .external_lex_state = 6}, + [965] = {.lex_state = 14}, + [966] = {.lex_state = 14}, + [967] = {.lex_state = 0}, [968] = {.lex_state = 14}, - [969] = {.lex_state = 0}, - [970] = {.lex_state = 14}, + [969] = {.lex_state = 0, .external_lex_state = 6}, + [970] = {.lex_state = 0, .external_lex_state = 6}, [971] = {.lex_state = 14}, - [972] = {.lex_state = 14}, + [972] = {.lex_state = 0, .external_lex_state = 6}, [973] = {.lex_state = 0}, - [974] = {.lex_state = 0, .external_lex_state = 6}, - [975] = {.lex_state = 0}, - [976] = {.lex_state = 14}, - [977] = {.lex_state = 0, .external_lex_state = 6}, - [978] = {.lex_state = 0, .external_lex_state = 6}, - [979] = {.lex_state = 0}, - [980] = {.lex_state = 0, .external_lex_state = 6}, - [981] = {.lex_state = 0}, + [974] = {.lex_state = 14}, + [975] = {.lex_state = 14}, + [976] = {.lex_state = 0}, + [977] = {.lex_state = 14}, + [978] = {.lex_state = 0}, + [979] = {.lex_state = 0, .external_lex_state = 6}, + [980] = {.lex_state = 14}, + [981] = {.lex_state = 16}, [982] = {.lex_state = 14}, [983] = {.lex_state = 14}, - [984] = {.lex_state = 0}, - [985] = {.lex_state = 0}, - [986] = {.lex_state = 0}, - [987] = {.lex_state = 14}, - [988] = {.lex_state = 18, .external_lex_state = 7}, - [989] = {.lex_state = 0}, - [990] = {.lex_state = 0}, - [991] = {.lex_state = 0}, + [984] = {.lex_state = 0, .external_lex_state = 6}, + [985] = {.lex_state = 0, .external_lex_state = 6}, + [986] = {.lex_state = 14}, + [987] = {.lex_state = 0}, + [988] = {.lex_state = 0}, + [989] = {.lex_state = 0, .external_lex_state = 6}, + [990] = {.lex_state = 14}, + [991] = {.lex_state = 14}, [992] = {.lex_state = 0}, - [993] = {.lex_state = 0, .external_lex_state = 6}, - [994] = {.lex_state = 0, .external_lex_state = 6}, - [995] = {.lex_state = 14}, - [996] = {.lex_state = 0}, - [997] = {.lex_state = 16}, - [998] = {.lex_state = 0, .external_lex_state = 6}, - [999] = {.lex_state = 0, .external_lex_state = 6}, + [993] = {.lex_state = 14}, + [994] = {.lex_state = 14}, + [995] = {.lex_state = 0}, + [996] = {.lex_state = 14}, + [997] = {.lex_state = 0}, + [998] = {.lex_state = 0}, + [999] = {.lex_state = 14}, [1000] = {.lex_state = 14}, [1001] = {.lex_state = 14}, - [1002] = {.lex_state = 0}, - [1003] = {.lex_state = 14}, - [1004] = {.lex_state = 0, .external_lex_state = 6}, - [1005] = {.lex_state = 14}, - [1006] = {.lex_state = 14}, - [1007] = {.lex_state = 14}, + [1002] = {.lex_state = 0, .external_lex_state = 6}, + [1003] = {.lex_state = 0, .external_lex_state = 6}, + [1004] = {.lex_state = 0}, + [1005] = {.lex_state = 0, .external_lex_state = 6}, + [1006] = {.lex_state = 0}, + [1007] = {.lex_state = 0}, [1008] = {.lex_state = 0, .external_lex_state = 6}, - [1009] = {.lex_state = 18, .external_lex_state = 7}, - [1010] = {.lex_state = 0}, - [1011] = {.lex_state = 14}, - [1012] = {.lex_state = 14}, - [1013] = {.lex_state = 18, .external_lex_state = 7}, + [1009] = {.lex_state = 0, .external_lex_state = 6}, + [1010] = {.lex_state = 14}, + [1011] = {.lex_state = 0}, + [1012] = {.lex_state = 0, .external_lex_state = 6}, + [1013] = {.lex_state = 16}, [1014] = {.lex_state = 14}, [1015] = {.lex_state = 14}, - [1016] = {.lex_state = 0, .external_lex_state = 6}, - [1017] = {.lex_state = 16, .external_lex_state = 6}, - [1018] = {.lex_state = 0, .external_lex_state = 6}, - [1019] = {.lex_state = 0}, - [1020] = {.lex_state = 18, .external_lex_state = 7}, + [1016] = {.lex_state = 0}, + [1017] = {.lex_state = 0}, + [1018] = {.lex_state = 0}, + [1019] = {.lex_state = 14}, + [1020] = {.lex_state = 0}, [1021] = {.lex_state = 14}, [1022] = {.lex_state = 14}, - [1023] = {.lex_state = 18, .external_lex_state = 7}, - [1024] = {.lex_state = 0}, - [1025] = {.lex_state = 0, .external_lex_state = 6}, - [1026] = {.lex_state = 0}, + [1023] = {.lex_state = 0}, + [1024] = {.lex_state = 14}, + [1025] = {.lex_state = 0}, + [1026] = {.lex_state = 0, .external_lex_state = 6}, [1027] = {.lex_state = 14}, - [1028] = {.lex_state = 14}, - [1029] = {.lex_state = 16, .external_lex_state = 6}, - [1030] = {.lex_state = 14}, - [1031] = {.lex_state = 14}, - [1032] = {.lex_state = 16}, + [1028] = {.lex_state = 0}, + [1029] = {.lex_state = 14}, + [1030] = {.lex_state = 0, .external_lex_state = 6}, + [1031] = {.lex_state = 0, .external_lex_state = 6}, + [1032] = {.lex_state = 0, .external_lex_state = 6}, [1033] = {.lex_state = 14}, - [1034] = {.lex_state = 16, .external_lex_state = 6}, - [1035] = {.lex_state = 0, .external_lex_state = 6}, - [1036] = {.lex_state = 18, .external_lex_state = 7}, - [1037] = {.lex_state = 14}, - [1038] = {.lex_state = 14}, - [1039] = {.lex_state = 14}, - [1040] = {.lex_state = 16}, - [1041] = {.lex_state = 18, .external_lex_state = 7}, - [1042] = {.lex_state = 18, .external_lex_state = 7}, - [1043] = {.lex_state = 14}, - [1044] = {.lex_state = 14}, - [1045] = {.lex_state = 14}, - [1046] = {.lex_state = 14}, - [1047] = {.lex_state = 14}, - [1048] = {.lex_state = 14}, - [1049] = {.lex_state = 0, .external_lex_state = 6}, - [1050] = {.lex_state = 0, .external_lex_state = 6}, - [1051] = {.lex_state = 0}, - [1052] = {.lex_state = 0}, - [1053] = {.lex_state = 14}, - [1054] = {.lex_state = 0}, - [1055] = {.lex_state = 0, .external_lex_state = 6}, - [1056] = {.lex_state = 0}, - [1057] = {.lex_state = 0}, - [1058] = {.lex_state = 8}, - [1059] = {.lex_state = 0}, - [1060] = {.lex_state = 14}, - [1061] = {.lex_state = 0}, - [1062] = {.lex_state = 16, .external_lex_state = 6}, - [1063] = {.lex_state = 0}, - [1064] = {.lex_state = 0, .external_lex_state = 6}, - [1065] = {.lex_state = 0, .external_lex_state = 6}, - [1066] = {.lex_state = 0, .external_lex_state = 6}, - [1067] = {.lex_state = 14}, + [1034] = {.lex_state = 14}, + [1035] = {.lex_state = 18, .external_lex_state = 11}, + [1036] = {.lex_state = 14}, + [1037] = {.lex_state = 18, .external_lex_state = 11}, + [1038] = {.lex_state = 16, .external_lex_state = 6}, + [1039] = {.lex_state = 16}, + [1040] = {.lex_state = 14}, + [1041] = {.lex_state = 16, .external_lex_state = 6}, + [1042] = {.lex_state = 14}, + [1043] = {.lex_state = 0}, + [1044] = {.lex_state = 18, .external_lex_state = 11}, + [1045] = {.lex_state = 0}, + [1046] = {.lex_state = 18, .external_lex_state = 11}, + [1047] = {.lex_state = 16, .external_lex_state = 6}, + [1048] = {.lex_state = 18, .external_lex_state = 11}, + [1049] = {.lex_state = 14}, + [1050] = {.lex_state = 14}, + [1051] = {.lex_state = 16}, + [1052] = {.lex_state = 14}, + [1053] = {.lex_state = 0, .external_lex_state = 6}, + [1054] = {.lex_state = 18, .external_lex_state = 11}, + [1055] = {.lex_state = 14}, + [1056] = {.lex_state = 18, .external_lex_state = 11}, + [1057] = {.lex_state = 14}, + [1058] = {.lex_state = 14}, + [1059] = {.lex_state = 14}, + [1060] = {.lex_state = 0}, + [1061] = {.lex_state = 14}, + [1062] = {.lex_state = 14}, + [1063] = {.lex_state = 0, .external_lex_state = 6}, + [1064] = {.lex_state = 14}, + [1065] = {.lex_state = 14}, + [1066] = {.lex_state = 14}, + [1067] = {.lex_state = 18, .external_lex_state = 11}, [1068] = {.lex_state = 0, .external_lex_state = 6}, - [1069] = {.lex_state = 8}, - [1070] = {.lex_state = 0}, - [1071] = {.lex_state = 0}, - [1072] = {.lex_state = 0, .external_lex_state = 6}, - [1073] = {.lex_state = 0}, - [1074] = {.lex_state = 0, .external_lex_state = 6}, - [1075] = {.lex_state = 0, .external_lex_state = 6}, - [1076] = {.lex_state = 0}, - [1077] = {.lex_state = 14}, - [1078] = {.lex_state = 14}, - [1079] = {.lex_state = 0, .external_lex_state = 6}, - [1080] = {.lex_state = 8}, - [1081] = {.lex_state = 0}, - [1082] = {.lex_state = 0}, - [1083] = {.lex_state = 0, .external_lex_state = 6}, - [1084] = {.lex_state = 0}, - [1085] = {.lex_state = 14}, - [1086] = {.lex_state = 0}, + [1069] = {.lex_state = 0, .external_lex_state = 6}, + [1070] = {.lex_state = 14}, + [1071] = {.lex_state = 14}, + [1072] = {.lex_state = 8}, + [1073] = {.lex_state = 0, .external_lex_state = 6}, + [1074] = {.lex_state = 0}, + [1075] = {.lex_state = 0}, + [1076] = {.lex_state = 14}, + [1077] = {.lex_state = 0}, + [1078] = {.lex_state = 0, .external_lex_state = 6}, + [1079] = {.lex_state = 0}, + [1080] = {.lex_state = 0, .external_lex_state = 6}, + [1081] = {.lex_state = 0, .external_lex_state = 6}, + [1082] = {.lex_state = 0, .external_lex_state = 6}, + [1083] = {.lex_state = 0}, + [1084] = {.lex_state = 14}, + [1085] = {.lex_state = 0}, + [1086] = {.lex_state = 14}, [1087] = {.lex_state = 0}, [1088] = {.lex_state = 14}, [1089] = {.lex_state = 14}, [1090] = {.lex_state = 0}, - [1091] = {.lex_state = 14}, - [1092] = {.lex_state = 0, .external_lex_state = 6}, - [1093] = {.lex_state = 0}, - [1094] = {.lex_state = 0}, - [1095] = {.lex_state = 0, .external_lex_state = 6}, - [1096] = {.lex_state = 14}, + [1091] = {.lex_state = 0, .external_lex_state = 6}, + [1092] = {.lex_state = 0}, + [1093] = {.lex_state = 0, .external_lex_state = 6}, + [1094] = {.lex_state = 0, .external_lex_state = 6}, + [1095] = {.lex_state = 0}, + [1096] = {.lex_state = 0, .external_lex_state = 6}, [1097] = {.lex_state = 0, .external_lex_state = 6}, - [1098] = {.lex_state = 0, .external_lex_state = 6}, - [1099] = {.lex_state = 0, .external_lex_state = 6}, + [1098] = {.lex_state = 8}, + [1099] = {.lex_state = 0}, [1100] = {.lex_state = 0}, - [1101] = {.lex_state = 14, .external_lex_state = 2}, - [1102] = {.lex_state = 14}, - [1103] = {.lex_state = 0}, - [1104] = {.lex_state = 14}, - [1105] = {.lex_state = 0}, + [1101] = {.lex_state = 0, .external_lex_state = 6}, + [1102] = {.lex_state = 0}, + [1103] = {.lex_state = 14}, + [1104] = {.lex_state = 8}, + [1105] = {.lex_state = 0, .external_lex_state = 6}, [1106] = {.lex_state = 0}, - [1107] = {.lex_state = 0, .external_lex_state = 6}, - [1108] = {.lex_state = 16}, - [1109] = {.lex_state = 0}, - [1110] = {.lex_state = 0}, + [1107] = {.lex_state = 16, .external_lex_state = 6}, + [1108] = {.lex_state = 0}, + [1109] = {.lex_state = 0, .external_lex_state = 6}, + [1110] = {.lex_state = 0, .external_lex_state = 6}, [1111] = {.lex_state = 0, .external_lex_state = 6}, - [1112] = {.lex_state = 0, .external_lex_state = 6}, + [1112] = {.lex_state = 14}, [1113] = {.lex_state = 0}, - [1114] = {.lex_state = 14}, + [1114] = {.lex_state = 16}, [1115] = {.lex_state = 14}, - [1116] = {.lex_state = 0, .external_lex_state = 6}, - [1117] = {.lex_state = 0, .external_lex_state = 6}, + [1116] = {.lex_state = 0}, + [1117] = {.lex_state = 14}, [1118] = {.lex_state = 0}, - [1119] = {.lex_state = 0}, - [1120] = {.lex_state = 0}, - [1121] = {.lex_state = 0, .external_lex_state = 6}, - [1122] = {.lex_state = 0, .external_lex_state = 6}, - [1123] = {.lex_state = 14}, + [1119] = {.lex_state = 14, .external_lex_state = 9}, + [1120] = {.lex_state = 14, .external_lex_state = 8}, + [1121] = {.lex_state = 14}, + [1122] = {.lex_state = 0}, + [1123] = {.lex_state = 0}, [1124] = {.lex_state = 0, .external_lex_state = 6}, - [1125] = {.lex_state = 0}, - [1126] = {.lex_state = 0, .external_lex_state = 6}, - [1127] = {.lex_state = 0, .external_lex_state = 6}, - [1128] = {.lex_state = 0, .external_lex_state = 6}, + [1125] = {.lex_state = 14}, + [1126] = {.lex_state = 14}, + [1127] = {.lex_state = 0}, + [1128] = {.lex_state = 14}, [1129] = {.lex_state = 0}, - [1130] = {.lex_state = 0}, - [1131] = {.lex_state = 0}, - [1132] = {.lex_state = 0}, + [1130] = {.lex_state = 0, .external_lex_state = 6}, + [1131] = {.lex_state = 0, .external_lex_state = 6}, + [1132] = {.lex_state = 0, .external_lex_state = 6}, [1133] = {.lex_state = 0, .external_lex_state = 6}, - [1134] = {.lex_state = 14}, - [1135] = {.lex_state = 14}, - [1136] = {.lex_state = 14}, + [1134] = {.lex_state = 0, .external_lex_state = 6}, + [1135] = {.lex_state = 0, .external_lex_state = 6}, + [1136] = {.lex_state = 0}, [1137] = {.lex_state = 0}, - [1138] = {.lex_state = 16}, + [1138] = {.lex_state = 0}, [1139] = {.lex_state = 14}, - [1140] = {.lex_state = 14}, + [1140] = {.lex_state = 0, .external_lex_state = 6}, [1141] = {.lex_state = 14}, - [1142] = {.lex_state = 14}, - [1143] = {.lex_state = 14}, + [1142] = {.lex_state = 0}, + [1143] = {.lex_state = 0, .external_lex_state = 6}, [1144] = {.lex_state = 0, .external_lex_state = 6}, - [1145] = {.lex_state = 0}, + [1145] = {.lex_state = 0, .external_lex_state = 6}, [1146] = {.lex_state = 0}, [1147] = {.lex_state = 0}, - [1148] = {.lex_state = 14}, - [1149] = {.lex_state = 0, .external_lex_state = 6}, - [1150] = {.lex_state = 0}, - [1151] = {.lex_state = 0}, - [1152] = {.lex_state = 0}, - [1153] = {.lex_state = 0, .external_lex_state = 6}, + [1148] = {.lex_state = 0}, + [1149] = {.lex_state = 0}, + [1150] = {.lex_state = 14}, + [1151] = {.lex_state = 14}, + [1152] = {.lex_state = 14}, + [1153] = {.lex_state = 0}, [1154] = {.lex_state = 14}, - [1155] = {.lex_state = 0}, - [1156] = {.lex_state = 0}, - [1157] = {.lex_state = 0}, - [1158] = {.lex_state = 0, .external_lex_state = 6}, - [1159] = {.lex_state = 0}, + [1155] = {.lex_state = 0, .external_lex_state = 6}, + [1156] = {.lex_state = 0, .external_lex_state = 6}, + [1157] = {.lex_state = 14}, + [1158] = {.lex_state = 14}, + [1159] = {.lex_state = 0, .external_lex_state = 6}, [1160] = {.lex_state = 0}, [1161] = {.lex_state = 14}, - [1162] = {.lex_state = 0}, + [1162] = {.lex_state = 14}, [1163] = {.lex_state = 0}, [1164] = {.lex_state = 0}, [1165] = {.lex_state = 0}, - [1166] = {.lex_state = 0}, - [1167] = {.lex_state = 0}, - [1168] = {.lex_state = 14}, - [1169] = {.lex_state = 0}, + [1166] = {.lex_state = 14}, + [1167] = {.lex_state = 0, .external_lex_state = 6}, + [1168] = {.lex_state = 0, .external_lex_state = 6}, + [1169] = {.lex_state = 14}, [1170] = {.lex_state = 0}, - [1171] = {.lex_state = 14}, + [1171] = {.lex_state = 16}, [1172] = {.lex_state = 0}, [1173] = {.lex_state = 0}, [1174] = {.lex_state = 0}, - [1175] = {.lex_state = 8}, + [1175] = {.lex_state = 0}, [1176] = {.lex_state = 0}, [1177] = {.lex_state = 0}, - [1178] = {.lex_state = 0, .external_lex_state = 6}, - [1179] = {.lex_state = 0}, - [1180] = {.lex_state = 8}, - [1181] = {.lex_state = 14}, - [1182] = {.lex_state = 0, .external_lex_state = 6}, - [1183] = {.lex_state = 0}, - [1184] = {.lex_state = 0}, - [1185] = {.lex_state = 0}, - [1186] = {.lex_state = 0}, + [1178] = {.lex_state = 14}, + [1179] = {.lex_state = 14}, + [1180] = {.lex_state = 0}, + [1181] = {.lex_state = 0, .external_lex_state = 6}, + [1182] = {.lex_state = 0}, + [1183] = {.lex_state = 14}, + [1184] = {.lex_state = 14}, + [1185] = {.lex_state = 0, .external_lex_state = 6}, + [1186] = {.lex_state = 14}, [1187] = {.lex_state = 0}, [1188] = {.lex_state = 0}, - [1189] = {.lex_state = 14}, + [1189] = {.lex_state = 0}, [1190] = {.lex_state = 0}, - [1191] = {.lex_state = 14}, - [1192] = {.lex_state = 14}, - [1193] = {.lex_state = 0, .external_lex_state = 6}, + [1191] = {.lex_state = 8}, + [1192] = {.lex_state = 0}, + [1193] = {.lex_state = 0}, [1194] = {.lex_state = 0}, - [1195] = {.lex_state = 14}, - [1196] = {.lex_state = 0}, + [1195] = {.lex_state = 0, .external_lex_state = 6}, + [1196] = {.lex_state = 0, .external_lex_state = 6}, [1197] = {.lex_state = 0}, [1198] = {.lex_state = 14}, - [1199] = {.lex_state = 0}, - [1200] = {.lex_state = 14}, + [1199] = {.lex_state = 0, .external_lex_state = 6}, + [1200] = {.lex_state = 0}, [1201] = {.lex_state = 0}, [1202] = {.lex_state = 0}, - [1203] = {.lex_state = 14}, - [1204] = {.lex_state = 14}, + [1203] = {.lex_state = 0}, + [1204] = {.lex_state = 0}, [1205] = {.lex_state = 0}, - [1206] = {.lex_state = 14}, + [1206] = {.lex_state = 0}, [1207] = {.lex_state = 0}, [1208] = {.lex_state = 0}, [1209] = {.lex_state = 14}, - [1210] = {.lex_state = 0}, - [1211] = {.lex_state = 0}, - [1212] = {.lex_state = 16}, + [1210] = {.lex_state = 14}, + [1211] = {.lex_state = 0, .external_lex_state = 6}, + [1212] = {.lex_state = 0, .external_lex_state = 6}, [1213] = {.lex_state = 0}, [1214] = {.lex_state = 0}, [1215] = {.lex_state = 0}, [1216] = {.lex_state = 0}, - [1217] = {.lex_state = 8}, + [1217] = {.lex_state = 0, .external_lex_state = 6}, [1218] = {.lex_state = 0}, - [1219] = {.lex_state = 8}, - [1220] = {.lex_state = 0, .external_lex_state = 6}, + [1219] = {.lex_state = 0}, + [1220] = {.lex_state = 0}, [1221] = {.lex_state = 0}, - [1222] = {.lex_state = 0}, + [1222] = {.lex_state = 14}, [1223] = {.lex_state = 0}, - [1224] = {.lex_state = 0}, - [1225] = {.lex_state = 14}, + [1224] = {.lex_state = 16}, + [1225] = {.lex_state = 0}, [1226] = {.lex_state = 0}, [1227] = {.lex_state = 0, .external_lex_state = 6}, [1228] = {.lex_state = 0, .external_lex_state = 6}, [1229] = {.lex_state = 0}, [1230] = {.lex_state = 0}, - [1231] = {.lex_state = 14}, + [1231] = {.lex_state = 0, .external_lex_state = 6}, [1232] = {.lex_state = 0}, [1233] = {.lex_state = 0}, [1234] = {.lex_state = 0}, - [1235] = {.lex_state = 14}, + [1235] = {.lex_state = 0}, [1236] = {.lex_state = 0}, [1237] = {.lex_state = 0}, - [1238] = {.lex_state = 0}, - [1239] = {.lex_state = 0}, + [1238] = {.lex_state = 14}, + [1239] = {.lex_state = 14}, [1240] = {.lex_state = 0}, - [1241] = {.lex_state = 0, .external_lex_state = 6}, + [1241] = {.lex_state = 8}, [1242] = {.lex_state = 0}, - [1243] = {.lex_state = 0, .external_lex_state = 6}, - [1244] = {.lex_state = 0, .external_lex_state = 6}, - [1245] = {.lex_state = 0}, + [1243] = {.lex_state = 0}, + [1244] = {.lex_state = 0}, + [1245] = {.lex_state = 8}, [1246] = {.lex_state = 0}, [1247] = {.lex_state = 0}, [1248] = {.lex_state = 0}, - [1249] = {.lex_state = 14}, - [1250] = {.lex_state = 14}, - [1251] = {.lex_state = 0, .external_lex_state = 6}, - [1252] = {.lex_state = 0}, - [1253] = {.lex_state = 0, .external_lex_state = 6}, - [1254] = {.lex_state = 14}, - [1255] = {.lex_state = 14}, - [1256] = {.lex_state = 14}, + [1249] = {.lex_state = 0}, + [1250] = {.lex_state = 0}, + [1251] = {.lex_state = 0}, + [1252] = {.lex_state = 14}, + [1253] = {.lex_state = 0}, + [1254] = {.lex_state = 8}, + [1255] = {.lex_state = 8}, + [1256] = {.lex_state = 0, .external_lex_state = 6}, [1257] = {.lex_state = 0}, - [1258] = {.lex_state = 0, .external_lex_state = 6}, - [1259] = {.lex_state = 8}, - [1260] = {.lex_state = 14}, + [1258] = {.lex_state = 0}, + [1259] = {.lex_state = 0}, + [1260] = {.lex_state = 0}, [1261] = {.lex_state = 0}, - [1262] = {.lex_state = 14}, + [1262] = {.lex_state = 0, .external_lex_state = 6}, [1263] = {.lex_state = 0}, - [1264] = {.lex_state = 0, .external_lex_state = 6}, + [1264] = {.lex_state = 0}, [1265] = {.lex_state = 0}, - [1266] = {.lex_state = 0}, + [1266] = {.lex_state = 14}, [1267] = {.lex_state = 0}, - [1268] = {.lex_state = 0, .external_lex_state = 6}, + [1268] = {.lex_state = 14}, [1269] = {.lex_state = 0}, - [1270] = {.lex_state = 0}, - [1271] = {.lex_state = 0}, - [1272] = {.lex_state = 0}, + [1270] = {.lex_state = 14}, + [1271] = {.lex_state = 14}, + [1272] = {.lex_state = 14}, [1273] = {.lex_state = 0}, [1274] = {.lex_state = 0}, [1275] = {.lex_state = 0}, - [1276] = {.lex_state = 0}, - [1277] = {.lex_state = 0}, - [1278] = {.lex_state = 0}, + [1276] = {.lex_state = 14}, + [1277] = {.lex_state = 14}, + [1278] = {.lex_state = 14}, [1279] = {.lex_state = 0}, [1280] = {.lex_state = 0}, [1281] = {.lex_state = 0}, - [1282] = {.lex_state = 0}, + [1282] = {.lex_state = 14}, [1283] = {.lex_state = 0}, - [1284] = {.lex_state = 0}, + [1284] = {.lex_state = 14}, [1285] = {.lex_state = 0}, [1286] = {.lex_state = 0}, - [1287] = {.lex_state = 0}, - [1288] = {.lex_state = 17}, - [1289] = {.lex_state = 0}, - [1290] = {.lex_state = 0}, - [1291] = {.lex_state = 0, .external_lex_state = 6}, - [1292] = {.lex_state = 0, .external_lex_state = 6}, - [1293] = {.lex_state = 0, .external_lex_state = 6}, - [1294] = {.lex_state = 0, .external_lex_state = 6}, - [1295] = {.lex_state = 14}, + [1287] = {.lex_state = 14}, + [1288] = {.lex_state = 14}, + [1289] = {.lex_state = 0, .external_lex_state = 6}, + [1290] = {.lex_state = 0, .external_lex_state = 6}, + [1291] = {.lex_state = 0}, + [1292] = {.lex_state = 14}, + [1293] = {.lex_state = 0}, + [1294] = {.lex_state = 0}, + [1295] = {.lex_state = 0}, [1296] = {.lex_state = 0}, - [1297] = {.lex_state = 0, .external_lex_state = 6}, - [1298] = {.lex_state = 0, .external_lex_state = 6}, - [1299] = {.lex_state = 17}, + [1297] = {.lex_state = 0}, + [1298] = {.lex_state = 14}, + [1299] = {.lex_state = 0, .external_lex_state = 6}, [1300] = {.lex_state = 0}, - [1301] = {.lex_state = 0, .external_lex_state = 6}, - [1302] = {.lex_state = 17}, + [1301] = {.lex_state = 0}, + [1302] = {.lex_state = 0}, [1303] = {.lex_state = 0}, - [1304] = {.lex_state = 0, .external_lex_state = 6}, - [1305] = {.lex_state = 0, .external_lex_state = 6}, + [1304] = {.lex_state = 0}, + [1305] = {.lex_state = 0}, [1306] = {.lex_state = 0}, - [1307] = {.lex_state = 17}, + [1307] = {.lex_state = 14}, [1308] = {.lex_state = 0}, [1309] = {.lex_state = 0}, [1310] = {.lex_state = 0}, - [1311] = {.lex_state = 0}, + [1311] = {.lex_state = 0, .external_lex_state = 6}, [1312] = {.lex_state = 0}, [1313] = {.lex_state = 0}, - [1314] = {.lex_state = 0}, + [1314] = {.lex_state = 0, .external_lex_state = 6}, [1315] = {.lex_state = 0, .external_lex_state = 6}, [1316] = {.lex_state = 0, .external_lex_state = 6}, [1317] = {.lex_state = 0}, [1318] = {.lex_state = 0}, [1319] = {.lex_state = 0}, - [1320] = {.lex_state = 0}, + [1320] = {.lex_state = 17}, [1321] = {.lex_state = 0}, [1322] = {.lex_state = 0}, [1323] = {.lex_state = 0}, - [1324] = {.lex_state = 17}, + [1324] = {.lex_state = 0}, [1325] = {.lex_state = 0}, [1326] = {.lex_state = 0}, - [1327] = {.lex_state = 0, .external_lex_state = 6}, - [1328] = {.lex_state = 17}, - [1329] = {.lex_state = 17}, - [1330] = {.lex_state = 17}, - [1331] = {.lex_state = 17}, + [1327] = {.lex_state = 0}, + [1328] = {.lex_state = 0}, + [1329] = {.lex_state = 0, .external_lex_state = 6}, + [1330] = {.lex_state = 0, .external_lex_state = 6}, + [1331] = {.lex_state = 14}, [1332] = {.lex_state = 0}, [1333] = {.lex_state = 0}, [1334] = {.lex_state = 17}, - [1335] = {.lex_state = 0}, + [1335] = {.lex_state = 0, .external_lex_state = 6}, [1336] = {.lex_state = 0}, - [1337] = {.lex_state = 0, .external_lex_state = 6}, + [1337] = {.lex_state = 0}, [1338] = {.lex_state = 0, .external_lex_state = 6}, [1339] = {.lex_state = 0}, [1340] = {.lex_state = 0, .external_lex_state = 6}, - [1341] = {.lex_state = 0, .external_lex_state = 6}, - [1342] = {.lex_state = 0, .external_lex_state = 6}, - [1343] = {.lex_state = 0}, + [1341] = {.lex_state = 16}, + [1342] = {.lex_state = 0}, + [1343] = {.lex_state = 0, .external_lex_state = 6}, [1344] = {.lex_state = 0}, - [1345] = {.lex_state = 0}, - [1346] = {.lex_state = 0}, - [1347] = {.lex_state = 0}, - [1348] = {.lex_state = 0}, - [1349] = {.lex_state = 0}, - [1350] = {.lex_state = 0, .external_lex_state = 6}, + [1345] = {.lex_state = 14}, + [1346] = {.lex_state = 14}, + [1347] = {.lex_state = 17}, + [1348] = {.lex_state = 17}, + [1349] = {.lex_state = 17}, + [1350] = {.lex_state = 17}, [1351] = {.lex_state = 0}, - [1352] = {.lex_state = 16}, - [1353] = {.lex_state = 0}, + [1352] = {.lex_state = 0, .external_lex_state = 6}, + [1353] = {.lex_state = 17}, [1354] = {.lex_state = 14}, - [1355] = {.lex_state = 0}, - [1356] = {.lex_state = 14}, - [1357] = {.lex_state = 14}, - [1358] = {.lex_state = 14}, - [1359] = {.lex_state = 0}, + [1355] = {.lex_state = 17}, + [1356] = {.lex_state = 0, .external_lex_state = 6}, + [1357] = {.lex_state = 0, .external_lex_state = 6}, + [1358] = {.lex_state = 0}, + [1359] = {.lex_state = 17}, [1360] = {.lex_state = 0}, [1361] = {.lex_state = 0}, [1362] = {.lex_state = 0}, - [1363] = {.lex_state = 0}, + [1363] = {.lex_state = 17}, [1364] = {.lex_state = 0}, - [1365] = {.lex_state = 14}, + [1365] = {.lex_state = 0, .external_lex_state = 6}, [1366] = {.lex_state = 0}, [1367] = {.lex_state = 0}, [1368] = {.lex_state = 0}, - [1369] = {.lex_state = 0}, - [1370] = {.lex_state = 14}, + [1369] = {.lex_state = 0, .external_lex_state = 6}, + [1370] = {.lex_state = 0}, [1371] = {.lex_state = 0}, [1372] = {.lex_state = 0}, [1373] = {.lex_state = 0}, [1374] = {.lex_state = 0}, [1375] = {.lex_state = 0}, [1376] = {.lex_state = 0}, - [1377] = {.lex_state = 0}, + [1377] = {.lex_state = 0, .external_lex_state = 6}, [1378] = {.lex_state = 0}, - [1379] = {.lex_state = 0}, - [1380] = {.lex_state = 0}, - [1381] = {.lex_state = 0}, - [1382] = {.lex_state = 14}, + [1379] = {.lex_state = 14}, + [1380] = {.lex_state = 0, .external_lex_state = 6}, + [1381] = {.lex_state = 0, .external_lex_state = 6}, + [1382] = {.lex_state = 0}, [1383] = {.lex_state = 0}, - [1384] = {.lex_state = 14}, + [1384] = {.lex_state = 0}, [1385] = {.lex_state = 14}, [1386] = {.lex_state = 0}, [1387] = {.lex_state = 0}, [1388] = {.lex_state = 0}, [1389] = {.lex_state = 0}, [1390] = {.lex_state = 0}, - [1391] = {.lex_state = 14}, + [1391] = {.lex_state = 0}, [1392] = {.lex_state = 0}, - [1393] = {.lex_state = 14}, + [1393] = {.lex_state = 0}, [1394] = {.lex_state = 0}, - [1395] = {.lex_state = 0}, + [1395] = {.lex_state = 14}, [1396] = {.lex_state = 0}, - [1397] = {.lex_state = 0}, + [1397] = {.lex_state = 14}, [1398] = {.lex_state = 0}, [1399] = {.lex_state = 0}, [1400] = {.lex_state = 0}, [1401] = {.lex_state = 0}, [1402] = {.lex_state = 14}, - [1403] = {.lex_state = 14}, - [1404] = {.lex_state = 14}, + [1403] = {.lex_state = 0}, + [1404] = {.lex_state = 0}, [1405] = {.lex_state = 0}, - [1406] = {.lex_state = 0}, + [1406] = {.lex_state = 14}, [1407] = {.lex_state = 0}, - [1408] = {.lex_state = 14}, + [1408] = {.lex_state = 0}, [1409] = {.lex_state = 0}, - [1410] = {.lex_state = 14}, - [1411] = {.lex_state = 14}, - [1412] = {.lex_state = 14}, - [1413] = {.lex_state = 0}, - [1414] = {.lex_state = 14}, - [1415] = {.lex_state = 0}, - [1416] = {.lex_state = 14}, + [1410] = {.lex_state = 0}, + [1411] = {.lex_state = 0}, + [1412] = {.lex_state = 0}, + [1413] = {.lex_state = 14}, + [1414] = {.lex_state = 0}, + [1415] = {.lex_state = 14}, + [1416] = {.lex_state = 0}, [1417] = {.lex_state = 0}, [1418] = {.lex_state = 0}, - [1419] = {.lex_state = 14}, + [1419] = {.lex_state = 0}, [1420] = {.lex_state = 0}, - [1421] = {.lex_state = 14}, - [1422] = {.lex_state = 14}, + [1421] = {.lex_state = 0}, + [1422] = {.lex_state = 0}, [1423] = {.lex_state = 14}, [1424] = {.lex_state = 0}, - [1425] = {.lex_state = 0}, + [1425] = {.lex_state = 14}, [1426] = {.lex_state = 0}, [1427] = {.lex_state = 0}, - [1428] = {.lex_state = 14}, + [1428] = {.lex_state = 0}, [1429] = {.lex_state = 0}, [1430] = {.lex_state = 14}, [1431] = {.lex_state = 14}, [1432] = {.lex_state = 14}, [1433] = {.lex_state = 14}, - [1434] = {.lex_state = 14}, + [1434] = {.lex_state = 0}, [1435] = {.lex_state = 14}, - [1436] = {.lex_state = 14}, - [1437] = {.lex_state = 0}, - [1438] = {.lex_state = 14}, - [1439] = {.lex_state = 0}, - [1440] = {.lex_state = 0}, - [1441] = {.lex_state = 14}, + [1436] = {.lex_state = 0}, + [1437] = {.lex_state = 14}, + [1438] = {.lex_state = 0}, + [1439] = {.lex_state = 14}, + [1440] = {.lex_state = 14}, + [1441] = {.lex_state = 0}, [1442] = {.lex_state = 0}, [1443] = {.lex_state = 0}, [1444] = {.lex_state = 14}, [1445] = {.lex_state = 0}, - [1446] = {.lex_state = 0}, - [1447] = {.lex_state = 14}, - [1448] = {.lex_state = 0}, + [1446] = {.lex_state = 14}, + [1447] = {.lex_state = 0}, + [1448] = {.lex_state = 14}, [1449] = {.lex_state = 14}, - [1450] = {.lex_state = 0}, - [1451] = {.lex_state = 0}, - [1452] = {.lex_state = 0}, - [1453] = {.lex_state = 0}, + [1450] = {.lex_state = 14}, + [1451] = {.lex_state = 14}, + [1452] = {.lex_state = 14}, + [1453] = {.lex_state = 14}, [1454] = {.lex_state = 0}, [1455] = {.lex_state = 0}, [1456] = {.lex_state = 0}, [1457] = {.lex_state = 0}, [1458] = {.lex_state = 0}, - [1459] = {.lex_state = 0}, + [1459] = {.lex_state = 14}, [1460] = {.lex_state = 0}, - [1461] = {.lex_state = 0}, + [1461] = {.lex_state = 14}, [1462] = {.lex_state = 0}, [1463] = {.lex_state = 0}, - [1464] = {.lex_state = 0}, - [1465] = {.lex_state = 0}, - [1466] = {.lex_state = 0}, - [1467] = {.lex_state = 14}, + [1464] = {.lex_state = 14}, + [1465] = {.lex_state = 14}, + [1466] = {.lex_state = 14}, + [1467] = {.lex_state = 0}, [1468] = {.lex_state = 0}, [1469] = {.lex_state = 0}, [1470] = {.lex_state = 0}, - [1471] = {.lex_state = 0}, - [1472] = {.lex_state = 0}, + [1471] = {.lex_state = 14}, + [1472] = {.lex_state = 14}, [1473] = {.lex_state = 0}, - [1474] = {.lex_state = 0}, + [1474] = {.lex_state = 14}, [1475] = {.lex_state = 0}, - [1476] = {.lex_state = 14}, - [1477] = {.lex_state = 14}, - [1478] = {.lex_state = 0}, + [1476] = {.lex_state = 0}, + [1477] = {.lex_state = 0}, + [1478] = {.lex_state = 14}, + [1479] = {.lex_state = 14}, + [1480] = {.lex_state = 0}, + [1481] = {.lex_state = 0}, + [1482] = {.lex_state = 0}, + [1483] = {.lex_state = 0}, + [1484] = {.lex_state = 0}, + [1485] = {.lex_state = 0}, + [1486] = {.lex_state = 0}, + [1487] = {.lex_state = 0}, + [1488] = {.lex_state = 0}, + [1489] = {.lex_state = 0}, + [1490] = {.lex_state = 14}, + [1491] = {.lex_state = 0}, + [1492] = {.lex_state = 0}, + [1493] = {.lex_state = 0}, + [1494] = {.lex_state = 0}, + [1495] = {.lex_state = 0}, + [1496] = {.lex_state = 14}, + [1497] = {.lex_state = 0}, + [1498] = {.lex_state = 0}, + [1499] = {.lex_state = 0}, + [1500] = {.lex_state = 0}, + [1501] = {.lex_state = 0}, + [1502] = {.lex_state = 0}, + [1503] = {.lex_state = 14}, + [1504] = {.lex_state = 0}, + [1505] = {.lex_state = 0}, + [1506] = {.lex_state = 14}, + [1507] = {.lex_state = 0}, + [1508] = {.lex_state = 14}, + [1509] = {.lex_state = 0}, }; enum { @@ -9167,6 +7654,7 @@ enum { ts_external_token__string_start = 3, ts_external_token__string_content = 4, ts_external_token__string_end = 5, + ts_external_token__template_string_start = 6, }; static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { @@ -9176,9 +7664,10 @@ static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token__string_start] = sym__string_start, [ts_external_token__string_content] = sym__string_content, [ts_external_token__string_end] = sym__string_end, + [ts_external_token__template_string_start] = sym__template_string_start, }; -static const bool ts_external_scanner_states[8][EXTERNAL_TOKEN_COUNT] = { +static const bool ts_external_scanner_states[12][EXTERNAL_TOKEN_COUNT] = { [1] = { [ts_external_token__newline] = true, [ts_external_token__indent] = true, @@ -9186,27 +7675,46 @@ static const bool ts_external_scanner_states[8][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__string_start] = true, [ts_external_token__string_content] = true, [ts_external_token__string_end] = true, + [ts_external_token__template_string_start] = true, }, [2] = { [ts_external_token__string_start] = true, + [ts_external_token__template_string_start] = true, }, [3] = { [ts_external_token__dedent] = true, [ts_external_token__string_start] = true, + [ts_external_token__template_string_start] = true, }, [4] = { [ts_external_token__newline] = true, [ts_external_token__string_start] = true, + [ts_external_token__template_string_start] = true, }, [5] = { [ts_external_token__newline] = true, [ts_external_token__indent] = true, [ts_external_token__string_start] = true, + [ts_external_token__template_string_start] = true, }, [6] = { [ts_external_token__newline] = true, }, [7] = { + [ts_external_token__newline] = true, + [ts_external_token__string_start] = true, + }, + [8] = { + [ts_external_token__string_start] = true, + }, + [9] = { + [ts_external_token__template_string_start] = true, + }, + [10] = { + [ts_external_token__newline] = true, + [ts_external_token__template_string_start] = true, + }, + [11] = { [ts_external_token__string_content] = true, [ts_external_token__string_end] = true, }, @@ -9317,75 +7825,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(1), [sym__string_content] = ACTIONS(1), [sym__string_end] = ACTIONS(1), + [sym__template_string_start] = ACTIONS(1), }, [1] = { - [sym_module] = STATE(1390), - [sym__statement] = STATE(61), - [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1158), - [sym_future_import_statement] = STATE(1158), - [sym_import_from_statement] = STATE(1158), - [sym_print_statement] = STATE(1158), - [sym_assert_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1158), - [sym_delete_statement] = STATE(1158), - [sym_raise_statement] = STATE(1158), - [sym_pass_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [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(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1158), - [sym_nonlocal_statement] = STATE(1158), - [sym_exec_statement] = STATE(1158), - [sym_type_alias_statement] = STATE(1158), - [sym_class_definition] = STATE(61), - [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(957), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(957), + [sym_module] = STATE(1488), + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(1181), + [sym_future_import_statement] = STATE(1181), + [sym_import_from_statement] = STATE(1181), + [sym_print_statement] = STATE(1181), + [sym_assert_statement] = STATE(1181), + [sym_expression_statement] = STATE(1181), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_raise_statement] = STATE(1181), + [sym_pass_statement] = STATE(1181), + [sym_break_statement] = STATE(1181), + [sym_continue_statement] = STATE(1181), + [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(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1181), + [sym_nonlocal_statement] = STATE(1181), + [sym_exec_statement] = STATE(1181), + [sym_type_alias_statement] = STATE(1181), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(960), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(960), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), @@ -9432,75 +7943,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [2] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [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(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(932), - [sym_block] = STATE(548), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [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(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(961), + [sym_block] = STATE(535), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -9514,24 +8028,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(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [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(99), [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(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -9545,77 +8059,80 @@ 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(103), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [3] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [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(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(932), - [sym_block] = STATE(502), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [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(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(961), + [sym_block] = STATE(517), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -9629,24 +8146,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(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [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(99), [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(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -9660,77 +8177,80 @@ 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), + [sym__template_string_start] = ACTIONS(83), }, [4] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [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(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(932), - [sym_block] = STATE(507), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [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(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(961), + [sym_block] = STATE(407), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -9744,24 +8264,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(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [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(99), [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(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -9775,77 +8295,80 @@ 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(103), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [5] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [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(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(932), - [sym_block] = STATE(523), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [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(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(961), + [sym_block] = STATE(392), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -9859,24 +8382,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(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [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(99), [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(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -9890,77 +8413,80 @@ 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), + [sym__template_string_start] = ACTIONS(83), }, [6] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [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(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(932), - [sym_block] = STATE(551), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [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(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(961), + [sym_block] = STATE(403), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -9974,24 +8500,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(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [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(99), [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(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -10005,77 +8531,80 @@ 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), + [sym__template_string_start] = ACTIONS(83), }, [7] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [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(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(932), - [sym_block] = STATE(553), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [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(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(961), + [sym_block] = STATE(485), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -10089,24 +8618,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(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [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(99), [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(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -10120,77 +8649,80 @@ 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(103), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [8] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [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(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(932), - [sym_block] = STATE(555), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [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(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(961), + [sym_block] = STATE(291), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -10204,24 +8736,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(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [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(99), [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(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -10235,77 +8767,80 @@ 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(103), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [9] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [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(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(932), - [sym_block] = STATE(465), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [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(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(961), + [sym_block] = STATE(427), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -10319,24 +8854,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(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [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(99), [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(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -10350,77 +8885,80 @@ 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), + [sym__template_string_start] = ACTIONS(83), }, [10] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [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(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(932), - [sym_block] = STATE(361), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [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(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(961), + [sym_block] = STATE(304), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -10434,24 +8972,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(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [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(99), [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(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -10465,77 +9003,80 @@ 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), + [sym__template_string_start] = ACTIONS(83), }, [11] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [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(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(932), - [sym_block] = STATE(322), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [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(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(961), + [sym_block] = STATE(516), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -10549,24 +9090,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(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [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(99), [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(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -10580,77 +9121,80 @@ 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), + [sym__template_string_start] = ACTIONS(83), }, [12] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [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(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(932), - [sym_block] = STATE(489), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [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(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(961), + [sym_block] = STATE(435), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -10664,24 +9208,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(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [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(99), [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(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -10695,77 +9239,80 @@ 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(103), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [13] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [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(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(932), - [sym_block] = STATE(509), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [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(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(961), + [sym_block] = STATE(497), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -10779,24 +9326,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(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [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(99), [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(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -10810,77 +9357,80 @@ 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(103), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [14] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [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(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(932), - [sym_block] = STATE(515), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [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(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(961), + [sym_block] = STATE(450), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -10894,24 +9444,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(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [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(99), [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(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -10925,77 +9475,80 @@ 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(103), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [15] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [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(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(932), - [sym_block] = STATE(454), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [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(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(961), + [sym_block] = STATE(528), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -11009,24 +9562,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(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [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(99), [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(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -11040,77 +9593,80 @@ 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(103), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [16] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [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(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(932), - [sym_block] = STATE(366), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [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(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(961), + [sym_block] = STATE(398), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -11124,24 +9680,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(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [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(99), [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(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -11155,77 +9711,80 @@ 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(103), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [17] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [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(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(932), - [sym_block] = STATE(528), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [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(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(961), + [sym_block] = STATE(562), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -11239,24 +9798,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(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [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(99), [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(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -11270,77 +9829,80 @@ 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(103), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [18] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [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(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(932), - [sym_block] = STATE(325), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [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(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(961), + [sym_block] = STATE(544), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -11354,24 +9916,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(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [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(99), [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(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -11385,77 +9947,80 @@ 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(103), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [19] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [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(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(932), - [sym_block] = STATE(456), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [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(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(961), + [sym_block] = STATE(444), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -11469,24 +10034,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(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [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(99), [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(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -11500,77 +10065,80 @@ 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(103), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [20] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [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(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(932), - [sym_block] = STATE(534), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [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(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(961), + [sym_block] = STATE(514), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -11584,24 +10152,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(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [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(99), [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(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -11615,77 +10183,80 @@ 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), + [sym__template_string_start] = ACTIONS(83), }, [21] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [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(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(932), - [sym_block] = STATE(270), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [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(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(961), + [sym_block] = STATE(462), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -11699,24 +10270,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(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [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(99), [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(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -11730,77 +10301,80 @@ 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), + [sym__template_string_start] = ACTIONS(83), }, [22] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [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(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(932), - [sym_block] = STATE(371), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [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(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(961), + [sym_block] = STATE(406), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -11814,24 +10388,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(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [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(99), [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(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -11845,77 +10419,80 @@ 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), + [sym__template_string_start] = ACTIONS(83), }, [23] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [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(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(932), - [sym_block] = STATE(539), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [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(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(961), + [sym_block] = STATE(503), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -11929,24 +10506,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(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [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(99), [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(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -11960,77 +10537,80 @@ 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), + [sym__template_string_start] = ACTIONS(83), }, [24] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [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(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(932), - [sym_block] = STATE(326), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [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(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(961), + [sym_block] = STATE(543), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12044,24 +10624,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(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [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(99), [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(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -12075,77 +10655,80 @@ 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), + [sym__template_string_start] = ACTIONS(83), }, [25] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [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(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(932), - [sym_block] = STATE(446), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(61), + [sym__simple_statements] = STATE(61), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [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(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(61), + [sym_decorated_definition] = STATE(61), + [sym_decorator] = STATE(961), + [sym_block] = STATE(998), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(61), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12159,24 +10742,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(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [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(99), [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(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -12190,77 +10773,80 @@ 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(107), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [26] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [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(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(932), - [sym_block] = STATE(547), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [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(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(961), + [sym_block] = STATE(419), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12274,24 +10860,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(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [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(99), [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(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -12305,25 +10891,26 @@ 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), + [sym__template_string_start] = ACTIONS(83), }, [27] = { [sym__statement] = STATE(62), [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), [sym_if_statement] = STATE(62), [sym_for_statement] = STATE(62), [sym_while_statement] = STATE(62), @@ -12331,51 +10918,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(62), [sym_match_statement] = STATE(62), [sym_function_definition] = STATE(62), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), [sym_class_definition] = STATE(62), [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(932), - [sym_block] = STATE(1002), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym_decorator] = STATE(961), + [sym_block] = STATE(519), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12389,24 +10978,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(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [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(99), [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(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -12422,75 +11011,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [28] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [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(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(932), - [sym_block] = STATE(329), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [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(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(961), + [sym_block] = STATE(512), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12504,24 +11096,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(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [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(99), [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(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -12535,77 +11127,80 @@ 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), + [sym__template_string_start] = ACTIONS(83), }, [29] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [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(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(932), - [sym_block] = STATE(313), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [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(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(961), + [sym_block] = STATE(460), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12619,24 +11214,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(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [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(99), [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(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -12650,25 +11245,26 @@ 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), + [sym__template_string_start] = ACTIONS(83), }, [30] = { [sym__statement] = STATE(62), [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), [sym_if_statement] = STATE(62), [sym_for_statement] = STATE(62), [sym_while_statement] = STATE(62), @@ -12676,51 +11272,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(62), [sym_match_statement] = STATE(62), [sym_function_definition] = STATE(62), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), [sym_class_definition] = STATE(62), [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(932), - [sym_block] = STATE(975), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym_decorator] = STATE(961), + [sym_block] = STATE(454), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12734,24 +11332,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(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [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(99), [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(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -12767,75 +11365,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [31] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [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(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(932), - [sym_block] = STATE(255), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [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(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(961), + [sym_block] = STATE(565), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12849,24 +11450,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(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [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(99), [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(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -12880,77 +11481,80 @@ 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(105), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [32] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [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(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(932), - [sym_block] = STATE(391), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [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(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(961), + [sym_block] = STATE(496), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12964,24 +11568,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(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [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(99), [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(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -12997,75 +11601,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [33] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [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(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(932), - [sym_block] = STATE(476), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [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(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(961), + [sym_block] = STATE(395), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13079,24 +11686,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(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [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(99), [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(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -13110,77 +11717,80 @@ 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(105), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [34] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [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(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(932), - [sym_block] = STATE(478), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [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(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(961), + [sym_block] = STATE(402), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13194,24 +11804,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(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [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(99), [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(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -13227,75 +11837,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [35] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [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(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(932), - [sym_block] = STATE(483), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [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(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(961), + [sym_block] = STATE(546), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13309,24 +11922,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(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [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(99), [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(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -13340,77 +11953,80 @@ 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(105), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [36] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [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(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(932), - [sym_block] = STATE(491), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [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(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(961), + [sym_block] = STATE(470), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13424,24 +12040,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(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [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(99), [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(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -13457,75 +12073,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [37] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [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(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(932), - [sym_block] = STATE(493), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [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(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(961), + [sym_block] = STATE(556), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13539,24 +12158,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(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [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(99), [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(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -13570,77 +12189,80 @@ 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(105), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [38] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [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(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(932), - [sym_block] = STATE(495), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [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(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(961), + [sym_block] = STATE(538), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13654,24 +12276,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(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [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(99), [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(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -13687,75 +12309,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [39] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [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(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(932), - [sym_block] = STATE(498), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [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(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(961), + [sym_block] = STATE(494), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13769,24 +12394,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(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [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(99), [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(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -13802,75 +12427,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [40] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [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(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(932), - [sym_block] = STATE(397), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [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(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(961), + [sym_block] = STATE(436), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13884,24 +12512,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(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [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(99), [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(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -13917,75 +12545,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [41] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [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(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(932), - [sym_block] = STATE(335), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [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(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(961), + [sym_block] = STATE(432), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13999,24 +12630,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(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [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(99), [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(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -14030,77 +12661,80 @@ 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(105), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [42] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [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(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(932), - [sym_block] = STATE(504), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [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(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(961), + [sym_block] = STATE(466), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -14114,24 +12748,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(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [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(99), [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(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -14147,75 +12781,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [43] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [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(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(932), - [sym_block] = STATE(458), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [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(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(961), + [sym_block] = STATE(457), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -14229,24 +12866,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(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [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(99), [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(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -14260,77 +12897,80 @@ 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(105), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [44] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [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(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(932), - [sym_block] = STATE(508), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [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(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(961), + [sym_block] = STATE(474), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -14344,24 +12984,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(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [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(99), [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(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -14377,75 +13017,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [45] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [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(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(932), - [sym_block] = STATE(451), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [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(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(961), + [sym_block] = STATE(492), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -14459,24 +13102,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(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [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(99), [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(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -14492,75 +13135,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [46] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [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(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(932), - [sym_block] = STATE(401), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [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(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(961), + [sym_block] = STATE(475), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -14574,24 +13220,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(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [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(99), [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(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -14607,75 +13253,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [47] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [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(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(932), - [sym_block] = STATE(513), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [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(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(961), + [sym_block] = STATE(490), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -14689,24 +13338,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(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [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(99), [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(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -14720,77 +13369,80 @@ 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(105), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [48] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [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(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(932), - [sym_block] = STATE(338), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [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(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(961), + [sym_block] = STATE(488), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -14804,24 +13456,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(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [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(99), [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(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -14837,75 +13489,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [49] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [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(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(932), - [sym_block] = STATE(452), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [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(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(961), + [sym_block] = STATE(400), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -14919,24 +13574,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(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [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(99), [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(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -14950,77 +13605,80 @@ 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(105), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [50] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [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(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(932), - [sym_block] = STATE(517), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [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(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(961), + [sym_block] = STATE(554), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -15034,24 +13692,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(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [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(99), [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(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -15065,77 +13723,80 @@ 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(105), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [51] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [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(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(932), - [sym_block] = STATE(404), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [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(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(961), + [sym_block] = STATE(540), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -15149,24 +13810,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(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [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(99), [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(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -15180,77 +13841,80 @@ 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(105), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [52] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [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(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(932), - [sym_block] = STATE(520), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [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(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(961), + [sym_block] = STATE(506), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -15264,24 +13928,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(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [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(99), [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(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -15295,77 +13959,80 @@ 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(105), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [53] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [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(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(932), - [sym_block] = STATE(339), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [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(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(961), + [sym_block] = STATE(480), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -15379,24 +14046,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(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [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(99), [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(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -15412,75 +14079,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [54] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [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(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(932), - [sym_block] = STATE(455), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [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(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(961), + [sym_block] = STATE(426), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -15494,24 +14164,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(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [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(99), [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(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -15525,77 +14195,80 @@ 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(105), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [55] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [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(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(932), - [sym_block] = STATE(524), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [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(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(961), + [sym_block] = STATE(421), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -15609,24 +14282,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(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [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(99), [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(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -15642,75 +14315,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [56] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [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(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(932), - [sym_block] = STATE(525), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [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(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(961), + [sym_block] = STATE(408), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -15724,24 +14400,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(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [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(99), [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(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -15757,75 +14433,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [57] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [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(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(932), - [sym_block] = STATE(342), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [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(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(961), + [sym_block] = STATE(405), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -15839,24 +14518,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(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [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(99), [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(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -15870,77 +14549,80 @@ 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(105), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [58] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [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(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(932), - [sym_block] = STATE(343), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [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(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(961), + [sym_block] = STATE(534), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -15954,24 +14636,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(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [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(99), [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(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -15985,77 +14667,80 @@ 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(105), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [59] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [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(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(932), - [sym_block] = STATE(347), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(61), + [sym__simple_statements] = STATE(61), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [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(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(61), + [sym_decorated_definition] = STATE(61), + [sym_decorator] = STATE(961), + [sym_block] = STATE(1011), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(61), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16069,24 +14754,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(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [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(99), [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(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -16100,76 +14785,196 @@ 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(107), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [60] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [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(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(932), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [sym__statement] = STATE(60), + [sym__simple_statements] = STATE(60), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [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(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(60), + [sym_decorated_definition] = STATE(60), + [sym_decorator] = STATE(961), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_decorated_definition_repeat1] = STATE(961), + [sym_identifier] = ACTIONS(109), + [anon_sym_import] = ACTIONS(112), + [anon_sym_from] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(118), + [anon_sym_STAR] = ACTIONS(121), + [anon_sym_print] = ACTIONS(124), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_return] = ACTIONS(130), + [anon_sym_del] = ACTIONS(133), + [anon_sym_raise] = ACTIONS(136), + [anon_sym_pass] = ACTIONS(139), + [anon_sym_break] = ACTIONS(142), + [anon_sym_continue] = ACTIONS(145), + [anon_sym_if] = ACTIONS(148), + [anon_sym_async] = ACTIONS(151), + [anon_sym_for] = ACTIONS(154), + [anon_sym_while] = ACTIONS(157), + [anon_sym_try] = ACTIONS(160), + [anon_sym_with] = ACTIONS(163), + [anon_sym_match] = ACTIONS(166), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_LBRACK] = ACTIONS(172), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_STAR_STAR] = ACTIONS(178), + [anon_sym_def] = ACTIONS(181), + [anon_sym_global] = ACTIONS(184), + [anon_sym_nonlocal] = ACTIONS(187), + [anon_sym_exec] = ACTIONS(190), + [anon_sym_type] = ACTIONS(193), + [anon_sym_class] = ACTIONS(196), + [anon_sym_AT] = ACTIONS(199), + [anon_sym_not] = ACTIONS(202), + [anon_sym_TILDE] = ACTIONS(169), + [anon_sym_lambda] = ACTIONS(205), + [anon_sym_yield] = ACTIONS(208), + [sym_ellipsis] = ACTIONS(211), + [sym_integer] = ACTIONS(214), + [sym_float] = ACTIONS(211), + [anon_sym_await] = ACTIONS(217), + [sym_true] = ACTIONS(214), + [sym_false] = ACTIONS(214), + [sym_none] = ACTIONS(214), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(220), + [sym__string_start] = ACTIONS(222), + [sym__template_string_start] = ACTIONS(225), + }, + [61] = { + [sym__statement] = STATE(60), + [sym__simple_statements] = STATE(60), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [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(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(60), + [sym_decorated_definition] = STATE(60), + [sym_decorator] = STATE(961), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16183,24 +14988,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(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [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(99), [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(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -16214,77 +15019,79 @@ 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(228), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, - [61] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1158), - [sym_future_import_statement] = STATE(1158), - [sym_import_from_statement] = STATE(1158), - [sym_print_statement] = STATE(1158), - [sym_assert_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1158), - [sym_delete_statement] = STATE(1158), - [sym_raise_statement] = STATE(1158), - [sym_pass_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [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(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1158), - [sym_nonlocal_statement] = STATE(1158), - [sym_exec_statement] = STATE(1158), - [sym_type_alias_statement] = STATE(1158), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(957), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(957), - [ts_builtin_sym_end] = ACTIONS(109), + [62] = { + [sym__statement] = STATE(60), + [sym__simple_statements] = STATE(60), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [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(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(60), + [sym_decorated_definition] = STATE(60), + [sym_decorator] = STATE(961), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16298,24 +15105,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(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_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [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_def] = ACTIONS(99), [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_class] = ACTIONS(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -16329,75 +15136,79 @@ 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(230), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, - [62] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [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(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(932), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [63] = { + [sym__statement] = STATE(60), + [sym__simple_statements] = STATE(60), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [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(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(60), + [sym_decorated_definition] = STATE(60), + [sym_decorator] = STATE(961), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16411,24 +15222,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(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), [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(99), [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(101), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -16442,139 +15253,26 @@ 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(232), [sym__string_start] = ACTIONS(81), - }, - [63] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1158), - [sym_future_import_statement] = STATE(1158), - [sym_import_from_statement] = STATE(1158), - [sym_print_statement] = STATE(1158), - [sym_assert_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1158), - [sym_delete_statement] = STATE(1158), - [sym_raise_statement] = STATE(1158), - [sym_pass_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [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(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1158), - [sym_nonlocal_statement] = STATE(1158), - [sym_exec_statement] = STATE(1158), - [sym_type_alias_statement] = STATE(1158), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(957), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(957), - [ts_builtin_sym_end] = ACTIONS(113), - [sym_identifier] = ACTIONS(115), - [anon_sym_import] = ACTIONS(118), - [anon_sym_from] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(124), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_print] = ACTIONS(130), - [anon_sym_assert] = ACTIONS(133), - [anon_sym_return] = ACTIONS(136), - [anon_sym_del] = ACTIONS(139), - [anon_sym_raise] = ACTIONS(142), - [anon_sym_pass] = ACTIONS(145), - [anon_sym_break] = ACTIONS(148), - [anon_sym_continue] = ACTIONS(151), - [anon_sym_if] = ACTIONS(154), - [anon_sym_async] = ACTIONS(157), - [anon_sym_for] = ACTIONS(160), - [anon_sym_while] = ACTIONS(163), - [anon_sym_try] = ACTIONS(166), - [anon_sym_with] = ACTIONS(169), - [anon_sym_match] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_LBRACK] = ACTIONS(178), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_STAR_STAR] = ACTIONS(184), - [anon_sym_def] = ACTIONS(187), - [anon_sym_global] = ACTIONS(190), - [anon_sym_nonlocal] = ACTIONS(193), - [anon_sym_exec] = ACTIONS(196), - [anon_sym_type] = ACTIONS(199), - [anon_sym_class] = ACTIONS(202), - [anon_sym_AT] = ACTIONS(205), - [anon_sym_not] = ACTIONS(208), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_lambda] = ACTIONS(211), - [anon_sym_yield] = ACTIONS(214), - [sym_ellipsis] = ACTIONS(217), - [sym_integer] = ACTIONS(220), - [sym_float] = ACTIONS(217), - [anon_sym_await] = ACTIONS(223), - [sym_true] = ACTIONS(220), - [sym_false] = ACTIONS(220), - [sym_none] = ACTIONS(220), - [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(226), + [sym__template_string_start] = ACTIONS(83), }, [64] = { [sym__statement] = STATE(65), [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), + [sym_import_statement] = STATE(1181), + [sym_future_import_statement] = STATE(1181), + [sym_import_from_statement] = STATE(1181), + [sym_print_statement] = STATE(1181), + [sym_assert_statement] = STATE(1181), + [sym_expression_statement] = STATE(1181), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_raise_statement] = STATE(1181), + [sym_pass_statement] = STATE(1181), + [sym_break_statement] = STATE(1181), + [sym_continue_statement] = STATE(1181), [sym_if_statement] = STATE(65), [sym_for_statement] = STATE(65), [sym_while_statement] = STATE(65), @@ -16582,50 +15280,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(65), [sym_match_statement] = STATE(65), [sym_function_definition] = STATE(65), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1181), + [sym_nonlocal_statement] = STATE(1181), + [sym_exec_statement] = STATE(1181), + [sym_type_alias_statement] = STATE(1181), [sym_class_definition] = STATE(65), [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(932), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym_decorator] = STATE(960), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(932), + [aux_sym_decorated_definition_repeat1] = STATE(960), + [ts_builtin_sym_end] = ACTIONS(234), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16639,24 +15340,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), @@ -16670,25 +15371,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(229), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [65] = { [sym__statement] = STATE(65), [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), + [sym_import_statement] = STATE(1181), + [sym_future_import_statement] = STATE(1181), + [sym_import_from_statement] = STATE(1181), + [sym_print_statement] = STATE(1181), + [sym_assert_statement] = STATE(1181), + [sym_expression_statement] = STATE(1181), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_raise_statement] = STATE(1181), + [sym_pass_statement] = STATE(1181), + [sym_break_statement] = STATE(1181), + [sym_continue_statement] = STATE(1181), [sym_if_statement] = STATE(65), [sym_for_statement] = STATE(65), [sym_while_statement] = STATE(65), @@ -16696,343 +15397,354 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(65), [sym_match_statement] = STATE(65), [sym_function_definition] = STATE(65), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1181), + [sym_nonlocal_statement] = STATE(1181), + [sym_exec_statement] = STATE(1181), + [sym_type_alias_statement] = STATE(1181), [sym_class_definition] = STATE(65), [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(932), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym_decorator] = STATE(960), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(932), - [sym_identifier] = ACTIONS(115), - [anon_sym_import] = ACTIONS(118), - [anon_sym_from] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(124), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_print] = ACTIONS(130), - [anon_sym_assert] = ACTIONS(133), - [anon_sym_return] = ACTIONS(136), - [anon_sym_del] = ACTIONS(139), - [anon_sym_raise] = ACTIONS(142), - [anon_sym_pass] = ACTIONS(145), - [anon_sym_break] = ACTIONS(148), - [anon_sym_continue] = ACTIONS(151), - [anon_sym_if] = ACTIONS(231), - [anon_sym_async] = ACTIONS(234), - [anon_sym_for] = ACTIONS(237), - [anon_sym_while] = ACTIONS(240), - [anon_sym_try] = ACTIONS(243), - [anon_sym_with] = ACTIONS(246), - [anon_sym_match] = ACTIONS(249), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_LBRACK] = ACTIONS(178), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_STAR_STAR] = ACTIONS(184), - [anon_sym_def] = ACTIONS(252), - [anon_sym_global] = ACTIONS(190), - [anon_sym_nonlocal] = ACTIONS(193), - [anon_sym_exec] = ACTIONS(196), - [anon_sym_type] = ACTIONS(199), - [anon_sym_class] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(205), - [anon_sym_not] = ACTIONS(208), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_lambda] = ACTIONS(211), - [anon_sym_yield] = ACTIONS(214), - [sym_ellipsis] = ACTIONS(217), - [sym_integer] = ACTIONS(220), - [sym_float] = ACTIONS(217), - [anon_sym_await] = ACTIONS(223), - [sym_true] = ACTIONS(220), - [sym_false] = ACTIONS(220), - [sym_none] = ACTIONS(220), + [aux_sym_decorated_definition_repeat1] = STATE(960), + [ts_builtin_sym_end] = ACTIONS(220), + [sym_identifier] = ACTIONS(109), + [anon_sym_import] = ACTIONS(112), + [anon_sym_from] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(118), + [anon_sym_STAR] = ACTIONS(121), + [anon_sym_print] = ACTIONS(124), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_return] = ACTIONS(130), + [anon_sym_del] = ACTIONS(133), + [anon_sym_raise] = ACTIONS(136), + [anon_sym_pass] = ACTIONS(139), + [anon_sym_break] = ACTIONS(142), + [anon_sym_continue] = ACTIONS(145), + [anon_sym_if] = ACTIONS(236), + [anon_sym_async] = ACTIONS(239), + [anon_sym_for] = ACTIONS(242), + [anon_sym_while] = ACTIONS(245), + [anon_sym_try] = ACTIONS(248), + [anon_sym_with] = ACTIONS(251), + [anon_sym_match] = ACTIONS(254), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_LBRACK] = ACTIONS(172), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_STAR_STAR] = ACTIONS(178), + [anon_sym_def] = ACTIONS(257), + [anon_sym_global] = ACTIONS(184), + [anon_sym_nonlocal] = ACTIONS(187), + [anon_sym_exec] = ACTIONS(190), + [anon_sym_type] = ACTIONS(193), + [anon_sym_class] = ACTIONS(260), + [anon_sym_AT] = ACTIONS(199), + [anon_sym_not] = ACTIONS(202), + [anon_sym_TILDE] = ACTIONS(169), + [anon_sym_lambda] = ACTIONS(205), + [anon_sym_yield] = ACTIONS(208), + [sym_ellipsis] = ACTIONS(211), + [sym_integer] = ACTIONS(214), + [sym_float] = ACTIONS(211), + [anon_sym_await] = ACTIONS(217), + [sym_true] = ACTIONS(214), + [sym_false] = ACTIONS(214), + [sym_none] = ACTIONS(214), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(113), - [sym__string_start] = ACTIONS(226), + [sym__string_start] = ACTIONS(222), + [sym__template_string_start] = ACTIONS(225), }, [66] = { - [sym_named_expression] = STATE(863), - [sym_list_splat] = STATE(1284), - [sym_dictionary_splat] = STATE(1284), - [sym_expression_list] = STATE(1438), - [sym_expression] = STATE(1014), - [sym_primary_expression] = STATE(595), - [sym_not_operator] = STATE(863), - [sym_boolean_operator] = STATE(863), - [sym_binary_operator] = STATE(589), - [sym_unary_operator] = STATE(589), - [sym_comparison_operator] = STATE(863), - [sym_lambda] = STATE(863), - [sym_attribute] = STATE(589), - [sym_subscript] = STATE(589), - [sym_call] = STATE(589), - [sym_list] = STATE(589), - [sym_set] = STATE(589), - [sym_tuple] = STATE(589), - [sym_dictionary] = STATE(589), - [sym_list_comprehension] = STATE(589), - [sym_dictionary_comprehension] = STATE(589), - [sym_set_comprehension] = STATE(589), - [sym_generator_expression] = STATE(589), - [sym_parenthesized_expression] = STATE(589), - [sym_conditional_expression] = STATE(863), - [sym_concatenated_string] = STATE(589), - [sym_string] = STATE(565), - [sym_await] = STATE(589), - [sym_identifier] = ACTIONS(258), - [anon_sym_DOT] = ACTIONS(260), - [anon_sym_LPAREN] = ACTIONS(262), - [anon_sym_COMMA] = ACTIONS(265), - [anon_sym_STAR] = ACTIONS(268), - [anon_sym_print] = ACTIONS(271), - [anon_sym_GT_GT] = ACTIONS(260), - [anon_sym_COLON_EQ] = ACTIONS(273), - [anon_sym_if] = ACTIONS(260), - [anon_sym_COLON] = ACTIONS(275), - [anon_sym_async] = ACTIONS(271), - [anon_sym_in] = ACTIONS(260), - [anon_sym_match] = ACTIONS(271), - [anon_sym_PIPE] = ACTIONS(260), - [anon_sym_DASH] = ACTIONS(277), - [anon_sym_PLUS] = ACTIONS(277), - [anon_sym_LBRACK] = ACTIONS(280), - [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR_STAR] = ACTIONS(285), - [anon_sym_EQ] = ACTIONS(275), - [anon_sym_exec] = ACTIONS(271), - [anon_sym_type] = ACTIONS(271), - [anon_sym_AT] = ACTIONS(260), - [anon_sym_not] = ACTIONS(288), - [anon_sym_and] = ACTIONS(260), - [anon_sym_or] = ACTIONS(260), - [anon_sym_SLASH] = ACTIONS(260), - [anon_sym_PERCENT] = ACTIONS(260), - [anon_sym_SLASH_SLASH] = ACTIONS(260), - [anon_sym_AMP] = ACTIONS(260), - [anon_sym_CARET] = ACTIONS(260), - [anon_sym_LT_LT] = ACTIONS(260), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(260), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(260), - [anon_sym_LT_GT] = ACTIONS(293), - [anon_sym_is] = ACTIONS(260), - [anon_sym_lambda] = ACTIONS(295), - [anon_sym_PLUS_EQ] = ACTIONS(297), - [anon_sym_DASH_EQ] = ACTIONS(297), - [anon_sym_STAR_EQ] = ACTIONS(297), - [anon_sym_SLASH_EQ] = ACTIONS(297), - [anon_sym_AT_EQ] = ACTIONS(297), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(297), - [anon_sym_PERCENT_EQ] = ACTIONS(297), - [anon_sym_STAR_STAR_EQ] = ACTIONS(297), - [anon_sym_GT_GT_EQ] = ACTIONS(297), - [anon_sym_LT_LT_EQ] = ACTIONS(297), - [anon_sym_AMP_EQ] = ACTIONS(297), - [anon_sym_CARET_EQ] = ACTIONS(297), - [anon_sym_PIPE_EQ] = ACTIONS(297), - [sym_ellipsis] = ACTIONS(299), - [sym_integer] = ACTIONS(301), - [sym_float] = ACTIONS(299), - [anon_sym_await] = ACTIONS(303), - [sym_true] = ACTIONS(301), - [sym_false] = ACTIONS(301), - [sym_none] = ACTIONS(301), + [sym_named_expression] = STATE(880), + [sym_list_splat] = STATE(1375), + [sym_dictionary_splat] = STATE(1375), + [sym_expression_list] = STATE(1430), + [sym_expression] = STATE(1066), + [sym_primary_expression] = STATE(652), + [sym_not_operator] = STATE(880), + [sym_boolean_operator] = STATE(880), + [sym_binary_operator] = STATE(649), + [sym_unary_operator] = STATE(649), + [sym_comparison_operator] = STATE(880), + [sym_lambda] = STATE(880), + [sym_attribute] = STATE(649), + [sym_subscript] = STATE(649), + [sym_call] = STATE(649), + [sym_list] = STATE(649), + [sym_set] = STATE(649), + [sym_tuple] = STATE(649), + [sym_dictionary] = STATE(649), + [sym_list_comprehension] = STATE(649), + [sym_dictionary_comprehension] = STATE(649), + [sym_set_comprehension] = STATE(649), + [sym_generator_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_conditional_expression] = STATE(880), + [sym_concatenated_string] = STATE(649), + [sym_string] = STATE(569), + [sym_concatenated_template_string] = STATE(649), + [sym_template_string] = STATE(570), + [sym_await] = STATE(649), + [sym_identifier] = ACTIONS(263), + [anon_sym_DOT] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(267), + [anon_sym_COMMA] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_print] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(265), + [anon_sym_COLON_EQ] = ACTIONS(278), + [anon_sym_if] = ACTIONS(265), + [anon_sym_COLON] = ACTIONS(280), + [anon_sym_async] = ACTIONS(276), + [anon_sym_in] = ACTIONS(265), + [anon_sym_match] = ACTIONS(276), + [anon_sym_PIPE] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_STAR_STAR] = ACTIONS(290), + [anon_sym_EQ] = ACTIONS(280), + [anon_sym_exec] = ACTIONS(276), + [anon_sym_type] = ACTIONS(276), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_not] = ACTIONS(293), + [anon_sym_and] = ACTIONS(265), + [anon_sym_or] = ACTIONS(265), + [anon_sym_SLASH] = ACTIONS(265), + [anon_sym_PERCENT] = ACTIONS(265), + [anon_sym_SLASH_SLASH] = ACTIONS(265), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_CARET] = ACTIONS(265), + [anon_sym_LT_LT] = ACTIONS(265), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_LT] = ACTIONS(265), + [anon_sym_LT_EQ] = ACTIONS(298), + [anon_sym_EQ_EQ] = ACTIONS(298), + [anon_sym_BANG_EQ] = ACTIONS(298), + [anon_sym_GT_EQ] = ACTIONS(298), + [anon_sym_GT] = ACTIONS(265), + [anon_sym_LT_GT] = ACTIONS(298), + [anon_sym_is] = ACTIONS(265), + [anon_sym_lambda] = ACTIONS(300), + [anon_sym_PLUS_EQ] = ACTIONS(302), + [anon_sym_DASH_EQ] = ACTIONS(302), + [anon_sym_STAR_EQ] = ACTIONS(302), + [anon_sym_SLASH_EQ] = ACTIONS(302), + [anon_sym_AT_EQ] = ACTIONS(302), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(302), + [anon_sym_PERCENT_EQ] = ACTIONS(302), + [anon_sym_STAR_STAR_EQ] = ACTIONS(302), + [anon_sym_GT_GT_EQ] = ACTIONS(302), + [anon_sym_LT_LT_EQ] = ACTIONS(302), + [anon_sym_AMP_EQ] = ACTIONS(302), + [anon_sym_CARET_EQ] = ACTIONS(302), + [anon_sym_PIPE_EQ] = ACTIONS(302), + [sym_ellipsis] = ACTIONS(304), + [sym_integer] = ACTIONS(306), + [sym_float] = ACTIONS(304), + [anon_sym_await] = ACTIONS(308), + [sym_true] = ACTIONS(306), + [sym_false] = ACTIONS(306), + [sym_none] = ACTIONS(306), [sym_comment] = ACTIONS(3), - [sym__semicolon] = ACTIONS(293), - [sym__newline] = ACTIONS(293), - [sym__string_start] = ACTIONS(305), + [sym__semicolon] = ACTIONS(298), + [sym__newline] = ACTIONS(298), + [sym__string_start] = ACTIONS(310), + [sym__template_string_start] = ACTIONS(312), }, [67] = { - [sym_named_expression] = STATE(863), - [sym_list_splat] = STATE(1284), - [sym_dictionary_splat] = STATE(1284), - [sym_expression_list] = STATE(1403), - [sym_expression] = STATE(1022), - [sym_primary_expression] = STATE(595), - [sym_not_operator] = STATE(863), - [sym_boolean_operator] = STATE(863), - [sym_binary_operator] = STATE(589), - [sym_unary_operator] = STATE(589), - [sym_comparison_operator] = STATE(863), - [sym_lambda] = STATE(863), - [sym_attribute] = STATE(589), - [sym_subscript] = STATE(589), - [sym_call] = STATE(589), - [sym_list] = STATE(589), - [sym_set] = STATE(589), - [sym_tuple] = STATE(589), - [sym_dictionary] = STATE(589), - [sym_list_comprehension] = STATE(589), - [sym_dictionary_comprehension] = STATE(589), - [sym_set_comprehension] = STATE(589), - [sym_generator_expression] = STATE(589), - [sym_parenthesized_expression] = STATE(589), - [sym_conditional_expression] = STATE(863), - [sym_concatenated_string] = STATE(589), - [sym_string] = STATE(565), - [sym_await] = STATE(589), - [sym_identifier] = ACTIONS(258), - [anon_sym_DOT] = ACTIONS(260), - [anon_sym_LPAREN] = ACTIONS(262), - [anon_sym_COMMA] = ACTIONS(265), - [anon_sym_STAR] = ACTIONS(268), - [anon_sym_print] = ACTIONS(271), - [anon_sym_GT_GT] = ACTIONS(260), - [anon_sym_COLON_EQ] = ACTIONS(273), - [anon_sym_if] = ACTIONS(260), - [anon_sym_COLON] = ACTIONS(275), - [anon_sym_async] = ACTIONS(271), - [anon_sym_in] = ACTIONS(260), - [anon_sym_match] = ACTIONS(271), - [anon_sym_PIPE] = ACTIONS(260), - [anon_sym_DASH] = ACTIONS(277), - [anon_sym_PLUS] = ACTIONS(277), - [anon_sym_LBRACK] = ACTIONS(280), - [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR_STAR] = ACTIONS(285), - [anon_sym_EQ] = ACTIONS(275), - [anon_sym_exec] = ACTIONS(271), - [anon_sym_type] = ACTIONS(271), - [anon_sym_AT] = ACTIONS(260), - [anon_sym_not] = ACTIONS(288), - [anon_sym_and] = ACTIONS(260), - [anon_sym_or] = ACTIONS(260), - [anon_sym_SLASH] = ACTIONS(260), - [anon_sym_PERCENT] = ACTIONS(260), - [anon_sym_SLASH_SLASH] = ACTIONS(260), - [anon_sym_AMP] = ACTIONS(260), - [anon_sym_CARET] = ACTIONS(260), - [anon_sym_LT_LT] = ACTIONS(260), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(260), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(260), - [anon_sym_LT_GT] = ACTIONS(293), - [anon_sym_is] = ACTIONS(260), - [anon_sym_lambda] = ACTIONS(295), - [anon_sym_PLUS_EQ] = ACTIONS(297), - [anon_sym_DASH_EQ] = ACTIONS(297), - [anon_sym_STAR_EQ] = ACTIONS(297), - [anon_sym_SLASH_EQ] = ACTIONS(297), - [anon_sym_AT_EQ] = ACTIONS(297), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(297), - [anon_sym_PERCENT_EQ] = ACTIONS(297), - [anon_sym_STAR_STAR_EQ] = ACTIONS(297), - [anon_sym_GT_GT_EQ] = ACTIONS(297), - [anon_sym_LT_LT_EQ] = ACTIONS(297), - [anon_sym_AMP_EQ] = ACTIONS(297), - [anon_sym_CARET_EQ] = ACTIONS(297), - [anon_sym_PIPE_EQ] = ACTIONS(297), - [sym_ellipsis] = ACTIONS(299), - [sym_integer] = ACTIONS(301), - [sym_float] = ACTIONS(299), - [anon_sym_await] = ACTIONS(303), - [sym_true] = ACTIONS(301), - [sym_false] = ACTIONS(301), - [sym_none] = ACTIONS(301), + [sym_named_expression] = STATE(880), + [sym_list_splat] = STATE(1375), + [sym_dictionary_splat] = STATE(1375), + [sym_expression_list] = STATE(1433), + [sym_expression] = STATE(1052), + [sym_primary_expression] = STATE(652), + [sym_not_operator] = STATE(880), + [sym_boolean_operator] = STATE(880), + [sym_binary_operator] = STATE(649), + [sym_unary_operator] = STATE(649), + [sym_comparison_operator] = STATE(880), + [sym_lambda] = STATE(880), + [sym_attribute] = STATE(649), + [sym_subscript] = STATE(649), + [sym_call] = STATE(649), + [sym_list] = STATE(649), + [sym_set] = STATE(649), + [sym_tuple] = STATE(649), + [sym_dictionary] = STATE(649), + [sym_list_comprehension] = STATE(649), + [sym_dictionary_comprehension] = STATE(649), + [sym_set_comprehension] = STATE(649), + [sym_generator_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_conditional_expression] = STATE(880), + [sym_concatenated_string] = STATE(649), + [sym_string] = STATE(569), + [sym_concatenated_template_string] = STATE(649), + [sym_template_string] = STATE(570), + [sym_await] = STATE(649), + [sym_identifier] = ACTIONS(263), + [anon_sym_DOT] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(267), + [anon_sym_COMMA] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_print] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(265), + [anon_sym_COLON_EQ] = ACTIONS(278), + [anon_sym_if] = ACTIONS(265), + [anon_sym_COLON] = ACTIONS(280), + [anon_sym_async] = ACTIONS(276), + [anon_sym_in] = ACTIONS(265), + [anon_sym_match] = ACTIONS(276), + [anon_sym_PIPE] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_STAR_STAR] = ACTIONS(290), + [anon_sym_EQ] = ACTIONS(280), + [anon_sym_exec] = ACTIONS(276), + [anon_sym_type] = ACTIONS(276), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_not] = ACTIONS(293), + [anon_sym_and] = ACTIONS(265), + [anon_sym_or] = ACTIONS(265), + [anon_sym_SLASH] = ACTIONS(265), + [anon_sym_PERCENT] = ACTIONS(265), + [anon_sym_SLASH_SLASH] = ACTIONS(265), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_CARET] = ACTIONS(265), + [anon_sym_LT_LT] = ACTIONS(265), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_LT] = ACTIONS(265), + [anon_sym_LT_EQ] = ACTIONS(298), + [anon_sym_EQ_EQ] = ACTIONS(298), + [anon_sym_BANG_EQ] = ACTIONS(298), + [anon_sym_GT_EQ] = ACTIONS(298), + [anon_sym_GT] = ACTIONS(265), + [anon_sym_LT_GT] = ACTIONS(298), + [anon_sym_is] = ACTIONS(265), + [anon_sym_lambda] = ACTIONS(300), + [anon_sym_PLUS_EQ] = ACTIONS(302), + [anon_sym_DASH_EQ] = ACTIONS(302), + [anon_sym_STAR_EQ] = ACTIONS(302), + [anon_sym_SLASH_EQ] = ACTIONS(302), + [anon_sym_AT_EQ] = ACTIONS(302), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(302), + [anon_sym_PERCENT_EQ] = ACTIONS(302), + [anon_sym_STAR_STAR_EQ] = ACTIONS(302), + [anon_sym_GT_GT_EQ] = ACTIONS(302), + [anon_sym_LT_LT_EQ] = ACTIONS(302), + [anon_sym_AMP_EQ] = ACTIONS(302), + [anon_sym_CARET_EQ] = ACTIONS(302), + [anon_sym_PIPE_EQ] = ACTIONS(302), + [sym_ellipsis] = ACTIONS(304), + [sym_integer] = ACTIONS(306), + [sym_float] = ACTIONS(304), + [anon_sym_await] = ACTIONS(308), + [sym_true] = ACTIONS(306), + [sym_false] = ACTIONS(306), + [sym_none] = ACTIONS(306), [sym_comment] = ACTIONS(3), - [sym__semicolon] = ACTIONS(293), - [sym__newline] = ACTIONS(293), - [sym__string_start] = ACTIONS(305), + [sym__semicolon] = ACTIONS(298), + [sym__newline] = ACTIONS(298), + [sym__string_start] = ACTIONS(310), + [sym__template_string_start] = ACTIONS(312), }, [68] = { - [sym__simple_statements] = STATE(973), - [sym_import_statement] = STATE(1228), - [sym_future_import_statement] = STATE(1228), - [sym_import_from_statement] = STATE(1228), - [sym_print_statement] = STATE(1228), - [sym_assert_statement] = STATE(1228), - [sym_expression_statement] = STATE(1228), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1228), - [sym_delete_statement] = STATE(1228), - [sym_raise_statement] = STATE(1228), - [sym_pass_statement] = STATE(1228), - [sym_break_statement] = STATE(1228), - [sym_continue_statement] = STATE(1228), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1228), - [sym_nonlocal_statement] = STATE(1228), - [sym_exec_statement] = STATE(1228), - [sym_type_alias_statement] = STATE(1228), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(536), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17046,8 +15758,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -17069,64 +15781,67 @@ 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(309), - [sym__indent] = ACTIONS(311), + [sym__newline] = ACTIONS(316), + [sym__indent] = ACTIONS(318), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [69] = { - [sym__simple_statements] = STATE(526), - [sym_import_statement] = STATE(1158), - [sym_future_import_statement] = STATE(1158), - [sym_import_from_statement] = STATE(1158), - [sym_print_statement] = STATE(1158), - [sym_assert_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1158), - [sym_delete_statement] = STATE(1158), - [sym_raise_statement] = STATE(1158), - [sym_pass_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1158), - [sym_nonlocal_statement] = STATE(1158), - [sym_exec_statement] = STATE(1158), - [sym_type_alias_statement] = STATE(1158), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(439), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17140,8 +15855,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -17163,64 +15878,67 @@ 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(313), - [sym__indent] = ACTIONS(315), + [sym__newline] = ACTIONS(320), + [sym__indent] = ACTIONS(322), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [70] = { - [sym__simple_statements] = STATE(324), - [sym_import_statement] = STATE(1158), - [sym_future_import_statement] = STATE(1158), - [sym_import_from_statement] = STATE(1158), - [sym_print_statement] = STATE(1158), - [sym_assert_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1158), - [sym_delete_statement] = STATE(1158), - [sym_raise_statement] = STATE(1158), - [sym_pass_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1158), - [sym_nonlocal_statement] = STATE(1158), - [sym_exec_statement] = STATE(1158), - [sym_type_alias_statement] = STATE(1158), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(533), + [sym_import_statement] = STATE(1181), + [sym_future_import_statement] = STATE(1181), + [sym_import_from_statement] = STATE(1181), + [sym_print_statement] = STATE(1181), + [sym_assert_statement] = STATE(1181), + [sym_expression_statement] = STATE(1181), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_raise_statement] = STATE(1181), + [sym_pass_statement] = STATE(1181), + [sym_break_statement] = STATE(1181), + [sym_continue_statement] = STATE(1181), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1181), + [sym_nonlocal_statement] = STATE(1181), + [sym_exec_statement] = STATE(1181), + [sym_type_alias_statement] = STATE(1181), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17234,8 +15952,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -17257,64 +15975,67 @@ 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(317), - [sym__indent] = ACTIONS(319), + [sym__newline] = ACTIONS(324), + [sym__indent] = ACTIONS(326), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [71] = { - [sym__simple_statements] = STATE(251), - [sym_import_statement] = STATE(1158), - [sym_future_import_statement] = STATE(1158), - [sym_import_from_statement] = STATE(1158), - [sym_print_statement] = STATE(1158), - [sym_assert_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1158), - [sym_delete_statement] = STATE(1158), - [sym_raise_statement] = STATE(1158), - [sym_pass_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1158), - [sym_nonlocal_statement] = STATE(1158), - [sym_exec_statement] = STATE(1158), - [sym_type_alias_statement] = STATE(1158), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(424), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17328,8 +16049,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -17351,158 +16072,67 @@ 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(321), - [sym__indent] = ACTIONS(323), + [sym__newline] = ACTIONS(328), + [sym__indent] = ACTIONS(330), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [72] = { - [sym_chevron] = STATE(1149), - [sym_named_expression] = STATE(940), - [sym_expression] = STATE(999), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_attribute] = STATE(773), - [sym_subscript] = STATE(773), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), - [sym_identifier] = ACTIONS(325), - [anon_sym_DOT] = ACTIONS(260), - [anon_sym_LPAREN] = ACTIONS(293), - [anon_sym_COMMA] = ACTIONS(265), - [anon_sym_STAR] = ACTIONS(260), - [anon_sym_print] = ACTIONS(327), - [anon_sym_GT_GT] = ACTIONS(329), - [anon_sym_COLON_EQ] = ACTIONS(273), - [anon_sym_if] = ACTIONS(260), - [anon_sym_COLON] = ACTIONS(275), - [anon_sym_async] = ACTIONS(327), - [anon_sym_in] = ACTIONS(260), - [anon_sym_match] = ACTIONS(327), - [anon_sym_PIPE] = ACTIONS(260), - [anon_sym_DASH] = ACTIONS(260), - [anon_sym_PLUS] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(260), - [anon_sym_EQ] = ACTIONS(275), - [anon_sym_exec] = ACTIONS(327), - [anon_sym_type] = ACTIONS(327), - [anon_sym_AT] = ACTIONS(260), - [anon_sym_not] = ACTIONS(260), - [anon_sym_and] = ACTIONS(260), - [anon_sym_or] = ACTIONS(260), - [anon_sym_SLASH] = ACTIONS(260), - [anon_sym_PERCENT] = ACTIONS(260), - [anon_sym_SLASH_SLASH] = ACTIONS(260), - [anon_sym_AMP] = ACTIONS(260), - [anon_sym_CARET] = ACTIONS(260), - [anon_sym_LT_LT] = ACTIONS(260), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(260), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(260), - [anon_sym_LT_GT] = ACTIONS(293), - [anon_sym_is] = ACTIONS(260), - [anon_sym_lambda] = ACTIONS(71), - [anon_sym_PLUS_EQ] = ACTIONS(297), - [anon_sym_DASH_EQ] = ACTIONS(297), - [anon_sym_STAR_EQ] = ACTIONS(297), - [anon_sym_SLASH_EQ] = ACTIONS(297), - [anon_sym_AT_EQ] = ACTIONS(297), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(297), - [anon_sym_PERCENT_EQ] = ACTIONS(297), - [anon_sym_STAR_STAR_EQ] = ACTIONS(297), - [anon_sym_GT_GT_EQ] = ACTIONS(297), - [anon_sym_LT_LT_EQ] = ACTIONS(297), - [anon_sym_AMP_EQ] = ACTIONS(297), - [anon_sym_CARET_EQ] = ACTIONS(297), - [anon_sym_PIPE_EQ] = ACTIONS(297), - [sym_ellipsis] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(331), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [sym__semicolon] = ACTIONS(293), - [sym__newline] = ACTIONS(293), - [sym__string_start] = ACTIONS(81), - }, - [73] = { - [sym__simple_statements] = STATE(457), - [sym_import_statement] = STATE(1158), - [sym_future_import_statement] = STATE(1158), - [sym_import_from_statement] = STATE(1158), - [sym_print_statement] = STATE(1158), - [sym_assert_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1158), - [sym_delete_statement] = STATE(1158), - [sym_raise_statement] = STATE(1158), - [sym_pass_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1158), - [sym_nonlocal_statement] = STATE(1158), - [sym_exec_statement] = STATE(1158), - [sym_type_alias_statement] = STATE(1158), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(418), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17516,8 +16146,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -17539,64 +16169,67 @@ 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(333), - [sym__indent] = ACTIONS(335), + [sym__newline] = ACTIONS(332), + [sym__indent] = ACTIONS(334), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, - [74] = { - [sym__simple_statements] = STATE(349), - [sym_import_statement] = STATE(1158), - [sym_future_import_statement] = STATE(1158), - [sym_import_from_statement] = STATE(1158), - [sym_print_statement] = STATE(1158), - [sym_assert_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1158), - [sym_delete_statement] = STATE(1158), - [sym_raise_statement] = STATE(1158), - [sym_pass_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1158), - [sym_nonlocal_statement] = STATE(1158), - [sym_exec_statement] = STATE(1158), - [sym_type_alias_statement] = STATE(1158), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [73] = { + [sym__simple_statements] = STATE(413), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17610,8 +16243,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -17633,64 +16266,67 @@ 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(337), - [sym__indent] = ACTIONS(339), + [sym__newline] = ACTIONS(336), + [sym__indent] = ACTIONS(338), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, - [75] = { - [sym__simple_statements] = STATE(535), - [sym_import_statement] = STATE(1158), - [sym_future_import_statement] = STATE(1158), - [sym_import_from_statement] = STATE(1158), - [sym_print_statement] = STATE(1158), - [sym_assert_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1158), - [sym_delete_statement] = STATE(1158), - [sym_raise_statement] = STATE(1158), - [sym_pass_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1158), - [sym_nonlocal_statement] = STATE(1158), - [sym_exec_statement] = STATE(1158), - [sym_type_alias_statement] = STATE(1158), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [74] = { + [sym__simple_statements] = STATE(463), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17704,8 +16340,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -17727,64 +16363,67 @@ 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(341), - [sym__indent] = ACTIONS(343), + [sym__newline] = ACTIONS(340), + [sym__indent] = ACTIONS(342), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, - [76] = { - [sym__simple_statements] = STATE(536), - [sym_import_statement] = STATE(1158), - [sym_future_import_statement] = STATE(1158), - [sym_import_from_statement] = STATE(1158), - [sym_print_statement] = STATE(1158), - [sym_assert_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1158), - [sym_delete_statement] = STATE(1158), - [sym_raise_statement] = STATE(1158), - [sym_pass_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1158), - [sym_nonlocal_statement] = STATE(1158), - [sym_exec_statement] = STATE(1158), - [sym_type_alias_statement] = STATE(1158), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [75] = { + [sym__simple_statements] = STATE(437), + [sym_import_statement] = STATE(1181), + [sym_future_import_statement] = STATE(1181), + [sym_import_from_statement] = STATE(1181), + [sym_print_statement] = STATE(1181), + [sym_assert_statement] = STATE(1181), + [sym_expression_statement] = STATE(1181), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_raise_statement] = STATE(1181), + [sym_pass_statement] = STATE(1181), + [sym_break_statement] = STATE(1181), + [sym_continue_statement] = STATE(1181), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1181), + [sym_nonlocal_statement] = STATE(1181), + [sym_exec_statement] = STATE(1181), + [sym_type_alias_statement] = STATE(1181), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17798,8 +16437,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -17821,64 +16460,67 @@ 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(345), - [sym__indent] = ACTIONS(347), + [sym__newline] = ACTIONS(344), + [sym__indent] = ACTIONS(346), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, - [77] = { - [sym__simple_statements] = STATE(540), - [sym_import_statement] = STATE(1158), - [sym_future_import_statement] = STATE(1158), - [sym_import_from_statement] = STATE(1158), - [sym_print_statement] = STATE(1158), - [sym_assert_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1158), - [sym_delete_statement] = STATE(1158), - [sym_raise_statement] = STATE(1158), - [sym_pass_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1158), - [sym_nonlocal_statement] = STATE(1158), - [sym_exec_statement] = STATE(1158), - [sym_type_alias_statement] = STATE(1158), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [76] = { + [sym__simple_statements] = STATE(461), + [sym_import_statement] = STATE(1181), + [sym_future_import_statement] = STATE(1181), + [sym_import_from_statement] = STATE(1181), + [sym_print_statement] = STATE(1181), + [sym_assert_statement] = STATE(1181), + [sym_expression_statement] = STATE(1181), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_raise_statement] = STATE(1181), + [sym_pass_statement] = STATE(1181), + [sym_break_statement] = STATE(1181), + [sym_continue_statement] = STATE(1181), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1181), + [sym_nonlocal_statement] = STATE(1181), + [sym_exec_statement] = STATE(1181), + [sym_type_alias_statement] = STATE(1181), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17892,8 +16534,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -17915,64 +16557,67 @@ 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(349), - [sym__indent] = ACTIONS(351), + [sym__newline] = ACTIONS(348), + [sym__indent] = ACTIONS(350), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, - [78] = { - [sym__simple_statements] = STATE(550), - [sym_import_statement] = STATE(1158), - [sym_future_import_statement] = STATE(1158), - [sym_import_from_statement] = STATE(1158), - [sym_print_statement] = STATE(1158), - [sym_assert_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1158), - [sym_delete_statement] = STATE(1158), - [sym_raise_statement] = STATE(1158), - [sym_pass_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1158), - [sym_nonlocal_statement] = STATE(1158), - [sym_exec_statement] = STATE(1158), - [sym_type_alias_statement] = STATE(1158), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [77] = { + [sym__simple_statements] = STATE(428), + [sym_import_statement] = STATE(1181), + [sym_future_import_statement] = STATE(1181), + [sym_import_from_statement] = STATE(1181), + [sym_print_statement] = STATE(1181), + [sym_assert_statement] = STATE(1181), + [sym_expression_statement] = STATE(1181), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_raise_statement] = STATE(1181), + [sym_pass_statement] = STATE(1181), + [sym_break_statement] = STATE(1181), + [sym_continue_statement] = STATE(1181), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1181), + [sym_nonlocal_statement] = STATE(1181), + [sym_exec_statement] = STATE(1181), + [sym_type_alias_statement] = STATE(1181), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17986,8 +16631,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -18009,64 +16654,67 @@ 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(353), - [sym__indent] = ACTIONS(355), + [sym__newline] = ACTIONS(352), + [sym__indent] = ACTIONS(354), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, - [79] = { - [sym__simple_statements] = STATE(327), - [sym_import_statement] = STATE(1158), - [sym_future_import_statement] = STATE(1158), - [sym_import_from_statement] = STATE(1158), - [sym_print_statement] = STATE(1158), - [sym_assert_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1158), - [sym_delete_statement] = STATE(1158), - [sym_raise_statement] = STATE(1158), - [sym_pass_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1158), - [sym_nonlocal_statement] = STATE(1158), - [sym_exec_statement] = STATE(1158), - [sym_type_alias_statement] = STATE(1158), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [78] = { + [sym__simple_statements] = STATE(455), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18080,8 +16728,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -18103,64 +16751,67 @@ 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(357), - [sym__indent] = ACTIONS(359), + [sym__newline] = ACTIONS(356), + [sym__indent] = ACTIONS(358), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, - [80] = { - [sym__simple_statements] = STATE(328), - [sym_import_statement] = STATE(1158), - [sym_future_import_statement] = STATE(1158), - [sym_import_from_statement] = STATE(1158), - [sym_print_statement] = STATE(1158), - [sym_assert_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1158), - [sym_delete_statement] = STATE(1158), - [sym_raise_statement] = STATE(1158), - [sym_pass_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1158), - [sym_nonlocal_statement] = STATE(1158), - [sym_exec_statement] = STATE(1158), - [sym_type_alias_statement] = STATE(1158), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [79] = { + [sym__simple_statements] = STATE(539), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18174,8 +16825,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -18197,64 +16848,67 @@ 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(361), - [sym__indent] = ACTIONS(363), + [sym__newline] = ACTIONS(360), + [sym__indent] = ACTIONS(362), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, - [81] = { - [sym__simple_statements] = STATE(546), - [sym_import_statement] = STATE(1158), - [sym_future_import_statement] = STATE(1158), - [sym_import_from_statement] = STATE(1158), - [sym_print_statement] = STATE(1158), - [sym_assert_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1158), - [sym_delete_statement] = STATE(1158), - [sym_raise_statement] = STATE(1158), - [sym_pass_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1158), - [sym_nonlocal_statement] = STATE(1158), - [sym_exec_statement] = STATE(1158), - [sym_type_alias_statement] = STATE(1158), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [80] = { + [sym__simple_statements] = STATE(493), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18268,8 +16922,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -18291,64 +16945,67 @@ 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(365), - [sym__indent] = ACTIONS(367), + [sym__newline] = ACTIONS(364), + [sym__indent] = ACTIONS(366), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, - [82] = { - [sym__simple_statements] = STATE(254), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [81] = { + [sym__simple_statements] = STATE(487), + [sym_import_statement] = STATE(1181), + [sym_future_import_statement] = STATE(1181), + [sym_import_from_statement] = STATE(1181), + [sym_print_statement] = STATE(1181), + [sym_assert_statement] = STATE(1181), + [sym_expression_statement] = STATE(1181), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_raise_statement] = STATE(1181), + [sym_pass_statement] = STATE(1181), + [sym_break_statement] = STATE(1181), + [sym_continue_statement] = STATE(1181), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1181), + [sym_nonlocal_statement] = STATE(1181), + [sym_exec_statement] = STATE(1181), + [sym_type_alias_statement] = STATE(1181), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18362,8 +17019,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -18385,64 +17042,67 @@ 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(369), - [sym__indent] = ACTIONS(371), + [sym__newline] = ACTIONS(368), + [sym__indent] = ACTIONS(370), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, - [83] = { - [sym__simple_statements] = STATE(386), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [82] = { + [sym__simple_statements] = STATE(393), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18456,8 +17116,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -18479,64 +17139,67 @@ 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(373), - [sym__indent] = ACTIONS(375), + [sym__newline] = ACTIONS(372), + [sym__indent] = ACTIONS(374), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, - [84] = { - [sym__simple_statements] = STATE(461), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [83] = { + [sym__simple_statements] = STATE(471), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18550,8 +17213,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -18573,64 +17236,67 @@ 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(377), - [sym__indent] = ACTIONS(379), + [sym__newline] = ACTIONS(376), + [sym__indent] = ACTIONS(378), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, - [85] = { - [sym__simple_statements] = STATE(464), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [84] = { + [sym__simple_statements] = STATE(550), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18644,8 +17310,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -18667,64 +17333,67 @@ 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(381), - [sym__indent] = ACTIONS(383), + [sym__newline] = ACTIONS(380), + [sym__indent] = ACTIONS(382), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, - [86] = { - [sym__simple_statements] = STATE(470), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [85] = { + [sym__simple_statements] = STATE(476), + [sym_import_statement] = STATE(1181), + [sym_future_import_statement] = STATE(1181), + [sym_import_from_statement] = STATE(1181), + [sym_print_statement] = STATE(1181), + [sym_assert_statement] = STATE(1181), + [sym_expression_statement] = STATE(1181), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_raise_statement] = STATE(1181), + [sym_pass_statement] = STATE(1181), + [sym_break_statement] = STATE(1181), + [sym_continue_statement] = STATE(1181), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1181), + [sym_nonlocal_statement] = STATE(1181), + [sym_exec_statement] = STATE(1181), + [sym_type_alias_statement] = STATE(1181), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18738,8 +17407,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -18761,64 +17430,67 @@ 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(385), - [sym__indent] = ACTIONS(387), + [sym__newline] = ACTIONS(384), + [sym__indent] = ACTIONS(386), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, - [87] = { - [sym__simple_statements] = STATE(549), - [sym_import_statement] = STATE(1158), - [sym_future_import_statement] = STATE(1158), - [sym_import_from_statement] = STATE(1158), - [sym_print_statement] = STATE(1158), - [sym_assert_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1158), - [sym_delete_statement] = STATE(1158), - [sym_raise_statement] = STATE(1158), - [sym_pass_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1158), - [sym_nonlocal_statement] = STATE(1158), - [sym_exec_statement] = STATE(1158), - [sym_type_alias_statement] = STATE(1158), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [86] = { + [sym__simple_statements] = STATE(495), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18832,8 +17504,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -18855,64 +17527,67 @@ 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(389), - [sym__indent] = ACTIONS(391), + [sym__newline] = ACTIONS(388), + [sym__indent] = ACTIONS(390), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, - [88] = { - [sym__simple_statements] = STATE(477), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [87] = { + [sym__simple_statements] = STATE(430), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18926,8 +17601,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -18949,64 +17624,67 @@ 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(393), - [sym__indent] = ACTIONS(395), + [sym__newline] = ACTIONS(392), + [sym__indent] = ACTIONS(394), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, - [89] = { - [sym__simple_statements] = STATE(479), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [88] = { + [sym__simple_statements] = STATE(300), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19020,8 +17698,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -19043,64 +17721,67 @@ 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(397), - [sym__indent] = ACTIONS(399), + [sym__newline] = ACTIONS(396), + [sym__indent] = ACTIONS(398), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, - [90] = { - [sym__simple_statements] = STATE(480), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [89] = { + [sym__simple_statements] = STATE(420), + [sym_import_statement] = STATE(1181), + [sym_future_import_statement] = STATE(1181), + [sym_import_from_statement] = STATE(1181), + [sym_print_statement] = STATE(1181), + [sym_assert_statement] = STATE(1181), + [sym_expression_statement] = STATE(1181), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_raise_statement] = STATE(1181), + [sym_pass_statement] = STATE(1181), + [sym_break_statement] = STATE(1181), + [sym_continue_statement] = STATE(1181), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1181), + [sym_nonlocal_statement] = STATE(1181), + [sym_exec_statement] = STATE(1181), + [sym_type_alias_statement] = STATE(1181), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19114,8 +17795,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -19137,64 +17818,67 @@ 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(401), - [sym__indent] = ACTIONS(403), + [sym__newline] = ACTIONS(400), + [sym__indent] = ACTIONS(402), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, - [91] = { - [sym__simple_statements] = STATE(462), - [sym_import_statement] = STATE(1158), - [sym_future_import_statement] = STATE(1158), - [sym_import_from_statement] = STATE(1158), - [sym_print_statement] = STATE(1158), - [sym_assert_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1158), - [sym_delete_statement] = STATE(1158), - [sym_raise_statement] = STATE(1158), - [sym_pass_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1158), - [sym_nonlocal_statement] = STATE(1158), - [sym_exec_statement] = STATE(1158), - [sym_type_alias_statement] = STATE(1158), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [90] = { + [sym__simple_statements] = STATE(558), + [sym_import_statement] = STATE(1181), + [sym_future_import_statement] = STATE(1181), + [sym_import_from_statement] = STATE(1181), + [sym_print_statement] = STATE(1181), + [sym_assert_statement] = STATE(1181), + [sym_expression_statement] = STATE(1181), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_raise_statement] = STATE(1181), + [sym_pass_statement] = STATE(1181), + [sym_break_statement] = STATE(1181), + [sym_continue_statement] = STATE(1181), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1181), + [sym_nonlocal_statement] = STATE(1181), + [sym_exec_statement] = STATE(1181), + [sym_type_alias_statement] = STATE(1181), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19208,8 +17892,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -19231,64 +17915,67 @@ 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(405), - [sym__indent] = ACTIONS(407), + [sym__newline] = ACTIONS(404), + [sym__indent] = ACTIONS(406), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, - [92] = { - [sym__simple_statements] = STATE(484), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [91] = { + [sym__simple_statements] = STATE(391), + [sym_import_statement] = STATE(1181), + [sym_future_import_statement] = STATE(1181), + [sym_import_from_statement] = STATE(1181), + [sym_print_statement] = STATE(1181), + [sym_assert_statement] = STATE(1181), + [sym_expression_statement] = STATE(1181), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_raise_statement] = STATE(1181), + [sym_pass_statement] = STATE(1181), + [sym_break_statement] = STATE(1181), + [sym_continue_statement] = STATE(1181), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1181), + [sym_nonlocal_statement] = STATE(1181), + [sym_exec_statement] = STATE(1181), + [sym_type_alias_statement] = STATE(1181), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19302,8 +17989,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -19325,64 +18012,67 @@ 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(409), - [sym__indent] = ACTIONS(411), + [sym__newline] = ACTIONS(408), + [sym__indent] = ACTIONS(410), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, - [93] = { - [sym__simple_statements] = STATE(393), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [92] = { + [sym__simple_statements] = STATE(500), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19396,8 +18086,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -19419,64 +18109,67 @@ 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(413), - [sym__indent] = ACTIONS(415), + [sym__newline] = ACTIONS(412), + [sym__indent] = ACTIONS(414), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, - [94] = { - [sym__simple_statements] = STATE(334), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [93] = { + [sym__simple_statements] = STATE(401), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19490,8 +18183,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -19513,64 +18206,67 @@ 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(417), - [sym__indent] = ACTIONS(419), + [sym__newline] = ACTIONS(416), + [sym__indent] = ACTIONS(418), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, - [95] = { - [sym__simple_statements] = STATE(487), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [94] = { + [sym__simple_statements] = STATE(396), + [sym_import_statement] = STATE(1181), + [sym_future_import_statement] = STATE(1181), + [sym_import_from_statement] = STATE(1181), + [sym_print_statement] = STATE(1181), + [sym_assert_statement] = STATE(1181), + [sym_expression_statement] = STATE(1181), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_raise_statement] = STATE(1181), + [sym_pass_statement] = STATE(1181), + [sym_break_statement] = STATE(1181), + [sym_continue_statement] = STATE(1181), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1181), + [sym_nonlocal_statement] = STATE(1181), + [sym_exec_statement] = STATE(1181), + [sym_type_alias_statement] = STATE(1181), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19584,8 +18280,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -19607,64 +18303,67 @@ 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(421), - [sym__indent] = ACTIONS(423), + [sym__newline] = ACTIONS(420), + [sym__indent] = ACTIONS(422), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, - [96] = { - [sym__simple_statements] = STATE(472), - [sym_import_statement] = STATE(1158), - [sym_future_import_statement] = STATE(1158), - [sym_import_from_statement] = STATE(1158), - [sym_print_statement] = STATE(1158), - [sym_assert_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1158), - [sym_delete_statement] = STATE(1158), - [sym_raise_statement] = STATE(1158), - [sym_pass_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1158), - [sym_nonlocal_statement] = STATE(1158), - [sym_exec_statement] = STATE(1158), - [sym_type_alias_statement] = STATE(1158), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [95] = { + [sym__simple_statements] = STATE(394), + [sym_import_statement] = STATE(1181), + [sym_future_import_statement] = STATE(1181), + [sym_import_from_statement] = STATE(1181), + [sym_print_statement] = STATE(1181), + [sym_assert_statement] = STATE(1181), + [sym_expression_statement] = STATE(1181), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_raise_statement] = STATE(1181), + [sym_pass_statement] = STATE(1181), + [sym_break_statement] = STATE(1181), + [sym_continue_statement] = STATE(1181), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1181), + [sym_nonlocal_statement] = STATE(1181), + [sym_exec_statement] = STATE(1181), + [sym_type_alias_statement] = STATE(1181), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19678,8 +18377,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -19701,64 +18400,67 @@ 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(425), - [sym__indent] = ACTIONS(427), + [sym__newline] = ACTIONS(424), + [sym__indent] = ACTIONS(426), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, - [97] = { - [sym__simple_statements] = STATE(365), - [sym_import_statement] = STATE(1158), - [sym_future_import_statement] = STATE(1158), - [sym_import_from_statement] = STATE(1158), - [sym_print_statement] = STATE(1158), - [sym_assert_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1158), - [sym_delete_statement] = STATE(1158), - [sym_raise_statement] = STATE(1158), - [sym_pass_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1158), - [sym_nonlocal_statement] = STATE(1158), - [sym_exec_statement] = STATE(1158), - [sym_type_alias_statement] = STATE(1158), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [96] = { + [sym__simple_statements] = STATE(465), + [sym_import_statement] = STATE(1181), + [sym_future_import_statement] = STATE(1181), + [sym_import_from_statement] = STATE(1181), + [sym_print_statement] = STATE(1181), + [sym_assert_statement] = STATE(1181), + [sym_expression_statement] = STATE(1181), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_raise_statement] = STATE(1181), + [sym_pass_statement] = STATE(1181), + [sym_break_statement] = STATE(1181), + [sym_continue_statement] = STATE(1181), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1181), + [sym_nonlocal_statement] = STATE(1181), + [sym_exec_statement] = STATE(1181), + [sym_type_alias_statement] = STATE(1181), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19772,8 +18474,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -19795,64 +18497,67 @@ 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(429), - [sym__indent] = ACTIONS(431), + [sym__newline] = ACTIONS(428), + [sym__indent] = ACTIONS(430), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, - [98] = { - [sym__simple_statements] = STATE(494), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [97] = { + [sym__simple_statements] = STATE(525), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19866,8 +18571,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -19889,64 +18594,67 @@ 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(433), - [sym__indent] = ACTIONS(435), + [sym__newline] = ACTIONS(432), + [sym__indent] = ACTIONS(434), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, - [99] = { - [sym__simple_statements] = STATE(448), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [98] = { + [sym__simple_statements] = STATE(453), + [sym_import_statement] = STATE(1181), + [sym_future_import_statement] = STATE(1181), + [sym_import_from_statement] = STATE(1181), + [sym_print_statement] = STATE(1181), + [sym_assert_statement] = STATE(1181), + [sym_expression_statement] = STATE(1181), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_raise_statement] = STATE(1181), + [sym_pass_statement] = STATE(1181), + [sym_break_statement] = STATE(1181), + [sym_continue_statement] = STATE(1181), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1181), + [sym_nonlocal_statement] = STATE(1181), + [sym_exec_statement] = STATE(1181), + [sym_type_alias_statement] = STATE(1181), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19960,8 +18668,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -19983,64 +18691,67 @@ 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(437), - [sym__indent] = ACTIONS(439), + [sym__newline] = ACTIONS(436), + [sym__indent] = ACTIONS(438), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, - [100] = { - [sym__simple_statements] = STATE(396), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [99] = { + [sym__simple_statements] = STATE(547), + [sym_import_statement] = STATE(1181), + [sym_future_import_statement] = STATE(1181), + [sym_import_from_statement] = STATE(1181), + [sym_print_statement] = STATE(1181), + [sym_assert_statement] = STATE(1181), + [sym_expression_statement] = STATE(1181), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_raise_statement] = STATE(1181), + [sym_pass_statement] = STATE(1181), + [sym_break_statement] = STATE(1181), + [sym_continue_statement] = STATE(1181), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1181), + [sym_nonlocal_statement] = STATE(1181), + [sym_exec_statement] = STATE(1181), + [sym_type_alias_statement] = STATE(1181), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20054,8 +18765,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -20077,64 +18788,67 @@ 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(441), - [sym__indent] = ACTIONS(443), + [sym__newline] = ACTIONS(440), + [sym__indent] = ACTIONS(442), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, - [101] = { - [sym__simple_statements] = STATE(499), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [100] = { + [sym__simple_statements] = STATE(567), + [sym_import_statement] = STATE(1181), + [sym_future_import_statement] = STATE(1181), + [sym_import_from_statement] = STATE(1181), + [sym_print_statement] = STATE(1181), + [sym_assert_statement] = STATE(1181), + [sym_expression_statement] = STATE(1181), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_raise_statement] = STATE(1181), + [sym_pass_statement] = STATE(1181), + [sym_break_statement] = STATE(1181), + [sym_continue_statement] = STATE(1181), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1181), + [sym_nonlocal_statement] = STATE(1181), + [sym_exec_statement] = STATE(1181), + [sym_type_alias_statement] = STATE(1181), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20148,8 +18862,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -20171,64 +18885,67 @@ 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(445), - [sym__indent] = ACTIONS(447), + [sym__newline] = ACTIONS(444), + [sym__indent] = ACTIONS(446), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, - [102] = { - [sym__simple_statements] = STATE(531), - [sym_import_statement] = STATE(1158), - [sym_future_import_statement] = STATE(1158), - [sym_import_from_statement] = STATE(1158), - [sym_print_statement] = STATE(1158), - [sym_assert_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1158), - [sym_delete_statement] = STATE(1158), - [sym_raise_statement] = STATE(1158), - [sym_pass_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1158), - [sym_nonlocal_statement] = STATE(1158), - [sym_exec_statement] = STATE(1158), - [sym_type_alias_statement] = STATE(1158), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [101] = { + [sym__simple_statements] = STATE(997), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20242,8 +18959,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -20265,64 +18982,67 @@ 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(449), - [sym__indent] = ACTIONS(451), + [sym__newline] = ACTIONS(448), + [sym__indent] = ACTIONS(450), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, - [103] = { - [sym__simple_statements] = STATE(355), - [sym_import_statement] = STATE(1158), - [sym_future_import_statement] = STATE(1158), - [sym_import_from_statement] = STATE(1158), - [sym_print_statement] = STATE(1158), - [sym_assert_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1158), - [sym_delete_statement] = STATE(1158), - [sym_raise_statement] = STATE(1158), - [sym_pass_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1158), - [sym_nonlocal_statement] = STATE(1158), - [sym_exec_statement] = STATE(1158), - [sym_type_alias_statement] = STATE(1158), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [102] = { + [sym__simple_statements] = STATE(477), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20336,8 +19056,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -20359,64 +19079,67 @@ 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(453), - [sym__indent] = ACTIONS(455), + [sym__newline] = ACTIONS(452), + [sym__indent] = ACTIONS(454), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, - [104] = { - [sym__simple_statements] = STATE(336), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [103] = { + [sym__simple_statements] = STATE(472), + [sym_import_statement] = STATE(1181), + [sym_future_import_statement] = STATE(1181), + [sym_import_from_statement] = STATE(1181), + [sym_print_statement] = STATE(1181), + [sym_assert_statement] = STATE(1181), + [sym_expression_statement] = STATE(1181), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_raise_statement] = STATE(1181), + [sym_pass_statement] = STATE(1181), + [sym_break_statement] = STATE(1181), + [sym_continue_statement] = STATE(1181), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1181), + [sym_nonlocal_statement] = STATE(1181), + [sym_exec_statement] = STATE(1181), + [sym_type_alias_statement] = STATE(1181), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20430,8 +19153,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -20453,64 +19176,67 @@ 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(457), - [sym__indent] = ACTIONS(459), + [sym__newline] = ACTIONS(456), + [sym__indent] = ACTIONS(458), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, - [105] = { - [sym__simple_statements] = STATE(321), - [sym_import_statement] = STATE(1158), - [sym_future_import_statement] = STATE(1158), - [sym_import_from_statement] = STATE(1158), - [sym_print_statement] = STATE(1158), - [sym_assert_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1158), - [sym_delete_statement] = STATE(1158), - [sym_raise_statement] = STATE(1158), - [sym_pass_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1158), - [sym_nonlocal_statement] = STATE(1158), - [sym_exec_statement] = STATE(1158), - [sym_type_alias_statement] = STATE(1158), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [104] = { + [sym__simple_statements] = STATE(411), + [sym_import_statement] = STATE(1181), + [sym_future_import_statement] = STATE(1181), + [sym_import_from_statement] = STATE(1181), + [sym_print_statement] = STATE(1181), + [sym_assert_statement] = STATE(1181), + [sym_expression_statement] = STATE(1181), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_raise_statement] = STATE(1181), + [sym_pass_statement] = STATE(1181), + [sym_break_statement] = STATE(1181), + [sym_continue_statement] = STATE(1181), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1181), + [sym_nonlocal_statement] = STATE(1181), + [sym_exec_statement] = STATE(1181), + [sym_type_alias_statement] = STATE(1181), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20524,8 +19250,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -20547,64 +19273,67 @@ 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(461), - [sym__indent] = ACTIONS(463), + [sym__newline] = ACTIONS(460), + [sym__indent] = ACTIONS(462), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, - [106] = { - [sym__simple_statements] = STATE(450), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [105] = { + [sym__simple_statements] = STATE(438), + [sym_import_statement] = STATE(1181), + [sym_future_import_statement] = STATE(1181), + [sym_import_from_statement] = STATE(1181), + [sym_print_statement] = STATE(1181), + [sym_assert_statement] = STATE(1181), + [sym_expression_statement] = STATE(1181), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_raise_statement] = STATE(1181), + [sym_pass_statement] = STATE(1181), + [sym_break_statement] = STATE(1181), + [sym_continue_statement] = STATE(1181), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1181), + [sym_nonlocal_statement] = STATE(1181), + [sym_exec_statement] = STATE(1181), + [sym_type_alias_statement] = STATE(1181), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20618,8 +19347,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -20641,64 +19370,67 @@ 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(465), - [sym__indent] = ACTIONS(467), + [sym__newline] = ACTIONS(464), + [sym__indent] = ACTIONS(466), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, - [107] = { - [sym__simple_statements] = STATE(506), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [106] = { + [sym__simple_statements] = STATE(518), + [sym_import_statement] = STATE(1181), + [sym_future_import_statement] = STATE(1181), + [sym_import_from_statement] = STATE(1181), + [sym_print_statement] = STATE(1181), + [sym_assert_statement] = STATE(1181), + [sym_expression_statement] = STATE(1181), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_raise_statement] = STATE(1181), + [sym_pass_statement] = STATE(1181), + [sym_break_statement] = STATE(1181), + [sym_continue_statement] = STATE(1181), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1181), + [sym_nonlocal_statement] = STATE(1181), + [sym_exec_statement] = STATE(1181), + [sym_type_alias_statement] = STATE(1181), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20712,8 +19444,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -20735,64 +19467,67 @@ 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(469), - [sym__indent] = ACTIONS(471), + [sym__newline] = ACTIONS(468), + [sym__indent] = ACTIONS(470), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, - [108] = { - [sym__simple_statements] = STATE(541), - [sym_import_statement] = STATE(1158), - [sym_future_import_statement] = STATE(1158), - [sym_import_from_statement] = STATE(1158), - [sym_print_statement] = STATE(1158), - [sym_assert_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1158), - [sym_delete_statement] = STATE(1158), - [sym_raise_statement] = STATE(1158), - [sym_pass_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1158), - [sym_nonlocal_statement] = STATE(1158), - [sym_exec_statement] = STATE(1158), - [sym_type_alias_statement] = STATE(1158), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [107] = { + [sym__simple_statements] = STATE(464), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20806,8 +19541,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -20829,64 +19564,67 @@ 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(473), - [sym__indent] = ACTIONS(475), + [sym__newline] = ACTIONS(472), + [sym__indent] = ACTIONS(474), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, - [109] = { - [sym__simple_statements] = STATE(400), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [108] = { + [sym__simple_statements] = STATE(302), + [sym_import_statement] = STATE(1181), + [sym_future_import_statement] = STATE(1181), + [sym_import_from_statement] = STATE(1181), + [sym_print_statement] = STATE(1181), + [sym_assert_statement] = STATE(1181), + [sym_expression_statement] = STATE(1181), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_raise_statement] = STATE(1181), + [sym_pass_statement] = STATE(1181), + [sym_break_statement] = STATE(1181), + [sym_continue_statement] = STATE(1181), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1181), + [sym_nonlocal_statement] = STATE(1181), + [sym_exec_statement] = STATE(1181), + [sym_type_alias_statement] = STATE(1181), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20900,8 +19638,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -20923,64 +19661,67 @@ 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(477), - [sym__indent] = ACTIONS(479), + [sym__newline] = ACTIONS(476), + [sym__indent] = ACTIONS(478), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, - [110] = { - [sym__simple_statements] = STATE(552), - [sym_import_statement] = STATE(1158), - [sym_future_import_statement] = STATE(1158), - [sym_import_from_statement] = STATE(1158), - [sym_print_statement] = STATE(1158), - [sym_assert_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1158), - [sym_delete_statement] = STATE(1158), - [sym_raise_statement] = STATE(1158), - [sym_pass_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1158), - [sym_nonlocal_statement] = STATE(1158), - [sym_exec_statement] = STATE(1158), - [sym_type_alias_statement] = STATE(1158), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [109] = { + [sym__simple_statements] = STATE(509), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20994,8 +19735,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -21017,64 +19758,67 @@ 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(481), - [sym__indent] = ACTIONS(483), + [sym__newline] = ACTIONS(480), + [sym__indent] = ACTIONS(482), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, - [111] = { - [sym__simple_statements] = STATE(512), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [110] = { + [sym__simple_statements] = STATE(552), + [sym_import_statement] = STATE(1181), + [sym_future_import_statement] = STATE(1181), + [sym_import_from_statement] = STATE(1181), + [sym_print_statement] = STATE(1181), + [sym_assert_statement] = STATE(1181), + [sym_expression_statement] = STATE(1181), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_raise_statement] = STATE(1181), + [sym_pass_statement] = STATE(1181), + [sym_break_statement] = STATE(1181), + [sym_continue_statement] = STATE(1181), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1181), + [sym_nonlocal_statement] = STATE(1181), + [sym_exec_statement] = STATE(1181), + [sym_type_alias_statement] = STATE(1181), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21088,8 +19832,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -21111,64 +19855,164 @@ 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(485), - [sym__indent] = ACTIONS(487), + [sym__newline] = ACTIONS(484), + [sym__indent] = ACTIONS(486), + [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), + }, + [111] = { + [sym_chevron] = STATE(1109), + [sym_named_expression] = STATE(955), + [sym_expression] = STATE(1012), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_attribute] = STATE(760), + [sym_subscript] = STATE(760), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [sym_identifier] = ACTIONS(488), + [anon_sym_DOT] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(298), + [anon_sym_COMMA] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(265), + [anon_sym_print] = ACTIONS(490), + [anon_sym_GT_GT] = ACTIONS(492), + [anon_sym_COLON_EQ] = ACTIONS(278), + [anon_sym_if] = ACTIONS(265), + [anon_sym_COLON] = ACTIONS(280), + [anon_sym_async] = ACTIONS(490), + [anon_sym_in] = ACTIONS(265), + [anon_sym_match] = ACTIONS(490), + [anon_sym_PIPE] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(298), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_STAR_STAR] = ACTIONS(265), + [anon_sym_EQ] = ACTIONS(280), + [anon_sym_exec] = ACTIONS(490), + [anon_sym_type] = ACTIONS(490), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_not] = ACTIONS(265), + [anon_sym_and] = ACTIONS(265), + [anon_sym_or] = ACTIONS(265), + [anon_sym_SLASH] = ACTIONS(265), + [anon_sym_PERCENT] = ACTIONS(265), + [anon_sym_SLASH_SLASH] = ACTIONS(265), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_CARET] = ACTIONS(265), + [anon_sym_LT_LT] = ACTIONS(265), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_LT] = ACTIONS(265), + [anon_sym_LT_EQ] = ACTIONS(298), + [anon_sym_EQ_EQ] = ACTIONS(298), + [anon_sym_BANG_EQ] = ACTIONS(298), + [anon_sym_GT_EQ] = ACTIONS(298), + [anon_sym_GT] = ACTIONS(265), + [anon_sym_LT_GT] = ACTIONS(298), + [anon_sym_is] = ACTIONS(265), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_PLUS_EQ] = ACTIONS(302), + [anon_sym_DASH_EQ] = ACTIONS(302), + [anon_sym_STAR_EQ] = ACTIONS(302), + [anon_sym_SLASH_EQ] = ACTIONS(302), + [anon_sym_AT_EQ] = ACTIONS(302), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(302), + [anon_sym_PERCENT_EQ] = ACTIONS(302), + [anon_sym_STAR_STAR_EQ] = ACTIONS(302), + [anon_sym_GT_GT_EQ] = ACTIONS(302), + [anon_sym_LT_LT_EQ] = ACTIONS(302), + [anon_sym_AMP_EQ] = ACTIONS(302), + [anon_sym_CARET_EQ] = ACTIONS(302), + [anon_sym_PIPE_EQ] = ACTIONS(302), + [sym_ellipsis] = ACTIONS(75), + [sym_integer] = ACTIONS(77), + [sym_float] = ACTIONS(75), + [anon_sym_await] = ACTIONS(494), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_none] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym__semicolon] = ACTIONS(298), + [sym__newline] = ACTIONS(298), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [112] = { - [sym__simple_statements] = STATE(554), - [sym_import_statement] = STATE(1158), - [sym_future_import_statement] = STATE(1158), - [sym_import_from_statement] = STATE(1158), - [sym_print_statement] = STATE(1158), - [sym_assert_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1158), - [sym_delete_statement] = STATE(1158), - [sym_raise_statement] = STATE(1158), - [sym_pass_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1158), - [sym_nonlocal_statement] = STATE(1158), - [sym_exec_statement] = STATE(1158), - [sym_type_alias_statement] = STATE(1158), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(501), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21182,8 +20026,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -21205,64 +20049,67 @@ 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(489), - [sym__indent] = ACTIONS(491), + [sym__newline] = ACTIONS(496), + [sym__indent] = ACTIONS(498), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [113] = { - [sym__simple_statements] = STATE(337), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(486), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21276,8 +20123,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -21299,64 +20146,67 @@ 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(493), - [sym__indent] = ACTIONS(495), + [sym__newline] = ACTIONS(500), + [sym__indent] = ACTIONS(502), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [114] = { - [sym__simple_statements] = STATE(447), - [sym_import_statement] = STATE(1158), - [sym_future_import_statement] = STATE(1158), - [sym_import_from_statement] = STATE(1158), - [sym_print_statement] = STATE(1158), - [sym_assert_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1158), - [sym_delete_statement] = STATE(1158), - [sym_raise_statement] = STATE(1158), - [sym_pass_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1158), - [sym_nonlocal_statement] = STATE(1158), - [sym_exec_statement] = STATE(1158), - [sym_type_alias_statement] = STATE(1158), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(995), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21370,8 +20220,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -21393,64 +20243,67 @@ 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(497), - [sym__indent] = ACTIONS(499), + [sym__newline] = ACTIONS(504), + [sym__indent] = ACTIONS(506), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [115] = { - [sym__simple_statements] = STATE(453), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(404), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21464,8 +20317,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -21487,64 +20340,67 @@ 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(501), - [sym__indent] = ACTIONS(503), + [sym__newline] = ACTIONS(508), + [sym__indent] = ACTIONS(510), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [116] = { - [sym__simple_statements] = STATE(360), - [sym_import_statement] = STATE(1158), - [sym_future_import_statement] = STATE(1158), - [sym_import_from_statement] = STATE(1158), - [sym_print_statement] = STATE(1158), - [sym_assert_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1158), - [sym_delete_statement] = STATE(1158), - [sym_raise_statement] = STATE(1158), - [sym_pass_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1158), - [sym_nonlocal_statement] = STATE(1158), - [sym_exec_statement] = STATE(1158), - [sym_type_alias_statement] = STATE(1158), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(561), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21558,8 +20414,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -21581,64 +20437,67 @@ 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(505), - [sym__indent] = ACTIONS(507), + [sym__newline] = ACTIONS(512), + [sym__indent] = ACTIONS(514), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [117] = { - [sym__simple_statements] = STATE(518), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(511), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21652,8 +20511,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -21675,64 +20534,67 @@ 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(509), - [sym__indent] = ACTIONS(511), + [sym__newline] = ACTIONS(516), + [sym__indent] = ACTIONS(518), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [118] = { - [sym__simple_statements] = STATE(466), - [sym_import_statement] = STATE(1158), - [sym_future_import_statement] = STATE(1158), - [sym_import_from_statement] = STATE(1158), - [sym_print_statement] = STATE(1158), - [sym_assert_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1158), - [sym_delete_statement] = STATE(1158), - [sym_raise_statement] = STATE(1158), - [sym_pass_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1158), - [sym_nonlocal_statement] = STATE(1158), - [sym_exec_statement] = STATE(1158), - [sym_type_alias_statement] = STATE(1158), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(468), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21746,8 +20608,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -21769,64 +20631,67 @@ 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(513), - [sym__indent] = ACTIONS(515), + [sym__newline] = ACTIONS(520), + [sym__indent] = ACTIONS(522), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [119] = { - [sym__simple_statements] = STATE(521), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(564), + [sym_import_statement] = STATE(1181), + [sym_future_import_statement] = STATE(1181), + [sym_import_from_statement] = STATE(1181), + [sym_print_statement] = STATE(1181), + [sym_assert_statement] = STATE(1181), + [sym_expression_statement] = STATE(1181), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_raise_statement] = STATE(1181), + [sym_pass_statement] = STATE(1181), + [sym_break_statement] = STATE(1181), + [sym_continue_statement] = STATE(1181), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1181), + [sym_nonlocal_statement] = STATE(1181), + [sym_exec_statement] = STATE(1181), + [sym_type_alias_statement] = STATE(1181), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21840,8 +20705,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -21863,64 +20728,67 @@ 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(517), - [sym__indent] = ACTIONS(519), + [sym__newline] = ACTIONS(524), + [sym__indent] = ACTIONS(526), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [120] = { - [sym__simple_statements] = STATE(340), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(563), + [sym_import_statement] = STATE(1181), + [sym_future_import_statement] = STATE(1181), + [sym_import_from_statement] = STATE(1181), + [sym_print_statement] = STATE(1181), + [sym_assert_statement] = STATE(1181), + [sym_expression_statement] = STATE(1181), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_raise_statement] = STATE(1181), + [sym_pass_statement] = STATE(1181), + [sym_break_statement] = STATE(1181), + [sym_continue_statement] = STATE(1181), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1181), + [sym_nonlocal_statement] = STATE(1181), + [sym_exec_statement] = STATE(1181), + [sym_type_alias_statement] = STATE(1181), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21934,8 +20802,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -21957,64 +20825,67 @@ 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(521), - [sym__indent] = ACTIONS(523), + [sym__newline] = ACTIONS(528), + [sym__indent] = ACTIONS(530), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [121] = { - [sym__simple_statements] = STATE(323), - [sym_import_statement] = STATE(1158), - [sym_future_import_statement] = STATE(1158), - [sym_import_from_statement] = STATE(1158), - [sym_print_statement] = STATE(1158), - [sym_assert_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1158), - [sym_delete_statement] = STATE(1158), - [sym_raise_statement] = STATE(1158), - [sym_pass_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1158), - [sym_nonlocal_statement] = STATE(1158), - [sym_exec_statement] = STATE(1158), - [sym_type_alias_statement] = STATE(1158), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(515), + [sym_import_statement] = STATE(1181), + [sym_future_import_statement] = STATE(1181), + [sym_import_from_statement] = STATE(1181), + [sym_print_statement] = STATE(1181), + [sym_assert_statement] = STATE(1181), + [sym_expression_statement] = STATE(1181), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_raise_statement] = STATE(1181), + [sym_pass_statement] = STATE(1181), + [sym_break_statement] = STATE(1181), + [sym_continue_statement] = STATE(1181), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1181), + [sym_nonlocal_statement] = STATE(1181), + [sym_exec_statement] = STATE(1181), + [sym_type_alias_statement] = STATE(1181), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -22028,8 +20899,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -22051,64 +20922,67 @@ 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(525), - [sym__indent] = ACTIONS(527), + [sym__newline] = ACTIONS(532), + [sym__indent] = ACTIONS(534), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [122] = { - [sym__simple_statements] = STATE(341), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(557), + [sym_import_statement] = STATE(1181), + [sym_future_import_statement] = STATE(1181), + [sym_import_from_statement] = STATE(1181), + [sym_print_statement] = STATE(1181), + [sym_assert_statement] = STATE(1181), + [sym_expression_statement] = STATE(1181), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_raise_statement] = STATE(1181), + [sym_pass_statement] = STATE(1181), + [sym_break_statement] = STATE(1181), + [sym_continue_statement] = STATE(1181), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1181), + [sym_nonlocal_statement] = STATE(1181), + [sym_exec_statement] = STATE(1181), + [sym_type_alias_statement] = STATE(1181), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -22122,8 +20996,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -22145,64 +21019,67 @@ 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(529), - [sym__indent] = ACTIONS(531), + [sym__newline] = ACTIONS(536), + [sym__indent] = ACTIONS(538), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [123] = { - [sym__simple_statements] = STATE(449), - [sym_import_statement] = STATE(1158), - [sym_future_import_statement] = STATE(1158), - [sym_import_from_statement] = STATE(1158), - [sym_print_statement] = STATE(1158), - [sym_assert_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1158), - [sym_delete_statement] = STATE(1158), - [sym_raise_statement] = STATE(1158), - [sym_pass_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1158), - [sym_nonlocal_statement] = STATE(1158), - [sym_exec_statement] = STATE(1158), - [sym_type_alias_statement] = STATE(1158), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(399), + [sym_import_statement] = STATE(1181), + [sym_future_import_statement] = STATE(1181), + [sym_import_from_statement] = STATE(1181), + [sym_print_statement] = STATE(1181), + [sym_assert_statement] = STATE(1181), + [sym_expression_statement] = STATE(1181), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_raise_statement] = STATE(1181), + [sym_pass_statement] = STATE(1181), + [sym_break_statement] = STATE(1181), + [sym_continue_statement] = STATE(1181), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1181), + [sym_nonlocal_statement] = STATE(1181), + [sym_exec_statement] = STATE(1181), + [sym_type_alias_statement] = STATE(1181), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -22216,8 +21093,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -22239,64 +21116,67 @@ 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(533), - [sym__indent] = ACTIONS(535), + [sym__newline] = ACTIONS(540), + [sym__indent] = ACTIONS(542), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [124] = { - [sym__simple_statements] = STATE(503), - [sym_import_statement] = STATE(1158), - [sym_future_import_statement] = STATE(1158), - [sym_import_from_statement] = STATE(1158), - [sym_print_statement] = STATE(1158), - [sym_assert_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1158), - [sym_delete_statement] = STATE(1158), - [sym_raise_statement] = STATE(1158), - [sym_pass_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1158), - [sym_nonlocal_statement] = STATE(1158), - [sym_exec_statement] = STATE(1158), - [sym_type_alias_statement] = STATE(1158), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(410), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -22310,8 +21190,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -22333,64 +21213,67 @@ 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(537), - [sym__indent] = ACTIONS(539), + [sym__newline] = ACTIONS(544), + [sym__indent] = ACTIONS(546), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [125] = { - [sym__simple_statements] = STATE(992), - [sym_import_statement] = STATE(1228), - [sym_future_import_statement] = STATE(1228), - [sym_import_from_statement] = STATE(1228), - [sym_print_statement] = STATE(1228), - [sym_assert_statement] = STATE(1228), - [sym_expression_statement] = STATE(1228), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1228), - [sym_delete_statement] = STATE(1228), - [sym_raise_statement] = STATE(1228), - [sym_pass_statement] = STATE(1228), - [sym_break_statement] = STATE(1228), - [sym_continue_statement] = STATE(1228), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1228), - [sym_nonlocal_statement] = STATE(1228), - [sym_exec_statement] = STATE(1228), - [sym_type_alias_statement] = STATE(1228), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(508), + [sym_import_statement] = STATE(1181), + [sym_future_import_statement] = STATE(1181), + [sym_import_from_statement] = STATE(1181), + [sym_print_statement] = STATE(1181), + [sym_assert_statement] = STATE(1181), + [sym_expression_statement] = STATE(1181), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_raise_statement] = STATE(1181), + [sym_pass_statement] = STATE(1181), + [sym_break_statement] = STATE(1181), + [sym_continue_statement] = STATE(1181), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1181), + [sym_nonlocal_statement] = STATE(1181), + [sym_exec_statement] = STATE(1181), + [sym_type_alias_statement] = STATE(1181), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -22404,8 +21287,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -22427,64 +21310,67 @@ 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(541), - [sym__indent] = ACTIONS(543), + [sym__newline] = ACTIONS(548), + [sym__indent] = ACTIONS(550), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [126] = { - [sym__simple_statements] = STATE(492), - [sym_import_statement] = STATE(1220), - [sym_future_import_statement] = STATE(1220), - [sym_import_from_statement] = STATE(1220), - [sym_print_statement] = STATE(1220), - [sym_assert_statement] = STATE(1220), - [sym_expression_statement] = STATE(1220), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1220), - [sym_delete_statement] = STATE(1220), - [sym_raise_statement] = STATE(1220), - [sym_pass_statement] = STATE(1220), - [sym_break_statement] = STATE(1220), - [sym_continue_statement] = STATE(1220), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1220), - [sym_nonlocal_statement] = STATE(1220), - [sym_exec_statement] = STATE(1220), - [sym_type_alias_statement] = STATE(1220), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym__simple_statements] = STATE(507), + [sym_import_statement] = STATE(1181), + [sym_future_import_statement] = STATE(1181), + [sym_import_from_statement] = STATE(1181), + [sym_print_statement] = STATE(1181), + [sym_assert_statement] = STATE(1181), + [sym_expression_statement] = STATE(1181), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_raise_statement] = STATE(1181), + [sym_pass_statement] = STATE(1181), + [sym_break_statement] = STATE(1181), + [sym_continue_statement] = STATE(1181), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1181), + [sym_nonlocal_statement] = STATE(1181), + [sym_exec_statement] = STATE(1181), + [sym_type_alias_statement] = STATE(1181), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -22498,8 +21384,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -22521,63 +21407,66 @@ 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(545), - [sym__indent] = ACTIONS(547), + [sym__newline] = ACTIONS(552), + [sym__indent] = ACTIONS(554), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [127] = { - [sym_import_statement] = STATE(1316), - [sym_future_import_statement] = STATE(1316), - [sym_import_from_statement] = STATE(1316), - [sym_print_statement] = STATE(1316), - [sym_assert_statement] = STATE(1316), - [sym_expression_statement] = STATE(1316), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1316), - [sym_delete_statement] = STATE(1316), - [sym_raise_statement] = STATE(1316), - [sym_pass_statement] = STATE(1316), - [sym_break_statement] = STATE(1316), - [sym_continue_statement] = STATE(1316), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1316), - [sym_nonlocal_statement] = STATE(1316), - [sym_exec_statement] = STATE(1316), - [sym_type_alias_statement] = STATE(1316), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym_import_statement] = STATE(1369), + [sym_future_import_statement] = STATE(1369), + [sym_import_from_statement] = STATE(1369), + [sym_print_statement] = STATE(1369), + [sym_assert_statement] = STATE(1369), + [sym_expression_statement] = STATE(1369), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1369), + [sym_delete_statement] = STATE(1369), + [sym_raise_statement] = STATE(1369), + [sym_pass_statement] = STATE(1369), + [sym_break_statement] = STATE(1369), + [sym_continue_statement] = STATE(1369), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1369), + [sym_nonlocal_statement] = STATE(1369), + [sym_exec_statement] = STATE(1369), + [sym_type_alias_statement] = STATE(1369), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -22591,8 +21480,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -22614,62 +21503,65 @@ 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(549), + [sym__newline] = ACTIONS(556), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [128] = { - [sym_import_statement] = STATE(1316), - [sym_future_import_statement] = STATE(1316), - [sym_import_from_statement] = STATE(1316), - [sym_print_statement] = STATE(1316), - [sym_assert_statement] = STATE(1316), - [sym_expression_statement] = STATE(1316), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1316), - [sym_delete_statement] = STATE(1316), - [sym_raise_statement] = STATE(1316), - [sym_pass_statement] = STATE(1316), - [sym_break_statement] = STATE(1316), - [sym_continue_statement] = STATE(1316), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1316), - [sym_nonlocal_statement] = STATE(1316), - [sym_exec_statement] = STATE(1316), - [sym_type_alias_statement] = STATE(1316), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym_import_statement] = STATE(1369), + [sym_future_import_statement] = STATE(1369), + [sym_import_from_statement] = STATE(1369), + [sym_print_statement] = STATE(1369), + [sym_assert_statement] = STATE(1369), + [sym_expression_statement] = STATE(1369), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1369), + [sym_delete_statement] = STATE(1369), + [sym_raise_statement] = STATE(1369), + [sym_pass_statement] = STATE(1369), + [sym_break_statement] = STATE(1369), + [sym_continue_statement] = STATE(1369), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1369), + [sym_nonlocal_statement] = STATE(1369), + [sym_exec_statement] = STATE(1369), + [sym_type_alias_statement] = STATE(1369), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -22683,8 +21575,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -22706,62 +21598,65 @@ 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(551), + [sym__newline] = ACTIONS(558), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [129] = { - [sym_import_statement] = STATE(1316), - [sym_future_import_statement] = STATE(1316), - [sym_import_from_statement] = STATE(1316), - [sym_print_statement] = STATE(1316), - [sym_assert_statement] = STATE(1316), - [sym_expression_statement] = STATE(1316), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1316), - [sym_delete_statement] = STATE(1316), - [sym_raise_statement] = STATE(1316), - [sym_pass_statement] = STATE(1316), - [sym_break_statement] = STATE(1316), - [sym_continue_statement] = STATE(1316), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1316), - [sym_nonlocal_statement] = STATE(1316), - [sym_exec_statement] = STATE(1316), - [sym_type_alias_statement] = STATE(1316), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym_import_statement] = STATE(1369), + [sym_future_import_statement] = STATE(1369), + [sym_import_from_statement] = STATE(1369), + [sym_print_statement] = STATE(1369), + [sym_assert_statement] = STATE(1369), + [sym_expression_statement] = STATE(1369), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1369), + [sym_delete_statement] = STATE(1369), + [sym_raise_statement] = STATE(1369), + [sym_pass_statement] = STATE(1369), + [sym_break_statement] = STATE(1369), + [sym_continue_statement] = STATE(1369), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1369), + [sym_nonlocal_statement] = STATE(1369), + [sym_exec_statement] = STATE(1369), + [sym_type_alias_statement] = STATE(1369), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -22775,8 +21670,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -22798,62 +21693,65 @@ 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(553), + [sym__newline] = ACTIONS(560), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [130] = { - [sym_import_statement] = STATE(1316), - [sym_future_import_statement] = STATE(1316), - [sym_import_from_statement] = STATE(1316), - [sym_print_statement] = STATE(1316), - [sym_assert_statement] = STATE(1316), - [sym_expression_statement] = STATE(1316), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1316), - [sym_delete_statement] = STATE(1316), - [sym_raise_statement] = STATE(1316), - [sym_pass_statement] = STATE(1316), - [sym_break_statement] = STATE(1316), - [sym_continue_statement] = STATE(1316), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1316), - [sym_nonlocal_statement] = STATE(1316), - [sym_exec_statement] = STATE(1316), - [sym_type_alias_statement] = STATE(1316), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym_import_statement] = STATE(1369), + [sym_future_import_statement] = STATE(1369), + [sym_import_from_statement] = STATE(1369), + [sym_print_statement] = STATE(1369), + [sym_assert_statement] = STATE(1369), + [sym_expression_statement] = STATE(1369), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1369), + [sym_delete_statement] = STATE(1369), + [sym_raise_statement] = STATE(1369), + [sym_pass_statement] = STATE(1369), + [sym_break_statement] = STATE(1369), + [sym_continue_statement] = STATE(1369), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1369), + [sym_nonlocal_statement] = STATE(1369), + [sym_exec_statement] = STATE(1369), + [sym_type_alias_statement] = STATE(1369), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -22867,8 +21765,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -22890,62 +21788,65 @@ 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(555), + [sym__newline] = ACTIONS(562), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [131] = { - [sym_import_statement] = STATE(1316), - [sym_future_import_statement] = STATE(1316), - [sym_import_from_statement] = STATE(1316), - [sym_print_statement] = STATE(1316), - [sym_assert_statement] = STATE(1316), - [sym_expression_statement] = STATE(1316), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1316), - [sym_delete_statement] = STATE(1316), - [sym_raise_statement] = STATE(1316), - [sym_pass_statement] = STATE(1316), - [sym_break_statement] = STATE(1316), - [sym_continue_statement] = STATE(1316), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1316), - [sym_nonlocal_statement] = STATE(1316), - [sym_exec_statement] = STATE(1316), - [sym_type_alias_statement] = STATE(1316), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym_import_statement] = STATE(1369), + [sym_future_import_statement] = STATE(1369), + [sym_import_from_statement] = STATE(1369), + [sym_print_statement] = STATE(1369), + [sym_assert_statement] = STATE(1369), + [sym_expression_statement] = STATE(1369), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1369), + [sym_delete_statement] = STATE(1369), + [sym_raise_statement] = STATE(1369), + [sym_pass_statement] = STATE(1369), + [sym_break_statement] = STATE(1369), + [sym_continue_statement] = STATE(1369), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1369), + [sym_nonlocal_statement] = STATE(1369), + [sym_exec_statement] = STATE(1369), + [sym_type_alias_statement] = STATE(1369), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -22959,8 +21860,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -22982,62 +21883,65 @@ 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(557), + [sym__newline] = ACTIONS(564), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [132] = { - [sym_import_statement] = STATE(1316), - [sym_future_import_statement] = STATE(1316), - [sym_import_from_statement] = STATE(1316), - [sym_print_statement] = STATE(1316), - [sym_assert_statement] = STATE(1316), - [sym_expression_statement] = STATE(1316), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1316), - [sym_delete_statement] = STATE(1316), - [sym_raise_statement] = STATE(1316), - [sym_pass_statement] = STATE(1316), - [sym_break_statement] = STATE(1316), - [sym_continue_statement] = STATE(1316), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1316), - [sym_nonlocal_statement] = STATE(1316), - [sym_exec_statement] = STATE(1316), - [sym_type_alias_statement] = STATE(1316), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym_import_statement] = STATE(1369), + [sym_future_import_statement] = STATE(1369), + [sym_import_from_statement] = STATE(1369), + [sym_print_statement] = STATE(1369), + [sym_assert_statement] = STATE(1369), + [sym_expression_statement] = STATE(1369), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1369), + [sym_delete_statement] = STATE(1369), + [sym_raise_statement] = STATE(1369), + [sym_pass_statement] = STATE(1369), + [sym_break_statement] = STATE(1369), + [sym_continue_statement] = STATE(1369), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1369), + [sym_nonlocal_statement] = STATE(1369), + [sym_exec_statement] = STATE(1369), + [sym_type_alias_statement] = STATE(1369), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -23051,8 +21955,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -23074,62 +21978,65 @@ 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(559), + [sym__newline] = ACTIONS(566), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [133] = { - [sym_import_statement] = STATE(1316), - [sym_future_import_statement] = STATE(1316), - [sym_import_from_statement] = STATE(1316), - [sym_print_statement] = STATE(1316), - [sym_assert_statement] = STATE(1316), - [sym_expression_statement] = STATE(1316), - [sym_named_expression] = STATE(940), - [sym_return_statement] = STATE(1316), - [sym_delete_statement] = STATE(1316), - [sym_raise_statement] = STATE(1316), - [sym_pass_statement] = STATE(1316), - [sym_break_statement] = STATE(1316), - [sym_continue_statement] = STATE(1316), - [sym_list_splat] = STATE(1283), - [sym_dictionary_splat] = STATE(1283), - [sym_global_statement] = STATE(1316), - [sym_nonlocal_statement] = STATE(1316), - [sym_exec_statement] = STATE(1316), - [sym_type_alias_statement] = STATE(1316), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(847), - [sym_tuple_pattern] = STATE(833), - [sym_list_pattern] = STATE(833), - [sym_list_splat_pattern] = STATE(833), - [sym_expression] = STATE(974), - [sym_primary_expression] = STATE(689), - [sym_not_operator] = STATE(940), - [sym_boolean_operator] = STATE(940), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_comparison_operator] = STATE(940), - [sym_lambda] = STATE(940), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), - [sym_pattern_list] = STATE(855), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_conditional_expression] = STATE(940), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym_import_statement] = STATE(1369), + [sym_future_import_statement] = STATE(1369), + [sym_import_from_statement] = STATE(1369), + [sym_print_statement] = STATE(1369), + [sym_assert_statement] = STATE(1369), + [sym_expression_statement] = STATE(1369), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1369), + [sym_delete_statement] = STATE(1369), + [sym_raise_statement] = STATE(1369), + [sym_pass_statement] = STATE(1369), + [sym_break_statement] = STATE(1369), + [sym_continue_statement] = STATE(1369), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1369), + [sym_nonlocal_statement] = STATE(1369), + [sym_exec_statement] = STATE(1369), + [sym_type_alias_statement] = STATE(1369), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -23143,8 +22050,8 @@ 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_async] = ACTIONS(307), - [anon_sym_match] = ACTIONS(307), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -23167,1195 +22074,1444 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [134] = { - [sym_primary_expression] = STATE(709), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_attribute] = STATE(773), - [sym_subscript] = STATE(773), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym_primary_expression] = STATE(711), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_attribute] = STATE(760), + [sym_subscript] = STATE(760), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(77), - [anon_sym_DOT] = ACTIONS(260), - [anon_sym_LPAREN] = ACTIONS(561), - [anon_sym_COMMA] = ACTIONS(265), - [anon_sym_STAR] = ACTIONS(260), - [anon_sym_print] = ACTIONS(563), - [anon_sym_GT_GT] = ACTIONS(260), - [anon_sym_COLON_EQ] = ACTIONS(273), - [anon_sym_if] = ACTIONS(260), - [anon_sym_COLON] = ACTIONS(275), - [anon_sym_async] = ACTIONS(563), - [anon_sym_in] = ACTIONS(260), - [anon_sym_match] = ACTIONS(563), - [anon_sym_PIPE] = ACTIONS(260), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_PLUS] = ACTIONS(565), - [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_DOT] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_COMMA] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(265), + [anon_sym_print] = ACTIONS(570), + [anon_sym_GT_GT] = ACTIONS(265), + [anon_sym_COLON_EQ] = ACTIONS(278), + [anon_sym_if] = ACTIONS(265), + [anon_sym_COLON] = ACTIONS(280), + [anon_sym_async] = ACTIONS(570), + [anon_sym_in] = ACTIONS(265), + [anon_sym_match] = ACTIONS(570), + [anon_sym_PIPE] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_LBRACK] = ACTIONS(574), [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(260), - [anon_sym_EQ] = ACTIONS(275), - [anon_sym_exec] = ACTIONS(563), - [anon_sym_type] = ACTIONS(563), - [anon_sym_AT] = ACTIONS(260), - [anon_sym_not] = ACTIONS(260), - [anon_sym_and] = ACTIONS(260), - [anon_sym_or] = ACTIONS(260), - [anon_sym_SLASH] = ACTIONS(260), - [anon_sym_PERCENT] = ACTIONS(260), - [anon_sym_SLASH_SLASH] = ACTIONS(260), - [anon_sym_AMP] = ACTIONS(260), - [anon_sym_CARET] = ACTIONS(260), - [anon_sym_LT_LT] = ACTIONS(260), + [anon_sym_STAR_STAR] = ACTIONS(265), + [anon_sym_EQ] = ACTIONS(280), + [anon_sym_exec] = ACTIONS(570), + [anon_sym_type] = ACTIONS(570), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_not] = ACTIONS(265), + [anon_sym_and] = ACTIONS(265), + [anon_sym_or] = ACTIONS(265), + [anon_sym_SLASH] = ACTIONS(265), + [anon_sym_PERCENT] = ACTIONS(265), + [anon_sym_SLASH_SLASH] = ACTIONS(265), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_CARET] = ACTIONS(265), + [anon_sym_LT_LT] = ACTIONS(265), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(260), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(260), - [anon_sym_LT_GT] = ACTIONS(293), - [anon_sym_is] = ACTIONS(260), - [anon_sym_PLUS_EQ] = ACTIONS(297), - [anon_sym_DASH_EQ] = ACTIONS(297), - [anon_sym_STAR_EQ] = ACTIONS(297), - [anon_sym_SLASH_EQ] = ACTIONS(297), - [anon_sym_AT_EQ] = ACTIONS(297), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(297), - [anon_sym_PERCENT_EQ] = ACTIONS(297), - [anon_sym_STAR_STAR_EQ] = ACTIONS(297), - [anon_sym_GT_GT_EQ] = ACTIONS(297), - [anon_sym_LT_LT_EQ] = ACTIONS(297), - [anon_sym_AMP_EQ] = ACTIONS(297), - [anon_sym_CARET_EQ] = ACTIONS(297), - [anon_sym_PIPE_EQ] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(265), + [anon_sym_LT_EQ] = ACTIONS(298), + [anon_sym_EQ_EQ] = ACTIONS(298), + [anon_sym_BANG_EQ] = ACTIONS(298), + [anon_sym_GT_EQ] = ACTIONS(298), + [anon_sym_GT] = ACTIONS(265), + [anon_sym_LT_GT] = ACTIONS(298), + [anon_sym_is] = ACTIONS(265), + [anon_sym_PLUS_EQ] = ACTIONS(302), + [anon_sym_DASH_EQ] = ACTIONS(302), + [anon_sym_STAR_EQ] = ACTIONS(302), + [anon_sym_SLASH_EQ] = ACTIONS(302), + [anon_sym_AT_EQ] = ACTIONS(302), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(302), + [anon_sym_PERCENT_EQ] = ACTIONS(302), + [anon_sym_STAR_STAR_EQ] = ACTIONS(302), + [anon_sym_GT_GT_EQ] = ACTIONS(302), + [anon_sym_LT_LT_EQ] = ACTIONS(302), + [anon_sym_AMP_EQ] = ACTIONS(302), + [anon_sym_CARET_EQ] = ACTIONS(302), + [anon_sym_PIPE_EQ] = ACTIONS(302), [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(569), + [anon_sym_await] = ACTIONS(576), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__semicolon] = ACTIONS(293), - [sym__newline] = ACTIONS(293), + [sym__semicolon] = ACTIONS(298), + [sym__newline] = ACTIONS(298), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [135] = { - [sym_primary_expression] = STATE(631), - [sym_binary_operator] = STATE(589), - [sym_unary_operator] = STATE(589), - [sym_attribute] = STATE(589), - [sym_subscript] = STATE(589), - [sym_call] = STATE(589), - [sym_list] = STATE(589), - [sym_set] = STATE(589), - [sym_tuple] = STATE(589), - [sym_dictionary] = STATE(589), - [sym_list_comprehension] = STATE(589), - [sym_dictionary_comprehension] = STATE(589), - [sym_set_comprehension] = STATE(589), - [sym_generator_expression] = STATE(589), - [sym_parenthesized_expression] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string] = STATE(565), - [sym_await] = STATE(589), - [sym_identifier] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(260), - [anon_sym_LPAREN] = ACTIONS(571), - [anon_sym_RPAREN] = ACTIONS(573), - [anon_sym_COMMA] = ACTIONS(573), - [anon_sym_STAR] = ACTIONS(260), - [anon_sym_print] = ACTIONS(576), - [anon_sym_GT_GT] = ACTIONS(260), - [anon_sym_COLON_EQ] = ACTIONS(578), - [anon_sym_if] = ACTIONS(260), - [anon_sym_COLON] = ACTIONS(580), - [anon_sym_async] = ACTIONS(576), - [anon_sym_in] = ACTIONS(260), - [anon_sym_match] = ACTIONS(576), - [anon_sym_PIPE] = ACTIONS(260), - [anon_sym_DASH] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(584), - [anon_sym_RBRACK] = ACTIONS(573), - [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR_STAR] = ACTIONS(260), - [anon_sym_EQ] = ACTIONS(580), - [anon_sym_exec] = ACTIONS(576), - [anon_sym_type] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(260), - [anon_sym_not] = ACTIONS(260), - [anon_sym_and] = ACTIONS(260), - [anon_sym_or] = ACTIONS(260), - [anon_sym_SLASH] = ACTIONS(260), - [anon_sym_PERCENT] = ACTIONS(260), - [anon_sym_SLASH_SLASH] = ACTIONS(260), - [anon_sym_AMP] = ACTIONS(260), - [anon_sym_CARET] = ACTIONS(260), - [anon_sym_LT_LT] = ACTIONS(260), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(260), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(260), - [anon_sym_LT_GT] = ACTIONS(293), - [anon_sym_is] = ACTIONS(260), - [anon_sym_PLUS_EQ] = ACTIONS(586), - [anon_sym_DASH_EQ] = ACTIONS(586), - [anon_sym_STAR_EQ] = ACTIONS(586), - [anon_sym_SLASH_EQ] = ACTIONS(586), - [anon_sym_AT_EQ] = ACTIONS(586), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(586), - [anon_sym_PERCENT_EQ] = ACTIONS(586), - [anon_sym_STAR_STAR_EQ] = ACTIONS(586), - [anon_sym_GT_GT_EQ] = ACTIONS(586), - [anon_sym_LT_LT_EQ] = ACTIONS(586), - [anon_sym_AMP_EQ] = ACTIONS(586), - [anon_sym_CARET_EQ] = ACTIONS(586), - [anon_sym_PIPE_EQ] = ACTIONS(586), - [sym_ellipsis] = ACTIONS(299), - [sym_integer] = ACTIONS(301), - [sym_float] = ACTIONS(299), - [anon_sym_await] = ACTIONS(588), - [sym_true] = ACTIONS(301), - [sym_false] = ACTIONS(301), - [sym_none] = ACTIONS(301), + [sym_primary_expression] = STATE(669), + [sym_binary_operator] = STATE(649), + [sym_unary_operator] = STATE(649), + [sym_attribute] = STATE(649), + [sym_subscript] = STATE(649), + [sym_call] = STATE(649), + [sym_list] = STATE(649), + [sym_set] = STATE(649), + [sym_tuple] = STATE(649), + [sym_dictionary] = STATE(649), + [sym_list_comprehension] = STATE(649), + [sym_dictionary_comprehension] = STATE(649), + [sym_set_comprehension] = STATE(649), + [sym_generator_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string] = STATE(569), + [sym_concatenated_template_string] = STATE(649), + [sym_template_string] = STATE(570), + [sym_await] = STATE(649), + [sym_identifier] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(578), + [anon_sym_RPAREN] = ACTIONS(580), + [anon_sym_COMMA] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(265), + [anon_sym_print] = ACTIONS(583), + [anon_sym_GT_GT] = ACTIONS(265), + [anon_sym_COLON_EQ] = ACTIONS(585), + [anon_sym_if] = ACTIONS(265), + [anon_sym_COLON] = ACTIONS(587), + [anon_sym_async] = ACTIONS(583), + [anon_sym_in] = ACTIONS(265), + [anon_sym_match] = ACTIONS(583), + [anon_sym_PIPE] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(591), + [anon_sym_RBRACK] = ACTIONS(580), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_STAR_STAR] = ACTIONS(265), + [anon_sym_EQ] = ACTIONS(587), + [anon_sym_exec] = ACTIONS(583), + [anon_sym_type] = ACTIONS(583), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_not] = ACTIONS(265), + [anon_sym_and] = ACTIONS(265), + [anon_sym_or] = ACTIONS(265), + [anon_sym_SLASH] = ACTIONS(265), + [anon_sym_PERCENT] = ACTIONS(265), + [anon_sym_SLASH_SLASH] = ACTIONS(265), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_CARET] = ACTIONS(265), + [anon_sym_LT_LT] = ACTIONS(265), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_LT] = ACTIONS(265), + [anon_sym_LT_EQ] = ACTIONS(298), + [anon_sym_EQ_EQ] = ACTIONS(298), + [anon_sym_BANG_EQ] = ACTIONS(298), + [anon_sym_GT_EQ] = ACTIONS(298), + [anon_sym_GT] = ACTIONS(265), + [anon_sym_LT_GT] = ACTIONS(298), + [anon_sym_is] = ACTIONS(265), + [anon_sym_PLUS_EQ] = ACTIONS(593), + [anon_sym_DASH_EQ] = ACTIONS(593), + [anon_sym_STAR_EQ] = ACTIONS(593), + [anon_sym_SLASH_EQ] = ACTIONS(593), + [anon_sym_AT_EQ] = ACTIONS(593), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(593), + [anon_sym_PERCENT_EQ] = ACTIONS(593), + [anon_sym_STAR_STAR_EQ] = ACTIONS(593), + [anon_sym_GT_GT_EQ] = ACTIONS(593), + [anon_sym_LT_LT_EQ] = ACTIONS(593), + [anon_sym_AMP_EQ] = ACTIONS(593), + [anon_sym_CARET_EQ] = ACTIONS(593), + [anon_sym_PIPE_EQ] = ACTIONS(593), + [sym_ellipsis] = ACTIONS(304), + [sym_integer] = ACTIONS(306), + [sym_float] = ACTIONS(304), + [anon_sym_await] = ACTIONS(595), + [sym_true] = ACTIONS(306), + [sym_false] = ACTIONS(306), + [sym_none] = ACTIONS(306), [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(305), + [sym__string_start] = ACTIONS(310), + [sym__template_string_start] = ACTIONS(312), }, [136] = { - [sym_primary_expression] = STATE(631), - [sym_binary_operator] = STATE(589), - [sym_unary_operator] = STATE(589), - [sym_attribute] = STATE(589), - [sym_subscript] = STATE(589), - [sym_call] = STATE(589), - [sym_list] = STATE(589), - [sym_set] = STATE(589), - [sym_tuple] = STATE(589), - [sym_dictionary] = STATE(589), - [sym_list_comprehension] = STATE(589), - [sym_dictionary_comprehension] = STATE(589), - [sym_set_comprehension] = STATE(589), - [sym_generator_expression] = STATE(589), - [sym_parenthesized_expression] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string] = STATE(565), - [sym_await] = STATE(589), - [sym_identifier] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(260), - [anon_sym_LPAREN] = ACTIONS(571), - [anon_sym_RPAREN] = ACTIONS(293), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(260), - [anon_sym_print] = ACTIONS(576), - [anon_sym_GT_GT] = ACTIONS(293), - [anon_sym_COLON_EQ] = ACTIONS(578), - [anon_sym_if] = ACTIONS(260), - [anon_sym_COLON] = ACTIONS(260), - [anon_sym_else] = ACTIONS(260), - [anon_sym_async] = ACTIONS(576), - [anon_sym_in] = ACTIONS(260), - [anon_sym_match] = ACTIONS(576), - [anon_sym_PIPE] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(291), - [anon_sym_PLUS] = ACTIONS(291), - [anon_sym_LBRACK] = ACTIONS(584), - [anon_sym_RBRACK] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_RBRACE] = ACTIONS(293), - [anon_sym_STAR_STAR] = ACTIONS(293), - [anon_sym_EQ] = ACTIONS(260), - [anon_sym_exec] = ACTIONS(576), - [anon_sym_type] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(293), - [anon_sym_not] = ACTIONS(260), - [anon_sym_and] = ACTIONS(260), - [anon_sym_or] = ACTIONS(260), - [anon_sym_SLASH] = ACTIONS(260), - [anon_sym_PERCENT] = ACTIONS(293), - [anon_sym_SLASH_SLASH] = ACTIONS(293), - [anon_sym_AMP] = ACTIONS(293), - [anon_sym_CARET] = ACTIONS(293), - [anon_sym_LT_LT] = ACTIONS(293), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(260), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(260), - [anon_sym_LT_GT] = ACTIONS(293), - [anon_sym_is] = ACTIONS(260), - [sym_ellipsis] = ACTIONS(299), - [sym_type_conversion] = ACTIONS(293), - [sym_integer] = ACTIONS(301), - [sym_float] = ACTIONS(299), - [anon_sym_await] = ACTIONS(588), - [sym_true] = ACTIONS(301), - [sym_false] = ACTIONS(301), - [sym_none] = ACTIONS(301), + [sym_primary_expression] = STATE(669), + [sym_binary_operator] = STATE(649), + [sym_unary_operator] = STATE(649), + [sym_attribute] = STATE(649), + [sym_subscript] = STATE(649), + [sym_call] = STATE(649), + [sym_list] = STATE(649), + [sym_set] = STATE(649), + [sym_tuple] = STATE(649), + [sym_dictionary] = STATE(649), + [sym_list_comprehension] = STATE(649), + [sym_dictionary_comprehension] = STATE(649), + [sym_set_comprehension] = STATE(649), + [sym_generator_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string] = STATE(569), + [sym_concatenated_template_string] = STATE(649), + [sym_template_string] = STATE(570), + [sym_await] = STATE(649), + [sym_identifier] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(578), + [anon_sym_RPAREN] = ACTIONS(298), + [anon_sym_COMMA] = ACTIONS(298), + [anon_sym_STAR] = ACTIONS(265), + [anon_sym_print] = ACTIONS(583), + [anon_sym_GT_GT] = ACTIONS(298), + [anon_sym_COLON_EQ] = ACTIONS(585), + [anon_sym_if] = ACTIONS(265), + [anon_sym_COLON] = ACTIONS(265), + [anon_sym_else] = ACTIONS(265), + [anon_sym_async] = ACTIONS(583), + [anon_sym_in] = ACTIONS(265), + [anon_sym_match] = ACTIONS(583), + [anon_sym_PIPE] = ACTIONS(298), + [anon_sym_DASH] = ACTIONS(296), + [anon_sym_PLUS] = ACTIONS(296), + [anon_sym_LBRACK] = ACTIONS(591), + [anon_sym_RBRACK] = ACTIONS(298), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_RBRACE] = ACTIONS(298), + [anon_sym_STAR_STAR] = ACTIONS(298), + [anon_sym_EQ] = ACTIONS(265), + [anon_sym_exec] = ACTIONS(583), + [anon_sym_type] = ACTIONS(583), + [anon_sym_AT] = ACTIONS(298), + [anon_sym_not] = ACTIONS(265), + [anon_sym_and] = ACTIONS(265), + [anon_sym_or] = ACTIONS(265), + [anon_sym_SLASH] = ACTIONS(265), + [anon_sym_PERCENT] = ACTIONS(298), + [anon_sym_SLASH_SLASH] = ACTIONS(298), + [anon_sym_AMP] = ACTIONS(298), + [anon_sym_CARET] = ACTIONS(298), + [anon_sym_LT_LT] = ACTIONS(298), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_LT] = ACTIONS(265), + [anon_sym_LT_EQ] = ACTIONS(298), + [anon_sym_EQ_EQ] = ACTIONS(298), + [anon_sym_BANG_EQ] = ACTIONS(298), + [anon_sym_GT_EQ] = ACTIONS(298), + [anon_sym_GT] = ACTIONS(265), + [anon_sym_LT_GT] = ACTIONS(298), + [anon_sym_is] = ACTIONS(265), + [sym_ellipsis] = ACTIONS(304), + [sym_type_conversion] = ACTIONS(298), + [sym_integer] = ACTIONS(306), + [sym_float] = ACTIONS(304), + [anon_sym_await] = ACTIONS(595), + [sym_true] = ACTIONS(306), + [sym_false] = ACTIONS(306), + [sym_none] = ACTIONS(306), [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(305), + [sym__string_start] = ACTIONS(310), + [sym__template_string_start] = ACTIONS(312), }, [137] = { - [sym_primary_expression] = STATE(629), - [sym_binary_operator] = STATE(589), - [sym_unary_operator] = STATE(589), - [sym_attribute] = STATE(589), - [sym_subscript] = STATE(589), - [sym_call] = STATE(589), - [sym_list] = STATE(589), - [sym_set] = STATE(589), - [sym_tuple] = STATE(589), - [sym_dictionary] = STATE(589), - [sym_list_comprehension] = STATE(589), - [sym_dictionary_comprehension] = STATE(589), - [sym_set_comprehension] = STATE(589), - [sym_generator_expression] = STATE(589), - [sym_parenthesized_expression] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string] = STATE(565), - [sym_await] = STATE(589), - [sym_identifier] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(260), - [anon_sym_LPAREN] = ACTIONS(590), - [anon_sym_RPAREN] = ACTIONS(293), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_as] = ACTIONS(260), - [anon_sym_STAR] = ACTIONS(260), - [anon_sym_print] = ACTIONS(576), - [anon_sym_GT_GT] = ACTIONS(293), - [anon_sym_COLON_EQ] = ACTIONS(592), - [anon_sym_if] = ACTIONS(260), - [anon_sym_COLON] = ACTIONS(260), - [anon_sym_async] = ACTIONS(576), - [anon_sym_for] = ACTIONS(260), - [anon_sym_in] = ACTIONS(260), - [anon_sym_match] = ACTIONS(576), - [anon_sym_PIPE] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_RBRACK] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_RBRACE] = ACTIONS(293), - [anon_sym_STAR_STAR] = ACTIONS(293), - [anon_sym_exec] = ACTIONS(576), - [anon_sym_type] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(293), - [anon_sym_not] = ACTIONS(260), - [anon_sym_and] = ACTIONS(260), - [anon_sym_or] = ACTIONS(260), - [anon_sym_SLASH] = ACTIONS(260), - [anon_sym_PERCENT] = ACTIONS(293), - [anon_sym_SLASH_SLASH] = ACTIONS(293), - [anon_sym_AMP] = ACTIONS(293), - [anon_sym_CARET] = ACTIONS(293), - [anon_sym_LT_LT] = ACTIONS(293), - [anon_sym_TILDE] = ACTIONS(594), - [anon_sym_LT] = ACTIONS(260), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(260), - [anon_sym_LT_GT] = ACTIONS(293), - [anon_sym_is] = ACTIONS(260), - [sym_ellipsis] = ACTIONS(299), - [sym_integer] = ACTIONS(301), - [sym_float] = ACTIONS(299), - [anon_sym_await] = ACTIONS(598), - [sym_true] = ACTIONS(301), - [sym_false] = ACTIONS(301), - [sym_none] = ACTIONS(301), + [sym_primary_expression] = STATE(669), + [sym_binary_operator] = STATE(649), + [sym_unary_operator] = STATE(649), + [sym_attribute] = STATE(649), + [sym_subscript] = STATE(649), + [sym_call] = STATE(649), + [sym_list] = STATE(649), + [sym_set] = STATE(649), + [sym_tuple] = STATE(649), + [sym_dictionary] = STATE(649), + [sym_list_comprehension] = STATE(649), + [sym_dictionary_comprehension] = STATE(649), + [sym_set_comprehension] = STATE(649), + [sym_generator_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string] = STATE(569), + [sym_concatenated_template_string] = STATE(649), + [sym_template_string] = STATE(570), + [sym_await] = STATE(649), + [sym_identifier] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(578), + [anon_sym_RPAREN] = ACTIONS(298), + [anon_sym_COMMA] = ACTIONS(298), + [anon_sym_STAR] = ACTIONS(265), + [anon_sym_print] = ACTIONS(583), + [anon_sym_GT_GT] = ACTIONS(298), + [anon_sym_if] = ACTIONS(265), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_else] = ACTIONS(265), + [anon_sym_async] = ACTIONS(583), + [anon_sym_in] = ACTIONS(265), + [anon_sym_match] = ACTIONS(583), + [anon_sym_PIPE] = ACTIONS(298), + [anon_sym_DASH] = ACTIONS(296), + [anon_sym_PLUS] = ACTIONS(296), + [anon_sym_LBRACK] = ACTIONS(591), + [anon_sym_RBRACK] = ACTIONS(298), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_RBRACE] = ACTIONS(298), + [anon_sym_STAR_STAR] = ACTIONS(298), + [anon_sym_EQ] = ACTIONS(265), + [anon_sym_exec] = ACTIONS(583), + [anon_sym_type] = ACTIONS(583), + [anon_sym_AT] = ACTIONS(298), + [anon_sym_not] = ACTIONS(265), + [anon_sym_and] = ACTIONS(265), + [anon_sym_or] = ACTIONS(265), + [anon_sym_SLASH] = ACTIONS(265), + [anon_sym_PERCENT] = ACTIONS(298), + [anon_sym_SLASH_SLASH] = ACTIONS(298), + [anon_sym_AMP] = ACTIONS(298), + [anon_sym_CARET] = ACTIONS(298), + [anon_sym_LT_LT] = ACTIONS(298), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_LT] = ACTIONS(265), + [anon_sym_LT_EQ] = ACTIONS(298), + [anon_sym_EQ_EQ] = ACTIONS(298), + [anon_sym_BANG_EQ] = ACTIONS(298), + [anon_sym_GT_EQ] = ACTIONS(298), + [anon_sym_GT] = ACTIONS(265), + [anon_sym_LT_GT] = ACTIONS(298), + [anon_sym_is] = ACTIONS(265), + [sym_ellipsis] = ACTIONS(304), + [sym_type_conversion] = ACTIONS(298), + [sym_integer] = ACTIONS(306), + [sym_float] = ACTIONS(304), + [anon_sym_await] = ACTIONS(595), + [sym_true] = ACTIONS(306), + [sym_false] = ACTIONS(306), + [sym_none] = ACTIONS(306), [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(305), + [sym__string_start] = ACTIONS(310), + [sym__template_string_start] = ACTIONS(312), }, [138] = { - [sym_primary_expression] = STATE(631), - [sym_binary_operator] = STATE(589), - [sym_unary_operator] = STATE(589), - [sym_attribute] = STATE(589), - [sym_subscript] = STATE(589), - [sym_call] = STATE(589), - [sym_list] = STATE(589), - [sym_set] = STATE(589), - [sym_tuple] = STATE(589), - [sym_dictionary] = STATE(589), - [sym_list_comprehension] = STATE(589), - [sym_dictionary_comprehension] = STATE(589), - [sym_set_comprehension] = STATE(589), - [sym_generator_expression] = STATE(589), - [sym_parenthesized_expression] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string] = STATE(565), - [sym_await] = STATE(589), - [sym_identifier] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(260), - [anon_sym_LPAREN] = ACTIONS(571), - [anon_sym_RPAREN] = ACTIONS(293), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(260), - [anon_sym_print] = ACTIONS(576), - [anon_sym_GT_GT] = ACTIONS(293), - [anon_sym_if] = ACTIONS(260), - [anon_sym_COLON] = ACTIONS(293), - [anon_sym_else] = ACTIONS(260), - [anon_sym_async] = ACTIONS(576), - [anon_sym_in] = ACTIONS(260), - [anon_sym_match] = ACTIONS(576), - [anon_sym_PIPE] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(291), - [anon_sym_PLUS] = ACTIONS(291), - [anon_sym_LBRACK] = ACTIONS(584), - [anon_sym_RBRACK] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_RBRACE] = ACTIONS(293), - [anon_sym_STAR_STAR] = ACTIONS(293), - [anon_sym_EQ] = ACTIONS(260), - [anon_sym_exec] = ACTIONS(576), - [anon_sym_type] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(293), - [anon_sym_not] = ACTIONS(260), - [anon_sym_and] = ACTIONS(260), - [anon_sym_or] = ACTIONS(260), - [anon_sym_SLASH] = ACTIONS(260), - [anon_sym_PERCENT] = ACTIONS(293), - [anon_sym_SLASH_SLASH] = ACTIONS(293), - [anon_sym_AMP] = ACTIONS(293), - [anon_sym_CARET] = ACTIONS(293), - [anon_sym_LT_LT] = ACTIONS(293), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(260), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(260), - [anon_sym_LT_GT] = ACTIONS(293), - [anon_sym_is] = ACTIONS(260), - [sym_ellipsis] = ACTIONS(299), - [sym_type_conversion] = ACTIONS(293), - [sym_integer] = ACTIONS(301), - [sym_float] = ACTIONS(299), - [anon_sym_await] = ACTIONS(588), - [sym_true] = ACTIONS(301), - [sym_false] = ACTIONS(301), - [sym_none] = ACTIONS(301), + [sym_primary_expression] = STATE(675), + [sym_binary_operator] = STATE(649), + [sym_unary_operator] = STATE(649), + [sym_attribute] = STATE(649), + [sym_subscript] = STATE(649), + [sym_call] = STATE(649), + [sym_list] = STATE(649), + [sym_set] = STATE(649), + [sym_tuple] = STATE(649), + [sym_dictionary] = STATE(649), + [sym_list_comprehension] = STATE(649), + [sym_dictionary_comprehension] = STATE(649), + [sym_set_comprehension] = STATE(649), + [sym_generator_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string] = STATE(569), + [sym_concatenated_template_string] = STATE(649), + [sym_template_string] = STATE(570), + [sym_await] = STATE(649), + [sym_identifier] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(597), + [anon_sym_RPAREN] = ACTIONS(298), + [anon_sym_COMMA] = ACTIONS(298), + [anon_sym_as] = ACTIONS(265), + [anon_sym_STAR] = ACTIONS(265), + [anon_sym_print] = ACTIONS(583), + [anon_sym_GT_GT] = ACTIONS(298), + [anon_sym_COLON_EQ] = ACTIONS(599), + [anon_sym_if] = ACTIONS(265), + [anon_sym_COLON] = ACTIONS(265), + [anon_sym_async] = ACTIONS(583), + [anon_sym_for] = ACTIONS(265), + [anon_sym_in] = ACTIONS(265), + [anon_sym_match] = ACTIONS(583), + [anon_sym_PIPE] = ACTIONS(298), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_LBRACK] = ACTIONS(603), + [anon_sym_RBRACK] = ACTIONS(298), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_RBRACE] = ACTIONS(298), + [anon_sym_STAR_STAR] = ACTIONS(298), + [anon_sym_exec] = ACTIONS(583), + [anon_sym_type] = ACTIONS(583), + [anon_sym_AT] = ACTIONS(298), + [anon_sym_not] = ACTIONS(265), + [anon_sym_and] = ACTIONS(265), + [anon_sym_or] = ACTIONS(265), + [anon_sym_SLASH] = ACTIONS(265), + [anon_sym_PERCENT] = ACTIONS(298), + [anon_sym_SLASH_SLASH] = ACTIONS(298), + [anon_sym_AMP] = ACTIONS(298), + [anon_sym_CARET] = ACTIONS(298), + [anon_sym_LT_LT] = ACTIONS(298), + [anon_sym_TILDE] = ACTIONS(601), + [anon_sym_LT] = ACTIONS(265), + [anon_sym_LT_EQ] = ACTIONS(298), + [anon_sym_EQ_EQ] = ACTIONS(298), + [anon_sym_BANG_EQ] = ACTIONS(298), + [anon_sym_GT_EQ] = ACTIONS(298), + [anon_sym_GT] = ACTIONS(265), + [anon_sym_LT_GT] = ACTIONS(298), + [anon_sym_is] = ACTIONS(265), + [sym_ellipsis] = ACTIONS(304), + [sym_integer] = ACTIONS(306), + [sym_float] = ACTIONS(304), + [anon_sym_await] = ACTIONS(605), + [sym_true] = ACTIONS(306), + [sym_false] = ACTIONS(306), + [sym_none] = ACTIONS(306), [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(305), + [sym__string_start] = ACTIONS(310), + [sym__template_string_start] = ACTIONS(312), }, [139] = { - [sym_primary_expression] = STATE(629), - [sym_binary_operator] = STATE(589), - [sym_unary_operator] = STATE(589), - [sym_attribute] = STATE(589), - [sym_subscript] = STATE(589), - [sym_call] = STATE(589), - [sym_list] = STATE(589), - [sym_set] = STATE(589), - [sym_tuple] = STATE(589), - [sym_dictionary] = STATE(589), - [sym_list_comprehension] = STATE(589), - [sym_dictionary_comprehension] = STATE(589), - [sym_set_comprehension] = STATE(589), - [sym_generator_expression] = STATE(589), - [sym_parenthesized_expression] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string] = STATE(565), - [sym_await] = STATE(589), - [sym_identifier] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(260), - [anon_sym_LPAREN] = ACTIONS(590), - [anon_sym_RPAREN] = ACTIONS(293), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_as] = ACTIONS(260), - [anon_sym_STAR] = ACTIONS(260), - [anon_sym_print] = ACTIONS(576), - [anon_sym_GT_GT] = ACTIONS(293), - [anon_sym_if] = ACTIONS(260), - [anon_sym_COLON] = ACTIONS(293), - [anon_sym_async] = ACTIONS(576), - [anon_sym_for] = ACTIONS(260), - [anon_sym_in] = ACTIONS(260), - [anon_sym_match] = ACTIONS(576), - [anon_sym_PIPE] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_RBRACK] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_RBRACE] = ACTIONS(293), - [anon_sym_STAR_STAR] = ACTIONS(293), - [anon_sym_exec] = ACTIONS(576), - [anon_sym_type] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(293), - [anon_sym_not] = ACTIONS(260), - [anon_sym_and] = ACTIONS(260), - [anon_sym_or] = ACTIONS(260), - [anon_sym_SLASH] = ACTIONS(260), - [anon_sym_PERCENT] = ACTIONS(293), - [anon_sym_SLASH_SLASH] = ACTIONS(293), - [anon_sym_AMP] = ACTIONS(293), - [anon_sym_CARET] = ACTIONS(293), - [anon_sym_LT_LT] = ACTIONS(293), - [anon_sym_TILDE] = ACTIONS(594), - [anon_sym_LT] = ACTIONS(260), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(260), - [anon_sym_LT_GT] = ACTIONS(293), - [anon_sym_is] = ACTIONS(260), - [sym_ellipsis] = ACTIONS(299), - [sym_integer] = ACTIONS(301), - [sym_float] = ACTIONS(299), - [anon_sym_await] = ACTIONS(598), - [sym_true] = ACTIONS(301), - [sym_false] = ACTIONS(301), - [sym_none] = ACTIONS(301), + [sym_primary_expression] = STATE(675), + [sym_binary_operator] = STATE(649), + [sym_unary_operator] = STATE(649), + [sym_attribute] = STATE(649), + [sym_subscript] = STATE(649), + [sym_call] = STATE(649), + [sym_list] = STATE(649), + [sym_set] = STATE(649), + [sym_tuple] = STATE(649), + [sym_dictionary] = STATE(649), + [sym_list_comprehension] = STATE(649), + [sym_dictionary_comprehension] = STATE(649), + [sym_set_comprehension] = STATE(649), + [sym_generator_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string] = STATE(569), + [sym_concatenated_template_string] = STATE(649), + [sym_template_string] = STATE(570), + [sym_await] = STATE(649), + [sym_identifier] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(597), + [anon_sym_RPAREN] = ACTIONS(298), + [anon_sym_COMMA] = ACTIONS(298), + [anon_sym_as] = ACTIONS(265), + [anon_sym_STAR] = ACTIONS(265), + [anon_sym_print] = ACTIONS(583), + [anon_sym_GT_GT] = ACTIONS(298), + [anon_sym_if] = ACTIONS(265), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_async] = ACTIONS(583), + [anon_sym_for] = ACTIONS(265), + [anon_sym_in] = ACTIONS(265), + [anon_sym_match] = ACTIONS(583), + [anon_sym_PIPE] = ACTIONS(298), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_LBRACK] = ACTIONS(603), + [anon_sym_RBRACK] = ACTIONS(298), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_RBRACE] = ACTIONS(298), + [anon_sym_STAR_STAR] = ACTIONS(298), + [anon_sym_exec] = ACTIONS(583), + [anon_sym_type] = ACTIONS(583), + [anon_sym_AT] = ACTIONS(298), + [anon_sym_not] = ACTIONS(265), + [anon_sym_and] = ACTIONS(265), + [anon_sym_or] = ACTIONS(265), + [anon_sym_SLASH] = ACTIONS(265), + [anon_sym_PERCENT] = ACTIONS(298), + [anon_sym_SLASH_SLASH] = ACTIONS(298), + [anon_sym_AMP] = ACTIONS(298), + [anon_sym_CARET] = ACTIONS(298), + [anon_sym_LT_LT] = ACTIONS(298), + [anon_sym_TILDE] = ACTIONS(601), + [anon_sym_LT] = ACTIONS(265), + [anon_sym_LT_EQ] = ACTIONS(298), + [anon_sym_EQ_EQ] = ACTIONS(298), + [anon_sym_BANG_EQ] = ACTIONS(298), + [anon_sym_GT_EQ] = ACTIONS(298), + [anon_sym_GT] = ACTIONS(265), + [anon_sym_LT_GT] = ACTIONS(298), + [anon_sym_is] = ACTIONS(265), + [sym_ellipsis] = ACTIONS(304), + [sym_integer] = ACTIONS(306), + [sym_float] = ACTIONS(304), + [anon_sym_await] = ACTIONS(605), + [sym_true] = ACTIONS(306), + [sym_false] = ACTIONS(306), + [sym_none] = ACTIONS(306), [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(305), + [sym__string_start] = ACTIONS(310), + [sym__template_string_start] = ACTIONS(312), }, [140] = { - [sym_primary_expression] = STATE(631), - [sym_binary_operator] = STATE(589), - [sym_unary_operator] = STATE(589), - [sym_attribute] = STATE(589), - [sym_subscript] = STATE(589), - [sym_call] = STATE(589), - [sym_list] = STATE(589), - [sym_set] = STATE(589), - [sym_tuple] = STATE(589), - [sym_dictionary] = STATE(589), - [sym_list_comprehension] = STATE(589), - [sym_dictionary_comprehension] = STATE(589), - [sym_set_comprehension] = STATE(589), - [sym_generator_expression] = STATE(589), - [sym_parenthesized_expression] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string] = STATE(565), - [sym_await] = STATE(589), - [sym_identifier] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(260), - [anon_sym_LPAREN] = ACTIONS(571), - [anon_sym_RPAREN] = ACTIONS(586), - [anon_sym_COMMA] = ACTIONS(586), - [anon_sym_STAR] = ACTIONS(260), - [anon_sym_print] = ACTIONS(576), - [anon_sym_GT_GT] = ACTIONS(260), - [anon_sym_COLON] = ACTIONS(586), - [anon_sym_async] = ACTIONS(576), - [anon_sym_in] = ACTIONS(580), - [anon_sym_match] = ACTIONS(576), - [anon_sym_PIPE] = ACTIONS(260), - [anon_sym_DASH] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(584), - [anon_sym_RBRACK] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR_STAR] = ACTIONS(260), - [anon_sym_EQ] = ACTIONS(586), - [anon_sym_exec] = ACTIONS(576), - [anon_sym_type] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(260), - [anon_sym_SLASH] = ACTIONS(260), - [anon_sym_PERCENT] = ACTIONS(260), - [anon_sym_SLASH_SLASH] = ACTIONS(260), - [anon_sym_AMP] = ACTIONS(260), - [anon_sym_CARET] = ACTIONS(260), - [anon_sym_LT_LT] = ACTIONS(260), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_PLUS_EQ] = ACTIONS(586), - [anon_sym_DASH_EQ] = ACTIONS(586), - [anon_sym_STAR_EQ] = ACTIONS(586), - [anon_sym_SLASH_EQ] = ACTIONS(586), - [anon_sym_AT_EQ] = ACTIONS(586), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(586), - [anon_sym_PERCENT_EQ] = ACTIONS(586), - [anon_sym_STAR_STAR_EQ] = ACTIONS(586), - [anon_sym_GT_GT_EQ] = ACTIONS(586), - [anon_sym_LT_LT_EQ] = ACTIONS(586), - [anon_sym_AMP_EQ] = ACTIONS(586), - [anon_sym_CARET_EQ] = ACTIONS(586), - [anon_sym_PIPE_EQ] = ACTIONS(586), - [sym_ellipsis] = ACTIONS(299), - [sym_integer] = ACTIONS(301), - [sym_float] = ACTIONS(299), - [anon_sym_await] = ACTIONS(588), - [sym_true] = ACTIONS(301), - [sym_false] = ACTIONS(301), - [sym_none] = ACTIONS(301), - [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(305), - }, - [141] = { - [sym_primary_expression] = STATE(631), - [sym_binary_operator] = STATE(589), - [sym_unary_operator] = STATE(589), - [sym_attribute] = STATE(589), - [sym_subscript] = STATE(589), - [sym_call] = STATE(589), - [sym_list] = STATE(589), - [sym_set] = STATE(589), - [sym_tuple] = STATE(589), - [sym_dictionary] = STATE(589), - [sym_list_comprehension] = STATE(589), - [sym_dictionary_comprehension] = STATE(589), - [sym_set_comprehension] = STATE(589), - [sym_generator_expression] = STATE(589), - [sym_parenthesized_expression] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string] = STATE(565), - [sym_await] = STATE(589), - [sym_identifier] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(260), - [anon_sym_LPAREN] = ACTIONS(571), - [anon_sym_RPAREN] = ACTIONS(297), - [anon_sym_COMMA] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(260), - [anon_sym_print] = ACTIONS(576), - [anon_sym_GT_GT] = ACTIONS(260), - [anon_sym_COLON] = ACTIONS(297), - [anon_sym_async] = ACTIONS(576), - [anon_sym_in] = ACTIONS(275), - [anon_sym_match] = ACTIONS(576), - [anon_sym_PIPE] = ACTIONS(260), - [anon_sym_DASH] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(584), - [anon_sym_RBRACK] = ACTIONS(297), - [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR_STAR] = ACTIONS(260), - [anon_sym_EQ] = ACTIONS(297), - [anon_sym_exec] = ACTIONS(576), - [anon_sym_type] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(260), - [anon_sym_SLASH] = ACTIONS(260), - [anon_sym_PERCENT] = ACTIONS(260), - [anon_sym_SLASH_SLASH] = ACTIONS(260), - [anon_sym_AMP] = ACTIONS(260), - [anon_sym_CARET] = ACTIONS(260), - [anon_sym_LT_LT] = ACTIONS(260), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_PLUS_EQ] = ACTIONS(297), - [anon_sym_DASH_EQ] = ACTIONS(297), - [anon_sym_STAR_EQ] = ACTIONS(297), - [anon_sym_SLASH_EQ] = ACTIONS(297), - [anon_sym_AT_EQ] = ACTIONS(297), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(297), - [anon_sym_PERCENT_EQ] = ACTIONS(297), - [anon_sym_STAR_STAR_EQ] = ACTIONS(297), - [anon_sym_GT_GT_EQ] = ACTIONS(297), - [anon_sym_LT_LT_EQ] = ACTIONS(297), - [anon_sym_AMP_EQ] = ACTIONS(297), - [anon_sym_CARET_EQ] = ACTIONS(297), - [anon_sym_PIPE_EQ] = ACTIONS(297), - [sym_ellipsis] = ACTIONS(299), - [sym_integer] = ACTIONS(301), - [sym_float] = ACTIONS(299), - [anon_sym_await] = ACTIONS(588), - [sym_true] = ACTIONS(301), - [sym_false] = ACTIONS(301), - [sym_none] = ACTIONS(301), - [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(305), - }, - [142] = { - [sym_primary_expression] = STATE(709), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_attribute] = STATE(773), - [sym_subscript] = STATE(773), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym_primary_expression] = STATE(711), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_attribute] = STATE(760), + [sym_subscript] = STATE(760), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(77), - [anon_sym_DOT] = ACTIONS(260), - [anon_sym_from] = ACTIONS(260), - [anon_sym_LPAREN] = ACTIONS(561), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(260), - [anon_sym_print] = ACTIONS(563), - [anon_sym_GT_GT] = ACTIONS(293), - [anon_sym_COLON_EQ] = ACTIONS(273), - [anon_sym_if] = ACTIONS(260), - [anon_sym_async] = ACTIONS(563), - [anon_sym_in] = ACTIONS(260), - [anon_sym_match] = ACTIONS(563), - [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_DOT] = ACTIONS(265), + [anon_sym_from] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_COMMA] = ACTIONS(298), + [anon_sym_STAR] = ACTIONS(265), + [anon_sym_print] = ACTIONS(570), + [anon_sym_GT_GT] = ACTIONS(298), + [anon_sym_COLON_EQ] = ACTIONS(278), + [anon_sym_if] = ACTIONS(265), + [anon_sym_async] = ACTIONS(570), + [anon_sym_in] = ACTIONS(265), + [anon_sym_match] = ACTIONS(570), + [anon_sym_PIPE] = ACTIONS(298), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_LBRACK] = ACTIONS(574), [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(293), - [anon_sym_EQ] = ACTIONS(260), - [anon_sym_exec] = ACTIONS(563), - [anon_sym_type] = ACTIONS(563), - [anon_sym_AT] = ACTIONS(293), - [anon_sym_not] = ACTIONS(260), - [anon_sym_and] = ACTIONS(260), - [anon_sym_or] = ACTIONS(260), - [anon_sym_SLASH] = ACTIONS(260), - [anon_sym_PERCENT] = ACTIONS(293), - [anon_sym_SLASH_SLASH] = ACTIONS(293), - [anon_sym_AMP] = ACTIONS(293), - [anon_sym_CARET] = ACTIONS(293), - [anon_sym_LT_LT] = ACTIONS(293), + [anon_sym_STAR_STAR] = ACTIONS(298), + [anon_sym_EQ] = ACTIONS(265), + [anon_sym_exec] = ACTIONS(570), + [anon_sym_type] = ACTIONS(570), + [anon_sym_AT] = ACTIONS(298), + [anon_sym_not] = ACTIONS(265), + [anon_sym_and] = ACTIONS(265), + [anon_sym_or] = ACTIONS(265), + [anon_sym_SLASH] = ACTIONS(265), + [anon_sym_PERCENT] = ACTIONS(298), + [anon_sym_SLASH_SLASH] = ACTIONS(298), + [anon_sym_AMP] = ACTIONS(298), + [anon_sym_CARET] = ACTIONS(298), + [anon_sym_LT_LT] = ACTIONS(298), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(260), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(260), - [anon_sym_LT_GT] = ACTIONS(293), - [anon_sym_is] = ACTIONS(260), + [anon_sym_LT] = ACTIONS(265), + [anon_sym_LT_EQ] = ACTIONS(298), + [anon_sym_EQ_EQ] = ACTIONS(298), + [anon_sym_BANG_EQ] = ACTIONS(298), + [anon_sym_GT_EQ] = ACTIONS(298), + [anon_sym_GT] = ACTIONS(265), + [anon_sym_LT_GT] = ACTIONS(298), + [anon_sym_is] = ACTIONS(265), [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(569), + [anon_sym_await] = ACTIONS(576), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__semicolon] = ACTIONS(293), - [sym__newline] = ACTIONS(293), + [sym__semicolon] = ACTIONS(298), + [sym__newline] = ACTIONS(298), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), + }, + [141] = { + [sym_primary_expression] = STATE(669), + [sym_binary_operator] = STATE(649), + [sym_unary_operator] = STATE(649), + [sym_attribute] = STATE(649), + [sym_subscript] = STATE(649), + [sym_call] = STATE(649), + [sym_list] = STATE(649), + [sym_set] = STATE(649), + [sym_tuple] = STATE(649), + [sym_dictionary] = STATE(649), + [sym_list_comprehension] = STATE(649), + [sym_dictionary_comprehension] = STATE(649), + [sym_set_comprehension] = STATE(649), + [sym_generator_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string] = STATE(569), + [sym_concatenated_template_string] = STATE(649), + [sym_template_string] = STATE(570), + [sym_await] = STATE(649), + [sym_identifier] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(578), + [anon_sym_RPAREN] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(302), + [anon_sym_STAR] = ACTIONS(265), + [anon_sym_print] = ACTIONS(583), + [anon_sym_GT_GT] = ACTIONS(265), + [anon_sym_COLON] = ACTIONS(302), + [anon_sym_async] = ACTIONS(583), + [anon_sym_in] = ACTIONS(280), + [anon_sym_match] = ACTIONS(583), + [anon_sym_PIPE] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(591), + [anon_sym_RBRACK] = ACTIONS(302), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_STAR_STAR] = ACTIONS(265), + [anon_sym_EQ] = ACTIONS(302), + [anon_sym_exec] = ACTIONS(583), + [anon_sym_type] = ACTIONS(583), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_SLASH] = ACTIONS(265), + [anon_sym_PERCENT] = ACTIONS(265), + [anon_sym_SLASH_SLASH] = ACTIONS(265), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_CARET] = ACTIONS(265), + [anon_sym_LT_LT] = ACTIONS(265), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_PLUS_EQ] = ACTIONS(302), + [anon_sym_DASH_EQ] = ACTIONS(302), + [anon_sym_STAR_EQ] = ACTIONS(302), + [anon_sym_SLASH_EQ] = ACTIONS(302), + [anon_sym_AT_EQ] = ACTIONS(302), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(302), + [anon_sym_PERCENT_EQ] = ACTIONS(302), + [anon_sym_STAR_STAR_EQ] = ACTIONS(302), + [anon_sym_GT_GT_EQ] = ACTIONS(302), + [anon_sym_LT_LT_EQ] = ACTIONS(302), + [anon_sym_AMP_EQ] = ACTIONS(302), + [anon_sym_CARET_EQ] = ACTIONS(302), + [anon_sym_PIPE_EQ] = ACTIONS(302), + [sym_ellipsis] = ACTIONS(304), + [sym_integer] = ACTIONS(306), + [sym_float] = ACTIONS(304), + [anon_sym_await] = ACTIONS(595), + [sym_true] = ACTIONS(306), + [sym_false] = ACTIONS(306), + [sym_none] = ACTIONS(306), + [sym_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(310), + [sym__template_string_start] = ACTIONS(312), + }, + [142] = { + [sym_primary_expression] = STATE(669), + [sym_binary_operator] = STATE(649), + [sym_unary_operator] = STATE(649), + [sym_attribute] = STATE(649), + [sym_subscript] = STATE(649), + [sym_call] = STATE(649), + [sym_list] = STATE(649), + [sym_set] = STATE(649), + [sym_tuple] = STATE(649), + [sym_dictionary] = STATE(649), + [sym_list_comprehension] = STATE(649), + [sym_dictionary_comprehension] = STATE(649), + [sym_set_comprehension] = STATE(649), + [sym_generator_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string] = STATE(569), + [sym_concatenated_template_string] = STATE(649), + [sym_template_string] = STATE(570), + [sym_await] = STATE(649), + [sym_identifier] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(578), + [anon_sym_RPAREN] = ACTIONS(593), + [anon_sym_COMMA] = ACTIONS(593), + [anon_sym_STAR] = ACTIONS(265), + [anon_sym_print] = ACTIONS(583), + [anon_sym_GT_GT] = ACTIONS(265), + [anon_sym_COLON] = ACTIONS(593), + [anon_sym_async] = ACTIONS(583), + [anon_sym_in] = ACTIONS(587), + [anon_sym_match] = ACTIONS(583), + [anon_sym_PIPE] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(591), + [anon_sym_RBRACK] = ACTIONS(593), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_STAR_STAR] = ACTIONS(265), + [anon_sym_EQ] = ACTIONS(593), + [anon_sym_exec] = ACTIONS(583), + [anon_sym_type] = ACTIONS(583), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_SLASH] = ACTIONS(265), + [anon_sym_PERCENT] = ACTIONS(265), + [anon_sym_SLASH_SLASH] = ACTIONS(265), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_CARET] = ACTIONS(265), + [anon_sym_LT_LT] = ACTIONS(265), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_PLUS_EQ] = ACTIONS(593), + [anon_sym_DASH_EQ] = ACTIONS(593), + [anon_sym_STAR_EQ] = ACTIONS(593), + [anon_sym_SLASH_EQ] = ACTIONS(593), + [anon_sym_AT_EQ] = ACTIONS(593), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(593), + [anon_sym_PERCENT_EQ] = ACTIONS(593), + [anon_sym_STAR_STAR_EQ] = ACTIONS(593), + [anon_sym_GT_GT_EQ] = ACTIONS(593), + [anon_sym_LT_LT_EQ] = ACTIONS(593), + [anon_sym_AMP_EQ] = ACTIONS(593), + [anon_sym_CARET_EQ] = ACTIONS(593), + [anon_sym_PIPE_EQ] = ACTIONS(593), + [sym_ellipsis] = ACTIONS(304), + [sym_integer] = ACTIONS(306), + [sym_float] = ACTIONS(304), + [anon_sym_await] = ACTIONS(595), + [sym_true] = ACTIONS(306), + [sym_false] = ACTIONS(306), + [sym_none] = ACTIONS(306), + [sym_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(310), + [sym__template_string_start] = ACTIONS(312), }, [143] = { - [sym_primary_expression] = STATE(727), - [sym_binary_operator] = STATE(796), - [sym_unary_operator] = STATE(796), - [sym_attribute] = STATE(796), - [sym_subscript] = STATE(796), - [sym_call] = STATE(796), - [sym_list] = STATE(796), - [sym_set] = STATE(796), - [sym_tuple] = STATE(796), - [sym_dictionary] = STATE(796), - [sym_list_comprehension] = STATE(796), - [sym_dictionary_comprehension] = STATE(796), - [sym_set_comprehension] = STATE(796), - [sym_generator_expression] = STATE(796), - [sym_parenthesized_expression] = STATE(796), - [sym_concatenated_string] = STATE(796), - [sym_string] = STATE(699), - [sym_await] = STATE(796), - [sym_identifier] = ACTIONS(600), - [anon_sym_DOT] = ACTIONS(260), - [anon_sym_LPAREN] = ACTIONS(602), - [anon_sym_RPAREN] = ACTIONS(293), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_as] = ACTIONS(260), - [anon_sym_STAR] = ACTIONS(260), - [anon_sym_print] = ACTIONS(604), - [anon_sym_GT_GT] = ACTIONS(293), - [anon_sym_COLON_EQ] = ACTIONS(606), - [anon_sym_if] = ACTIONS(260), - [anon_sym_COLON] = ACTIONS(260), - [anon_sym_async] = ACTIONS(604), - [anon_sym_in] = ACTIONS(260), - [anon_sym_match] = ACTIONS(604), - [anon_sym_PIPE] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(608), - [anon_sym_LBRACK] = ACTIONS(610), - [anon_sym_LBRACE] = ACTIONS(612), - [anon_sym_STAR_STAR] = ACTIONS(293), - [anon_sym_exec] = ACTIONS(604), - [anon_sym_type] = ACTIONS(604), - [anon_sym_AT] = ACTIONS(293), - [anon_sym_not] = ACTIONS(260), - [anon_sym_and] = ACTIONS(260), - [anon_sym_or] = ACTIONS(260), - [anon_sym_SLASH] = ACTIONS(260), - [anon_sym_PERCENT] = ACTIONS(293), - [anon_sym_SLASH_SLASH] = ACTIONS(293), - [anon_sym_AMP] = ACTIONS(293), - [anon_sym_CARET] = ACTIONS(293), - [anon_sym_LT_LT] = ACTIONS(293), - [anon_sym_TILDE] = ACTIONS(608), - [anon_sym_LT] = ACTIONS(260), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(260), - [anon_sym_LT_GT] = ACTIONS(293), - [anon_sym_is] = ACTIONS(260), - [sym_ellipsis] = ACTIONS(614), - [sym_integer] = ACTIONS(600), - [sym_float] = ACTIONS(614), - [anon_sym_await] = ACTIONS(616), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_none] = ACTIONS(600), + [sym_primary_expression] = STATE(748), + [sym_binary_operator] = STATE(809), + [sym_unary_operator] = STATE(809), + [sym_attribute] = STATE(809), + [sym_subscript] = STATE(809), + [sym_call] = STATE(809), + [sym_list] = STATE(809), + [sym_set] = STATE(809), + [sym_tuple] = STATE(809), + [sym_dictionary] = STATE(809), + [sym_list_comprehension] = STATE(809), + [sym_dictionary_comprehension] = STATE(809), + [sym_set_comprehension] = STATE(809), + [sym_generator_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string] = STATE(720), + [sym_concatenated_template_string] = STATE(809), + [sym_template_string] = STATE(722), + [sym_await] = STATE(809), + [sym_identifier] = ACTIONS(607), + [anon_sym_DOT] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(609), + [anon_sym_RPAREN] = ACTIONS(298), + [anon_sym_COMMA] = ACTIONS(298), + [anon_sym_as] = ACTIONS(265), + [anon_sym_STAR] = ACTIONS(265), + [anon_sym_print] = ACTIONS(611), + [anon_sym_GT_GT] = ACTIONS(298), + [anon_sym_COLON_EQ] = ACTIONS(613), + [anon_sym_if] = ACTIONS(265), + [anon_sym_COLON] = ACTIONS(265), + [anon_sym_async] = ACTIONS(611), + [anon_sym_in] = ACTIONS(265), + [anon_sym_match] = ACTIONS(611), + [anon_sym_PIPE] = ACTIONS(298), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(619), + [anon_sym_STAR_STAR] = ACTIONS(298), + [anon_sym_exec] = ACTIONS(611), + [anon_sym_type] = ACTIONS(611), + [anon_sym_AT] = ACTIONS(298), + [anon_sym_not] = ACTIONS(265), + [anon_sym_and] = ACTIONS(265), + [anon_sym_or] = ACTIONS(265), + [anon_sym_SLASH] = ACTIONS(265), + [anon_sym_PERCENT] = ACTIONS(298), + [anon_sym_SLASH_SLASH] = ACTIONS(298), + [anon_sym_AMP] = ACTIONS(298), + [anon_sym_CARET] = ACTIONS(298), + [anon_sym_LT_LT] = ACTIONS(298), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_LT] = ACTIONS(265), + [anon_sym_LT_EQ] = ACTIONS(298), + [anon_sym_EQ_EQ] = ACTIONS(298), + [anon_sym_BANG_EQ] = ACTIONS(298), + [anon_sym_GT_EQ] = ACTIONS(298), + [anon_sym_GT] = ACTIONS(265), + [anon_sym_LT_GT] = ACTIONS(298), + [anon_sym_is] = ACTIONS(265), + [sym_ellipsis] = ACTIONS(621), + [sym_integer] = ACTIONS(607), + [sym_float] = ACTIONS(621), + [anon_sym_await] = ACTIONS(623), + [sym_true] = ACTIONS(607), + [sym_false] = ACTIONS(607), + [sym_none] = ACTIONS(607), [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(618), + [sym__string_start] = ACTIONS(625), + [sym__template_string_start] = ACTIONS(627), }, [144] = { - [sym_primary_expression] = STATE(629), - [sym_binary_operator] = STATE(589), - [sym_unary_operator] = STATE(589), - [sym_attribute] = STATE(589), - [sym_subscript] = STATE(589), - [sym_call] = STATE(589), - [sym_list] = STATE(589), - [sym_set] = STATE(589), - [sym_tuple] = STATE(589), - [sym_dictionary] = STATE(589), - [sym_list_comprehension] = STATE(589), - [sym_dictionary_comprehension] = STATE(589), - [sym_set_comprehension] = STATE(589), - [sym_generator_expression] = STATE(589), - [sym_parenthesized_expression] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string] = STATE(565), - [sym_await] = STATE(589), - [sym_identifier] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(260), - [anon_sym_LPAREN] = ACTIONS(590), - [anon_sym_RPAREN] = ACTIONS(265), - [anon_sym_COMMA] = ACTIONS(265), - [anon_sym_STAR] = ACTIONS(260), - [anon_sym_print] = ACTIONS(576), - [anon_sym_GT_GT] = ACTIONS(293), - [anon_sym_COLON_EQ] = ACTIONS(592), - [anon_sym_if] = ACTIONS(260), - [anon_sym_async] = ACTIONS(576), - [anon_sym_for] = ACTIONS(260), - [anon_sym_in] = ACTIONS(260), - [anon_sym_match] = ACTIONS(576), - [anon_sym_PIPE] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_RBRACK] = ACTIONS(265), - [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR_STAR] = ACTIONS(293), - [anon_sym_exec] = ACTIONS(576), - [anon_sym_type] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(293), - [anon_sym_not] = ACTIONS(260), - [anon_sym_and] = ACTIONS(260), - [anon_sym_or] = ACTIONS(260), - [anon_sym_SLASH] = ACTIONS(260), - [anon_sym_PERCENT] = ACTIONS(293), - [anon_sym_SLASH_SLASH] = ACTIONS(293), - [anon_sym_AMP] = ACTIONS(293), - [anon_sym_CARET] = ACTIONS(293), - [anon_sym_LT_LT] = ACTIONS(293), - [anon_sym_TILDE] = ACTIONS(594), - [anon_sym_LT] = ACTIONS(260), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(260), - [anon_sym_LT_GT] = ACTIONS(293), - [anon_sym_is] = ACTIONS(260), - [sym_ellipsis] = ACTIONS(299), - [sym_integer] = ACTIONS(301), - [sym_float] = ACTIONS(299), - [anon_sym_await] = ACTIONS(598), - [sym_true] = ACTIONS(301), - [sym_false] = ACTIONS(301), - [sym_none] = ACTIONS(301), + [sym_primary_expression] = STATE(675), + [sym_binary_operator] = STATE(649), + [sym_unary_operator] = STATE(649), + [sym_attribute] = STATE(649), + [sym_subscript] = STATE(649), + [sym_call] = STATE(649), + [sym_list] = STATE(649), + [sym_set] = STATE(649), + [sym_tuple] = STATE(649), + [sym_dictionary] = STATE(649), + [sym_list_comprehension] = STATE(649), + [sym_dictionary_comprehension] = STATE(649), + [sym_set_comprehension] = STATE(649), + [sym_generator_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string] = STATE(569), + [sym_concatenated_template_string] = STATE(649), + [sym_template_string] = STATE(570), + [sym_await] = STATE(649), + [sym_identifier] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(597), + [anon_sym_RPAREN] = ACTIONS(298), + [anon_sym_COMMA] = ACTIONS(298), + [anon_sym_STAR] = ACTIONS(265), + [anon_sym_print] = ACTIONS(583), + [anon_sym_GT_GT] = ACTIONS(298), + [anon_sym_COLON_EQ] = ACTIONS(599), + [anon_sym_if] = ACTIONS(265), + [anon_sym_async] = ACTIONS(583), + [anon_sym_for] = ACTIONS(265), + [anon_sym_in] = ACTIONS(265), + [anon_sym_match] = ACTIONS(583), + [anon_sym_PIPE] = ACTIONS(298), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_LBRACK] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_STAR_STAR] = ACTIONS(298), + [anon_sym_EQ] = ACTIONS(629), + [anon_sym_exec] = ACTIONS(583), + [anon_sym_type] = ACTIONS(583), + [anon_sym_AT] = ACTIONS(298), + [anon_sym_not] = ACTIONS(265), + [anon_sym_and] = ACTIONS(265), + [anon_sym_or] = ACTIONS(265), + [anon_sym_SLASH] = ACTIONS(265), + [anon_sym_PERCENT] = ACTIONS(298), + [anon_sym_SLASH_SLASH] = ACTIONS(298), + [anon_sym_AMP] = ACTIONS(298), + [anon_sym_CARET] = ACTIONS(298), + [anon_sym_LT_LT] = ACTIONS(298), + [anon_sym_TILDE] = ACTIONS(601), + [anon_sym_LT] = ACTIONS(265), + [anon_sym_LT_EQ] = ACTIONS(298), + [anon_sym_EQ_EQ] = ACTIONS(298), + [anon_sym_BANG_EQ] = ACTIONS(298), + [anon_sym_GT_EQ] = ACTIONS(298), + [anon_sym_GT] = ACTIONS(265), + [anon_sym_LT_GT] = ACTIONS(298), + [anon_sym_is] = ACTIONS(265), + [sym_ellipsis] = ACTIONS(304), + [sym_integer] = ACTIONS(306), + [sym_float] = ACTIONS(304), + [anon_sym_await] = ACTIONS(605), + [sym_true] = ACTIONS(306), + [sym_false] = ACTIONS(306), + [sym_none] = ACTIONS(306), [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(305), + [sym__string_start] = ACTIONS(310), + [sym__template_string_start] = ACTIONS(312), }, [145] = { - [sym_primary_expression] = STATE(709), - [sym_binary_operator] = STATE(773), - [sym_unary_operator] = STATE(773), - [sym_attribute] = STATE(773), - [sym_subscript] = STATE(773), - [sym_call] = STATE(773), - [sym_list] = STATE(773), - [sym_set] = STATE(773), - [sym_tuple] = STATE(773), - [sym_dictionary] = STATE(773), - [sym_list_comprehension] = STATE(773), - [sym_dictionary_comprehension] = STATE(773), - [sym_set_comprehension] = STATE(773), - [sym_generator_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_concatenated_string] = STATE(773), - [sym_string] = STATE(693), - [sym_await] = STATE(773), + [sym_primary_expression] = STATE(711), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_attribute] = STATE(760), + [sym_subscript] = STATE(760), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(77), - [anon_sym_DOT] = ACTIONS(260), - [anon_sym_from] = ACTIONS(260), - [anon_sym_LPAREN] = ACTIONS(561), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(260), - [anon_sym_print] = ACTIONS(563), - [anon_sym_GT_GT] = ACTIONS(293), - [anon_sym_if] = ACTIONS(260), - [anon_sym_async] = ACTIONS(563), - [anon_sym_in] = ACTIONS(260), - [anon_sym_match] = ACTIONS(563), - [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_DOT] = ACTIONS(265), + [anon_sym_from] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_COMMA] = ACTIONS(298), + [anon_sym_STAR] = ACTIONS(265), + [anon_sym_print] = ACTIONS(570), + [anon_sym_GT_GT] = ACTIONS(298), + [anon_sym_if] = ACTIONS(265), + [anon_sym_async] = ACTIONS(570), + [anon_sym_in] = ACTIONS(265), + [anon_sym_match] = ACTIONS(570), + [anon_sym_PIPE] = ACTIONS(298), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_LBRACK] = ACTIONS(574), [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(293), - [anon_sym_EQ] = ACTIONS(260), - [anon_sym_exec] = ACTIONS(563), - [anon_sym_type] = ACTIONS(563), - [anon_sym_AT] = ACTIONS(293), - [anon_sym_not] = ACTIONS(260), - [anon_sym_and] = ACTIONS(260), - [anon_sym_or] = ACTIONS(260), - [anon_sym_SLASH] = ACTIONS(260), - [anon_sym_PERCENT] = ACTIONS(293), - [anon_sym_SLASH_SLASH] = ACTIONS(293), - [anon_sym_AMP] = ACTIONS(293), - [anon_sym_CARET] = ACTIONS(293), - [anon_sym_LT_LT] = ACTIONS(293), + [anon_sym_STAR_STAR] = ACTIONS(298), + [anon_sym_EQ] = ACTIONS(265), + [anon_sym_exec] = ACTIONS(570), + [anon_sym_type] = ACTIONS(570), + [anon_sym_AT] = ACTIONS(298), + [anon_sym_not] = ACTIONS(265), + [anon_sym_and] = ACTIONS(265), + [anon_sym_or] = ACTIONS(265), + [anon_sym_SLASH] = ACTIONS(265), + [anon_sym_PERCENT] = ACTIONS(298), + [anon_sym_SLASH_SLASH] = ACTIONS(298), + [anon_sym_AMP] = ACTIONS(298), + [anon_sym_CARET] = ACTIONS(298), + [anon_sym_LT_LT] = ACTIONS(298), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(260), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(260), - [anon_sym_LT_GT] = ACTIONS(293), - [anon_sym_is] = ACTIONS(260), + [anon_sym_LT] = ACTIONS(265), + [anon_sym_LT_EQ] = ACTIONS(298), + [anon_sym_EQ_EQ] = ACTIONS(298), + [anon_sym_BANG_EQ] = ACTIONS(298), + [anon_sym_GT_EQ] = ACTIONS(298), + [anon_sym_GT] = ACTIONS(265), + [anon_sym_LT_GT] = ACTIONS(298), + [anon_sym_is] = ACTIONS(265), [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(569), + [anon_sym_await] = ACTIONS(576), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__semicolon] = ACTIONS(293), - [sym__newline] = ACTIONS(293), + [sym__semicolon] = ACTIONS(298), + [sym__newline] = ACTIONS(298), [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, [146] = { - [sym_primary_expression] = STATE(629), - [sym_binary_operator] = STATE(589), - [sym_unary_operator] = STATE(589), - [sym_attribute] = STATE(589), - [sym_subscript] = STATE(589), - [sym_call] = STATE(589), - [sym_list] = STATE(589), - [sym_set] = STATE(589), - [sym_tuple] = STATE(589), - [sym_dictionary] = STATE(589), - [sym_list_comprehension] = STATE(589), - [sym_dictionary_comprehension] = STATE(589), - [sym_set_comprehension] = STATE(589), - [sym_generator_expression] = STATE(589), - [sym_parenthesized_expression] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string] = STATE(565), - [sym_await] = STATE(589), - [sym_identifier] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(260), - [anon_sym_LPAREN] = ACTIONS(590), - [anon_sym_RPAREN] = ACTIONS(293), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(260), - [anon_sym_print] = ACTIONS(576), - [anon_sym_GT_GT] = ACTIONS(293), - [anon_sym_COLON_EQ] = ACTIONS(592), - [anon_sym_if] = ACTIONS(260), - [anon_sym_async] = ACTIONS(576), - [anon_sym_for] = ACTIONS(260), - [anon_sym_in] = ACTIONS(260), - [anon_sym_match] = ACTIONS(576), - [anon_sym_PIPE] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR_STAR] = ACTIONS(293), - [anon_sym_EQ] = ACTIONS(620), - [anon_sym_exec] = ACTIONS(576), - [anon_sym_type] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(293), - [anon_sym_not] = ACTIONS(260), - [anon_sym_and] = ACTIONS(260), - [anon_sym_or] = ACTIONS(260), - [anon_sym_SLASH] = ACTIONS(260), - [anon_sym_PERCENT] = ACTIONS(293), - [anon_sym_SLASH_SLASH] = ACTIONS(293), - [anon_sym_AMP] = ACTIONS(293), - [anon_sym_CARET] = ACTIONS(293), - [anon_sym_LT_LT] = ACTIONS(293), - [anon_sym_TILDE] = ACTIONS(594), - [anon_sym_LT] = ACTIONS(260), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(260), - [anon_sym_LT_GT] = ACTIONS(293), - [anon_sym_is] = ACTIONS(260), - [sym_ellipsis] = ACTIONS(299), - [sym_integer] = ACTIONS(301), - [sym_float] = ACTIONS(299), - [anon_sym_await] = ACTIONS(598), - [sym_true] = ACTIONS(301), - [sym_false] = ACTIONS(301), - [sym_none] = ACTIONS(301), + [sym_primary_expression] = STATE(675), + [sym_binary_operator] = STATE(649), + [sym_unary_operator] = STATE(649), + [sym_attribute] = STATE(649), + [sym_subscript] = STATE(649), + [sym_call] = STATE(649), + [sym_list] = STATE(649), + [sym_set] = STATE(649), + [sym_tuple] = STATE(649), + [sym_dictionary] = STATE(649), + [sym_list_comprehension] = STATE(649), + [sym_dictionary_comprehension] = STATE(649), + [sym_set_comprehension] = STATE(649), + [sym_generator_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string] = STATE(569), + [sym_concatenated_template_string] = STATE(649), + [sym_template_string] = STATE(570), + [sym_await] = STATE(649), + [sym_identifier] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(597), + [anon_sym_RPAREN] = ACTIONS(270), + [anon_sym_COMMA] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(265), + [anon_sym_print] = ACTIONS(583), + [anon_sym_GT_GT] = ACTIONS(298), + [anon_sym_COLON_EQ] = ACTIONS(599), + [anon_sym_if] = ACTIONS(265), + [anon_sym_async] = ACTIONS(583), + [anon_sym_for] = ACTIONS(265), + [anon_sym_in] = ACTIONS(265), + [anon_sym_match] = ACTIONS(583), + [anon_sym_PIPE] = ACTIONS(298), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_LBRACK] = ACTIONS(603), + [anon_sym_RBRACK] = ACTIONS(270), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_STAR_STAR] = ACTIONS(298), + [anon_sym_exec] = ACTIONS(583), + [anon_sym_type] = ACTIONS(583), + [anon_sym_AT] = ACTIONS(298), + [anon_sym_not] = ACTIONS(265), + [anon_sym_and] = ACTIONS(265), + [anon_sym_or] = ACTIONS(265), + [anon_sym_SLASH] = ACTIONS(265), + [anon_sym_PERCENT] = ACTIONS(298), + [anon_sym_SLASH_SLASH] = ACTIONS(298), + [anon_sym_AMP] = ACTIONS(298), + [anon_sym_CARET] = ACTIONS(298), + [anon_sym_LT_LT] = ACTIONS(298), + [anon_sym_TILDE] = ACTIONS(601), + [anon_sym_LT] = ACTIONS(265), + [anon_sym_LT_EQ] = ACTIONS(298), + [anon_sym_EQ_EQ] = ACTIONS(298), + [anon_sym_BANG_EQ] = ACTIONS(298), + [anon_sym_GT_EQ] = ACTIONS(298), + [anon_sym_GT] = ACTIONS(265), + [anon_sym_LT_GT] = ACTIONS(298), + [anon_sym_is] = ACTIONS(265), + [sym_ellipsis] = ACTIONS(304), + [sym_integer] = ACTIONS(306), + [sym_float] = ACTIONS(304), + [anon_sym_await] = ACTIONS(605), + [sym_true] = ACTIONS(306), + [sym_false] = ACTIONS(306), + [sym_none] = ACTIONS(306), [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(305), + [sym__string_start] = ACTIONS(310), + [sym__template_string_start] = ACTIONS(312), }, [147] = { - [sym_primary_expression] = STATE(727), - [sym_binary_operator] = STATE(796), - [sym_unary_operator] = STATE(796), - [sym_attribute] = STATE(796), - [sym_subscript] = STATE(796), - [sym_call] = STATE(796), - [sym_list] = STATE(796), - [sym_set] = STATE(796), - [sym_tuple] = STATE(796), - [sym_dictionary] = STATE(796), - [sym_list_comprehension] = STATE(796), - [sym_dictionary_comprehension] = STATE(796), - [sym_set_comprehension] = STATE(796), - [sym_generator_expression] = STATE(796), - [sym_parenthesized_expression] = STATE(796), - [sym_concatenated_string] = STATE(796), - [sym_string] = STATE(699), - [sym_await] = STATE(796), - [sym_identifier] = ACTIONS(600), - [anon_sym_DOT] = ACTIONS(260), - [anon_sym_LPAREN] = ACTIONS(602), - [anon_sym_RPAREN] = ACTIONS(293), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_as] = ACTIONS(260), - [anon_sym_STAR] = ACTIONS(260), - [anon_sym_print] = ACTIONS(604), - [anon_sym_GT_GT] = ACTIONS(293), - [anon_sym_if] = ACTIONS(260), - [anon_sym_COLON] = ACTIONS(293), - [anon_sym_async] = ACTIONS(604), - [anon_sym_in] = ACTIONS(260), - [anon_sym_match] = ACTIONS(604), - [anon_sym_PIPE] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(608), - [anon_sym_LBRACK] = ACTIONS(610), - [anon_sym_LBRACE] = ACTIONS(612), - [anon_sym_STAR_STAR] = ACTIONS(293), - [anon_sym_exec] = ACTIONS(604), - [anon_sym_type] = ACTIONS(604), - [anon_sym_AT] = ACTIONS(293), - [anon_sym_not] = ACTIONS(260), - [anon_sym_and] = ACTIONS(260), - [anon_sym_or] = ACTIONS(260), - [anon_sym_SLASH] = ACTIONS(260), - [anon_sym_PERCENT] = ACTIONS(293), - [anon_sym_SLASH_SLASH] = ACTIONS(293), - [anon_sym_AMP] = ACTIONS(293), - [anon_sym_CARET] = ACTIONS(293), - [anon_sym_LT_LT] = ACTIONS(293), - [anon_sym_TILDE] = ACTIONS(608), - [anon_sym_LT] = ACTIONS(260), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(260), - [anon_sym_LT_GT] = ACTIONS(293), - [anon_sym_is] = ACTIONS(260), - [sym_ellipsis] = ACTIONS(614), - [sym_integer] = ACTIONS(600), - [sym_float] = ACTIONS(614), - [anon_sym_await] = ACTIONS(616), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_none] = ACTIONS(600), + [sym_primary_expression] = STATE(748), + [sym_binary_operator] = STATE(809), + [sym_unary_operator] = STATE(809), + [sym_attribute] = STATE(809), + [sym_subscript] = STATE(809), + [sym_call] = STATE(809), + [sym_list] = STATE(809), + [sym_set] = STATE(809), + [sym_tuple] = STATE(809), + [sym_dictionary] = STATE(809), + [sym_list_comprehension] = STATE(809), + [sym_dictionary_comprehension] = STATE(809), + [sym_set_comprehension] = STATE(809), + [sym_generator_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string] = STATE(720), + [sym_concatenated_template_string] = STATE(809), + [sym_template_string] = STATE(722), + [sym_await] = STATE(809), + [sym_identifier] = ACTIONS(607), + [anon_sym_DOT] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(609), + [anon_sym_RPAREN] = ACTIONS(298), + [anon_sym_COMMA] = ACTIONS(298), + [anon_sym_as] = ACTIONS(265), + [anon_sym_STAR] = ACTIONS(265), + [anon_sym_print] = ACTIONS(611), + [anon_sym_GT_GT] = ACTIONS(298), + [anon_sym_if] = ACTIONS(265), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_async] = ACTIONS(611), + [anon_sym_in] = ACTIONS(265), + [anon_sym_match] = ACTIONS(611), + [anon_sym_PIPE] = ACTIONS(298), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(619), + [anon_sym_STAR_STAR] = ACTIONS(298), + [anon_sym_exec] = ACTIONS(611), + [anon_sym_type] = ACTIONS(611), + [anon_sym_AT] = ACTIONS(298), + [anon_sym_not] = ACTIONS(265), + [anon_sym_and] = ACTIONS(265), + [anon_sym_or] = ACTIONS(265), + [anon_sym_SLASH] = ACTIONS(265), + [anon_sym_PERCENT] = ACTIONS(298), + [anon_sym_SLASH_SLASH] = ACTIONS(298), + [anon_sym_AMP] = ACTIONS(298), + [anon_sym_CARET] = ACTIONS(298), + [anon_sym_LT_LT] = ACTIONS(298), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_LT] = ACTIONS(265), + [anon_sym_LT_EQ] = ACTIONS(298), + [anon_sym_EQ_EQ] = ACTIONS(298), + [anon_sym_BANG_EQ] = ACTIONS(298), + [anon_sym_GT_EQ] = ACTIONS(298), + [anon_sym_GT] = ACTIONS(265), + [anon_sym_LT_GT] = ACTIONS(298), + [anon_sym_is] = ACTIONS(265), + [sym_ellipsis] = ACTIONS(621), + [sym_integer] = ACTIONS(607), + [sym_float] = ACTIONS(621), + [anon_sym_await] = ACTIONS(623), + [sym_true] = ACTIONS(607), + [sym_false] = ACTIONS(607), + [sym_none] = ACTIONS(607), [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(618), + [sym__string_start] = ACTIONS(625), + [sym__template_string_start] = ACTIONS(627), }, [148] = { - [sym_primary_expression] = STATE(631), - [sym_binary_operator] = STATE(589), - [sym_unary_operator] = STATE(589), - [sym_attribute] = STATE(589), - [sym_subscript] = STATE(589), - [sym_call] = STATE(589), - [sym_list] = STATE(589), - [sym_set] = STATE(589), - [sym_tuple] = STATE(589), - [sym_dictionary] = STATE(589), - [sym_list_comprehension] = STATE(589), - [sym_dictionary_comprehension] = STATE(589), - [sym_set_comprehension] = STATE(589), - [sym_generator_expression] = STATE(589), - [sym_parenthesized_expression] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string] = STATE(565), - [sym_await] = STATE(589), - [sym_identifier] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(260), - [anon_sym_LPAREN] = ACTIONS(571), - [anon_sym_RPAREN] = ACTIONS(293), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(260), - [anon_sym_print] = ACTIONS(576), - [anon_sym_GT_GT] = ACTIONS(293), - [anon_sym_COLON_EQ] = ACTIONS(578), - [anon_sym_if] = ACTIONS(260), - [anon_sym_async] = ACTIONS(576), - [anon_sym_in] = ACTIONS(260), - [anon_sym_match] = ACTIONS(576), - [anon_sym_PIPE] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(291), - [anon_sym_PLUS] = ACTIONS(291), - [anon_sym_LBRACK] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(283), - [anon_sym_STAR_STAR] = ACTIONS(293), - [anon_sym_EQ] = ACTIONS(620), - [anon_sym_exec] = ACTIONS(576), - [anon_sym_type] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(293), - [anon_sym_not] = ACTIONS(260), - [anon_sym_and] = ACTIONS(260), - [anon_sym_or] = ACTIONS(260), - [anon_sym_SLASH] = ACTIONS(260), - [anon_sym_PERCENT] = ACTIONS(293), - [anon_sym_SLASH_SLASH] = ACTIONS(293), - [anon_sym_AMP] = ACTIONS(293), - [anon_sym_CARET] = ACTIONS(293), - [anon_sym_LT_LT] = ACTIONS(293), - [anon_sym_TILDE] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(260), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_BANG_EQ] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(260), - [anon_sym_LT_GT] = ACTIONS(293), - [anon_sym_is] = ACTIONS(260), - [sym_ellipsis] = ACTIONS(299), - [sym_integer] = ACTIONS(301), - [sym_float] = ACTIONS(299), - [anon_sym_await] = ACTIONS(588), - [sym_true] = ACTIONS(301), - [sym_false] = ACTIONS(301), - [sym_none] = ACTIONS(301), + [sym_primary_expression] = STATE(669), + [sym_binary_operator] = STATE(649), + [sym_unary_operator] = STATE(649), + [sym_attribute] = STATE(649), + [sym_subscript] = STATE(649), + [sym_call] = STATE(649), + [sym_list] = STATE(649), + [sym_set] = STATE(649), + [sym_tuple] = STATE(649), + [sym_dictionary] = STATE(649), + [sym_list_comprehension] = STATE(649), + [sym_dictionary_comprehension] = STATE(649), + [sym_set_comprehension] = STATE(649), + [sym_generator_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string] = STATE(569), + [sym_concatenated_template_string] = STATE(649), + [sym_template_string] = STATE(570), + [sym_await] = STATE(649), + [sym_identifier] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(578), + [anon_sym_RPAREN] = ACTIONS(298), + [anon_sym_COMMA] = ACTIONS(298), + [anon_sym_STAR] = ACTIONS(265), + [anon_sym_print] = ACTIONS(583), + [anon_sym_GT_GT] = ACTIONS(298), + [anon_sym_COLON_EQ] = ACTIONS(585), + [anon_sym_if] = ACTIONS(265), + [anon_sym_async] = ACTIONS(583), + [anon_sym_in] = ACTIONS(265), + [anon_sym_match] = ACTIONS(583), + [anon_sym_PIPE] = ACTIONS(298), + [anon_sym_DASH] = ACTIONS(296), + [anon_sym_PLUS] = ACTIONS(296), + [anon_sym_LBRACK] = ACTIONS(591), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_STAR_STAR] = ACTIONS(298), + [anon_sym_EQ] = ACTIONS(629), + [anon_sym_exec] = ACTIONS(583), + [anon_sym_type] = ACTIONS(583), + [anon_sym_AT] = ACTIONS(298), + [anon_sym_not] = ACTIONS(265), + [anon_sym_and] = ACTIONS(265), + [anon_sym_or] = ACTIONS(265), + [anon_sym_SLASH] = ACTIONS(265), + [anon_sym_PERCENT] = ACTIONS(298), + [anon_sym_SLASH_SLASH] = ACTIONS(298), + [anon_sym_AMP] = ACTIONS(298), + [anon_sym_CARET] = ACTIONS(298), + [anon_sym_LT_LT] = ACTIONS(298), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_LT] = ACTIONS(265), + [anon_sym_LT_EQ] = ACTIONS(298), + [anon_sym_EQ_EQ] = ACTIONS(298), + [anon_sym_BANG_EQ] = ACTIONS(298), + [anon_sym_GT_EQ] = ACTIONS(298), + [anon_sym_GT] = ACTIONS(265), + [anon_sym_LT_GT] = ACTIONS(298), + [anon_sym_is] = ACTIONS(265), + [sym_ellipsis] = ACTIONS(304), + [sym_integer] = ACTIONS(306), + [sym_float] = ACTIONS(304), + [anon_sym_await] = ACTIONS(595), + [sym_true] = ACTIONS(306), + [sym_false] = ACTIONS(306), + [sym_none] = ACTIONS(306), [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(305), + [sym__string_start] = ACTIONS(310), + [sym__template_string_start] = ACTIONS(312), + }, + [149] = { + [sym_named_expression] = STATE(955), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_expression_list] = STATE(1357), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1026), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1357), + [sym_augmented_assignment] = STATE(1357), + [sym_pattern_list] = STATE(874), + [sym__right_hand_side] = STATE(1357), + [sym_yield] = STATE(1357), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_print] = ACTIONS(314), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), + [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_exec] = ACTIONS(314), + [anon_sym_type] = ACTIONS(314), + [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__template_string_start] = ACTIONS(83), + }, + [150] = { + [sym_named_expression] = STATE(955), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_expression_list] = STATE(1356), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1026), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1356), + [sym_augmented_assignment] = STATE(1356), + [sym_pattern_list] = STATE(874), + [sym__right_hand_side] = STATE(1356), + [sym_yield] = STATE(1356), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_print] = ACTIONS(314), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), + [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_exec] = ACTIONS(314), + [anon_sym_type] = ACTIONS(314), + [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__template_string_start] = ACTIONS(83), + }, + [151] = { + [sym_named_expression] = STATE(955), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_expression_list] = STATE(1365), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1026), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1365), + [sym_augmented_assignment] = STATE(1365), + [sym_pattern_list] = STATE(874), + [sym__right_hand_side] = STATE(1365), + [sym_yield] = STATE(1365), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_print] = ACTIONS(314), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), + [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_exec] = ACTIONS(314), + [anon_sym_type] = ACTIONS(314), + [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__template_string_start] = ACTIONS(83), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 27, + [0] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7), 1, - sym_identifier, - ACTIONS(13), 1, - anon_sym_LPAREN, - ACTIONS(15), 1, - anon_sym_STAR, - ACTIONS(49), 1, - anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_LBRACE, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(73), 1, - anon_sym_yield, - ACTIONS(79), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(81), 1, + ACTIONS(310), 1, sym__string_start, - STATE(689), 1, - sym_primary_expression, - STATE(693), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(631), 1, + anon_sym_from, + ACTIONS(635), 1, + anon_sym_STAR, + ACTIONS(637), 1, + anon_sym_not, + STATE(569), 1, sym_string, - STATE(847), 1, - sym_pattern, - STATE(855), 1, - sym_pattern_list, - STATE(1004), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(885), 1, sym_expression, - ACTIONS(75), 2, + STATE(1001), 1, + sym_expression_list, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(431), 2, - sym_attribute, - sym_subscript, - STATE(1283), 2, + STATE(1375), 2, sym_list_splat, sym_dictionary_splat, - ACTIONS(47), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(833), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(77), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(307), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1341), 5, - sym_expression_list, - sym_assignment, - sym_augmented_assignment, - sym__right_hand_side, - sym_yield, - STATE(940), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 14, + ACTIONS(633), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + STATE(649), 17, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -24367,84 +23523,87 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [118] = 27, + [117] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(7), 1, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(639), 1, sym_identifier, - ACTIONS(13), 1, + ACTIONS(641), 1, anon_sym_LPAREN, - ACTIONS(15), 1, + ACTIONS(643), 1, + anon_sym_RPAREN, + ACTIONS(645), 1, anon_sym_STAR, - ACTIONS(49), 1, + ACTIONS(649), 1, anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(69), 1, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(653), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(655), 1, anon_sym_yield, - ACTIONS(79), 1, + ACTIONS(657), 1, anon_sym_await, - ACTIONS(81), 1, - sym__string_start, - STATE(689), 1, - sym_primary_expression, - STATE(693), 1, + STATE(569), 1, sym_string, - STATE(847), 1, - sym_pattern, - STATE(855), 1, - sym_pattern_list, - STATE(1004), 1, + STATE(570), 1, + sym_template_string, + STATE(653), 1, + sym_primary_expression, + STATE(935), 1, sym_expression, - ACTIONS(75), 2, + STATE(1177), 1, + sym_pattern, + STATE(1197), 1, + sym_yield, + STATE(1409), 1, + sym__collection_elements, + STATE(1416), 1, + sym__patterns, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(431), 2, + STATE(770), 2, sym_attribute, sym_subscript, - STATE(1283), 2, + STATE(1095), 2, sym_list_splat, - sym_dictionary_splat, - ACTIONS(47), 3, + sym_parenthesized_list_splat, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(833), 3, + STATE(853), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, - ACTIONS(77), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(307), 5, + ACTIONS(647), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1342), 5, - sym_expression_list, - sym_assignment, - sym_augmented_assignment, - sym__right_hand_side, - sym_yield, - STATE(940), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 14, + STATE(649), 15, sym_binary_operator, sym_unary_operator, sym_call, @@ -24458,84 +23617,88 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [236] = 27, + [241] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(7), 1, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(639), 1, sym_identifier, - ACTIONS(13), 1, + ACTIONS(641), 1, anon_sym_LPAREN, - ACTIONS(15), 1, + ACTIONS(645), 1, anon_sym_STAR, - ACTIONS(49), 1, + ACTIONS(649), 1, anon_sym_LBRACK, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(69), 1, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(653), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(655), 1, anon_sym_yield, - ACTIONS(79), 1, + ACTIONS(657), 1, anon_sym_await, - ACTIONS(81), 1, - sym__string_start, - STATE(689), 1, - sym_primary_expression, - STATE(693), 1, + ACTIONS(659), 1, + anon_sym_RPAREN, + STATE(569), 1, sym_string, - STATE(847), 1, - sym_pattern, - STATE(855), 1, - sym_pattern_list, - STATE(1004), 1, + STATE(570), 1, + sym_template_string, + STATE(653), 1, + sym_primary_expression, + STATE(930), 1, sym_expression, - ACTIONS(75), 2, + STATE(1177), 1, + sym_pattern, + STATE(1218), 1, + sym_yield, + STATE(1303), 1, + sym_parenthesized_list_splat, + STATE(1304), 1, + sym_list_splat, + STATE(1416), 1, + sym__patterns, + STATE(1480), 1, + sym__collection_elements, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(431), 2, + STATE(770), 2, sym_attribute, sym_subscript, - STATE(1283), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(47), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(833), 3, + STATE(853), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, - ACTIONS(77), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(307), 5, + ACTIONS(647), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1304), 5, - sym_expression_list, - sym_assignment, - sym_augmented_assignment, - sym__right_hand_side, - sym_yield, - STATE(940), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 14, + STATE(649), 15, sym_binary_operator, sym_unary_operator, sym_call, @@ -24549,81 +23712,88 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [354] = 24, + [367] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(639), 1, + sym_identifier, + ACTIONS(641), 1, anon_sym_LPAREN, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(622), 1, - anon_sym_from, - ACTIONS(626), 1, + ACTIONS(645), 1, anon_sym_STAR, - ACTIONS(628), 1, + ACTIONS(649), 1, + anon_sym_LBRACK, + ACTIONS(651), 1, anon_sym_not, - STATE(565), 1, + ACTIONS(653), 1, + anon_sym_lambda, + ACTIONS(655), 1, + anon_sym_yield, + ACTIONS(657), 1, + anon_sym_await, + ACTIONS(661), 1, + anon_sym_RBRACK, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(653), 1, sym_primary_expression, - STATE(870), 1, + STATE(908), 1, sym_expression, - STATE(1000), 1, - sym_expression_list, - ACTIONS(299), 2, + STATE(1177), 1, + sym_pattern, + STATE(1434), 1, + sym__patterns, + STATE(1438), 1, + sym__collection_elements, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1284), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(291), 3, + STATE(770), 2, + sym_attribute, + sym_subscript, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + STATE(853), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + STATE(1095), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(647), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - ACTIONS(624), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - STATE(589), 16, + STATE(649), 15, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -24635,82 +23805,87 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [464] = 28, + [489] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(630), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(639), 1, sym_identifier, - ACTIONS(632), 1, + ACTIONS(641), 1, anon_sym_LPAREN, - ACTIONS(634), 1, - anon_sym_RPAREN, - ACTIONS(636), 1, + ACTIONS(645), 1, anon_sym_STAR, - ACTIONS(640), 1, + ACTIONS(649), 1, anon_sym_LBRACK, - ACTIONS(642), 1, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(644), 1, + ACTIONS(653), 1, anon_sym_lambda, - ACTIONS(646), 1, + ACTIONS(655), 1, anon_sym_yield, - ACTIONS(648), 1, + ACTIONS(657), 1, anon_sym_await, - STATE(565), 1, + ACTIONS(663), 1, + anon_sym_RPAREN, + STATE(569), 1, sym_string, - STATE(590), 1, + STATE(570), 1, + sym_template_string, + STATE(653), 1, sym_primary_expression, - STATE(900), 1, + STATE(930), 1, sym_expression, - STATE(1120), 1, + STATE(1177), 1, sym_pattern, - STATE(1156), 1, + STATE(1218), 1, sym_yield, - STATE(1395), 1, + STATE(1416), 1, sym__patterns, - STATE(1420), 1, + STATE(1480), 1, sym__collection_elements, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(741), 2, + STATE(770), 2, sym_attribute, sym_subscript, - STATE(1081), 2, + STATE(1095), 2, sym_list_splat, sym_parenthesized_list_splat, - ACTIONS(594), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(833), 3, + STATE(853), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(638), 5, + ACTIONS(647), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 14, + STATE(649), 15, sym_binary_operator, sym_unary_operator, sym_call, @@ -24724,82 +23899,86 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [581] = 28, + [613] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(630), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(639), 1, sym_identifier, - ACTIONS(632), 1, + ACTIONS(641), 1, anon_sym_LPAREN, - ACTIONS(636), 1, + ACTIONS(645), 1, anon_sym_STAR, - ACTIONS(640), 1, + ACTIONS(649), 1, anon_sym_LBRACK, - ACTIONS(642), 1, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(644), 1, + ACTIONS(653), 1, anon_sym_lambda, - ACTIONS(646), 1, + ACTIONS(655), 1, anon_sym_yield, - ACTIONS(648), 1, + ACTIONS(657), 1, anon_sym_await, - ACTIONS(650), 1, - anon_sym_RPAREN, - STATE(565), 1, + ACTIONS(665), 1, + anon_sym_RBRACK, + STATE(569), 1, sym_string, - STATE(590), 1, + STATE(570), 1, + sym_template_string, + STATE(653), 1, sym_primary_expression, - STATE(894), 1, + STATE(912), 1, sym_expression, - STATE(1120), 1, + STATE(1177), 1, sym_pattern, - STATE(1242), 1, - sym_yield, - STATE(1378), 1, + STATE(1390), 1, sym__collection_elements, - STATE(1395), 1, + STATE(1434), 1, sym__patterns, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(741), 2, + STATE(770), 2, sym_attribute, sym_subscript, - STATE(1081), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(594), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(833), 3, + STATE(853), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, - ACTIONS(301), 4, + STATE(1095), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(638), 5, + ACTIONS(647), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 14, + STATE(649), 15, sym_binary_operator, sym_unary_operator, sym_call, @@ -24813,74 +23992,64 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [698] = 21, + [735] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(291), 1, + ACTIONS(296), 1, anon_sym_TILDE, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(652), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(667), 1, sym_identifier, - ACTIONS(654), 1, + ACTIONS(669), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(671), 1, anon_sym_STAR, - ACTIONS(662), 1, + ACTIONS(677), 1, anon_sym_in, - ACTIONS(664), 1, + ACTIONS(679), 1, anon_sym_LBRACK, - ACTIONS(666), 1, + ACTIONS(681), 1, anon_sym_await, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(840), 1, + STATE(570), 1, + sym_template_string, + STATE(854), 1, sym_pattern, - STATE(844), 1, + STATE(862), 1, sym_primary_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(582), 2, + ACTIONS(589), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(722), 2, + STATE(735), 2, sym_attribute, sym_subscript, - STATE(833), 3, + STATE(853), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(658), 5, + ACTIONS(673), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(589), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - ACTIONS(660), 15, + ACTIONS(675), 15, anon_sym_COLON, anon_sym_EQ, anon_sym_PLUS_EQ, @@ -24896,82 +24065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [801] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(630), 1, - sym_identifier, - ACTIONS(632), 1, - anon_sym_LPAREN, - ACTIONS(636), 1, - anon_sym_STAR, - ACTIONS(640), 1, - anon_sym_LBRACK, - ACTIONS(642), 1, - anon_sym_not, - ACTIONS(644), 1, - anon_sym_lambda, - ACTIONS(646), 1, - anon_sym_yield, - ACTIONS(648), 1, - anon_sym_await, - ACTIONS(668), 1, - anon_sym_RPAREN, - STATE(565), 1, - sym_string, - STATE(590), 1, - sym_primary_expression, - STATE(894), 1, - sym_expression, - STATE(1120), 1, - sym_pattern, - STATE(1222), 1, - sym_list_splat, - STATE(1223), 1, - sym_parenthesized_list_splat, - STATE(1242), 1, - sym_yield, - STATE(1378), 1, - sym__collection_elements, - STATE(1395), 1, - sym__patterns, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - STATE(741), 2, - sym_attribute, - sym_subscript, - ACTIONS(594), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(833), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(301), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(638), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(863), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(589), 14, + STATE(649), 15, sym_binary_operator, sym_unary_operator, sym_call, @@ -24985,81 +24079,86 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [920] = 27, + [845] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(630), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(639), 1, sym_identifier, - ACTIONS(632), 1, + ACTIONS(641), 1, anon_sym_LPAREN, - ACTIONS(636), 1, + ACTIONS(645), 1, anon_sym_STAR, - ACTIONS(640), 1, + ACTIONS(649), 1, anon_sym_LBRACK, - ACTIONS(642), 1, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(644), 1, + ACTIONS(653), 1, anon_sym_lambda, - ACTIONS(646), 1, + ACTIONS(655), 1, anon_sym_yield, - ACTIONS(648), 1, + ACTIONS(657), 1, anon_sym_await, - ACTIONS(670), 1, + ACTIONS(683), 1, anon_sym_RBRACK, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(590), 1, + STATE(570), 1, + sym_template_string, + STATE(653), 1, sym_primary_expression, - STATE(893), 1, + STATE(912), 1, sym_expression, - STATE(1120), 1, + STATE(1177), 1, sym_pattern, - STATE(1417), 1, - sym__patterns, - STATE(1443), 1, + STATE(1390), 1, sym__collection_elements, - ACTIONS(299), 2, + STATE(1434), 1, + sym__patterns, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(741), 2, + STATE(770), 2, sym_attribute, sym_subscript, - ACTIONS(594), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(833), 3, + STATE(853), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, - STATE(1081), 3, + STATE(1095), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(638), 5, + ACTIONS(647), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 14, + STATE(649), 15, sym_binary_operator, sym_unary_operator, sym_call, @@ -25073,81 +24172,80 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [1035] = 27, + [967] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(296), 1, + anon_sym_TILDE, + ACTIONS(310), 1, sym__string_start, - ACTIONS(630), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(667), 1, sym_identifier, - ACTIONS(632), 1, + ACTIONS(669), 1, anon_sym_LPAREN, - ACTIONS(636), 1, + ACTIONS(671), 1, anon_sym_STAR, - ACTIONS(640), 1, + ACTIONS(679), 1, anon_sym_LBRACK, - ACTIONS(642), 1, - anon_sym_not, - ACTIONS(644), 1, - anon_sym_lambda, - ACTIONS(646), 1, - anon_sym_yield, - ACTIONS(648), 1, + ACTIONS(681), 1, anon_sym_await, - ACTIONS(672), 1, - anon_sym_RBRACK, - STATE(565), 1, + ACTIONS(687), 1, + anon_sym_in, + STATE(569), 1, sym_string, - STATE(590), 1, - sym_primary_expression, - STATE(910), 1, - sym_expression, - STATE(1120), 1, + STATE(570), 1, + sym_template_string, + STATE(854), 1, sym_pattern, - STATE(1417), 1, - sym__patterns, - STATE(1426), 1, - sym__collection_elements, - ACTIONS(299), 2, + STATE(862), 1, + sym_primary_expression, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(741), 2, - sym_attribute, - sym_subscript, - ACTIONS(594), 3, + ACTIONS(589), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_TILDE, - STATE(833), 3, + STATE(735), 2, + sym_attribute, + sym_subscript, + STATE(853), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, - STATE(1081), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(638), 5, + ACTIONS(673), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(589), 14, + ACTIONS(685), 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, + STATE(649), 15, sym_binary_operator, sym_unary_operator, sym_call, @@ -25161,83 +24259,87 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [1150] = 27, + [1077] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(630), 1, - sym_identifier, - ACTIONS(632), 1, - anon_sym_LPAREN, - ACTIONS(636), 1, - anon_sym_STAR, - ACTIONS(640), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(642), 1, + ACTIONS(635), 1, + anon_sym_STAR, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(644), 1, + ACTIONS(653), 1, anon_sym_lambda, - ACTIONS(646), 1, + ACTIONS(655), 1, anon_sym_yield, - ACTIONS(648), 1, + ACTIONS(689), 1, + sym_identifier, + ACTIONS(691), 1, + anon_sym_LPAREN, + ACTIONS(693), 1, + anon_sym_COMMA, + ACTIONS(697), 1, + anon_sym_RBRACE, + ACTIONS(699), 1, anon_sym_await, - ACTIONS(674), 1, - anon_sym_RBRACK, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(590), 1, + STATE(570), 1, + sym_template_string, + STATE(653), 1, sym_primary_expression, - STATE(910), 1, + STATE(905), 1, sym_expression, - STATE(1120), 1, - sym_pattern, - STATE(1417), 1, - sym__patterns, - STATE(1426), 1, + STATE(1017), 1, + sym_pair, + STATE(1259), 1, + sym_dictionary_splat, + STATE(1456), 1, sym__collection_elements, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(741), 2, - sym_attribute, - sym_subscript, - ACTIONS(594), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(833), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - STATE(1081), 3, + STATE(1095), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(638), 5, + ACTIONS(695), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 14, + STATE(649), 17, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -25249,61 +24351,82 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [1265] = 21, + [1198] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(291), 1, - anon_sym_TILDE, - ACTIONS(305), 1, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, sym__string_start, - ACTIONS(652), 1, - sym_identifier, - ACTIONS(654), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(656), 1, - anon_sym_STAR, - ACTIONS(664), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(666), 1, - anon_sym_await, - ACTIONS(678), 1, - anon_sym_in, - STATE(565), 1, + ACTIONS(635), 1, + anon_sym_STAR, + ACTIONS(637), 1, + anon_sym_not, + STATE(569), 1, sym_string, - STATE(840), 1, - sym_pattern, - STATE(844), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - ACTIONS(299), 2, + STATE(931), 1, + sym_expression, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(582), 2, + STATE(1010), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, - STATE(722), 2, - sym_attribute, - sym_subscript, - STATE(833), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(301), 4, + anon_sym_TILDE, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(658), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(589), 14, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + ACTIONS(701), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + STATE(649), 17, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -25315,81 +24438,70 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - ACTIONS(676), 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, - [1368] = 22, + [1309] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(626), 1, + ACTIONS(635), 1, anon_sym_STAR, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(902), 1, + STATE(931), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1005), 2, + STATE(1010), 2, sym_list_splat, sym_dictionary_splat, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - ACTIONS(680), 7, + ACTIONS(703), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -25397,7 +24509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_EQ, sym_type_conversion, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25413,73 +24525,83 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [1472] = 22, + [1420] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, - anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(626), 1, + ACTIONS(635), 1, anon_sym_STAR, - ACTIONS(628), 1, + ACTIONS(651), 1, anon_sym_not, - STATE(565), 1, + ACTIONS(653), 1, + anon_sym_lambda, + ACTIONS(655), 1, + anon_sym_yield, + ACTIONS(689), 1, + sym_identifier, + ACTIONS(691), 1, + anon_sym_LPAREN, + ACTIONS(699), 1, + anon_sym_await, + ACTIONS(705), 1, + anon_sym_COMMA, + ACTIONS(707), 1, + anon_sym_RBRACE, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(653), 1, sym_primary_expression, - STATE(902), 1, + STATE(887), 1, sym_expression, - ACTIONS(299), 2, + STATE(1006), 1, + sym_pair, + STATE(1215), 1, + sym_dictionary_splat, + STATE(1396), 1, + sym__collection_elements, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1005), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(291), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + STATE(1095), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(695), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - ACTIONS(680), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25495,65 +24617,70 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [1576] = 22, + [1541] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(626), 1, + ACTIONS(635), 1, anon_sym_STAR, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(902), 1, + STATE(931), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1005), 2, + STATE(1010), 2, sym_list_splat, sym_dictionary_splat, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - ACTIONS(682), 7, + ACTIONS(703), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -25561,7 +24688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_EQ, sym_type_conversion, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25577,78 +24704,83 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [1680] = 27, + [1652] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(596), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(626), 1, + ACTIONS(635), 1, anon_sym_STAR, - ACTIONS(642), 1, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(644), 1, + ACTIONS(653), 1, anon_sym_lambda, - ACTIONS(646), 1, + ACTIONS(655), 1, anon_sym_yield, - ACTIONS(684), 1, + ACTIONS(689), 1, sym_identifier, - ACTIONS(686), 1, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(688), 1, + ACTIONS(699), 1, + anon_sym_await, + ACTIONS(709), 1, anon_sym_COMMA, - ACTIONS(692), 1, + ACTIONS(711), 1, anon_sym_RBRACE, - ACTIONS(694), 1, - anon_sym_await, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(590), 1, + STATE(570), 1, + sym_template_string, + STATE(653), 1, sym_primary_expression, - STATE(868), 1, + STATE(886), 1, sym_expression, - STATE(996), 1, + STATE(1025), 1, sym_pair, - STATE(1261), 1, + STATE(1225), 1, sym_dictionary_splat, - STATE(1401), 1, + STATE(1387), 1, sym__collection_elements, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(594), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1081), 3, + STATE(1095), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(690), 5, + ACTIONS(695), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25664,78 +24796,75 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [1794] = 27, + [1773] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(283), 1, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, sym__string_start, - ACTIONS(596), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(626), 1, - anon_sym_STAR, - ACTIONS(642), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(644), 1, - anon_sym_lambda, - ACTIONS(646), 1, + ACTIONS(655), 1, anon_sym_yield, - ACTIONS(684), 1, - sym_identifier, - ACTIONS(686), 1, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(694), 1, - anon_sym_await, - ACTIONS(696), 1, - anon_sym_COMMA, - ACTIONS(698), 1, - anon_sym_RBRACE, - STATE(565), 1, + ACTIONS(717), 1, + anon_sym_STAR, + STATE(569), 1, sym_string, - STATE(590), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(867), 1, + STATE(992), 1, sym_expression, - STATE(1010), 1, - sym_pair, - STATE(1224), 1, - sym_dictionary_splat, - STATE(1355), 1, - sym__collection_elements, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(594), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1081), 3, + ACTIONS(715), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(1118), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(690), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25751,78 +24880,77 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [1908] = 27, + [1881] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(596), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(626), 1, + ACTIONS(635), 1, anon_sym_STAR, - ACTIONS(642), 1, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(644), 1, + ACTIONS(653), 1, anon_sym_lambda, - ACTIONS(646), 1, - anon_sym_yield, - ACTIONS(684), 1, - sym_identifier, - ACTIONS(686), 1, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(694), 1, - anon_sym_await, - ACTIONS(700), 1, + ACTIONS(719), 1, + sym_identifier, + ACTIONS(721), 1, + anon_sym_RPAREN, + ACTIONS(723), 1, anon_sym_COMMA, - ACTIONS(702), 1, - anon_sym_RBRACE, - STATE(565), 1, + ACTIONS(727), 1, + anon_sym_await, + STATE(569), 1, sym_string, - STATE(590), 1, + STATE(570), 1, + sym_template_string, + STATE(653), 1, sym_primary_expression, - STATE(888), 1, + STATE(911), 1, sym_expression, - STATE(990), 1, - sym_pair, - STATE(1247), 1, - sym_dictionary_splat, - STATE(1368), 1, - sym__collection_elements, - ACTIONS(299), 2, + STATE(1261), 1, + sym_parenthesized_list_splat, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(594), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1081), 3, + STATE(1260), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(301), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(690), 5, + ACTIONS(725), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25838,73 +24966,78 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [2022] = 25, + [1993] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(596), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(642), 1, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(644), 1, + ACTIONS(653), 1, anon_sym_lambda, - ACTIONS(646), 1, + ACTIONS(655), 1, anon_sym_yield, - ACTIONS(684), 1, + ACTIONS(689), 1, sym_identifier, - ACTIONS(686), 1, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(699), 1, anon_sym_await, - ACTIONS(704), 1, - anon_sym_RPAREN, - ACTIONS(706), 1, + ACTIONS(717), 1, anon_sym_STAR, - STATE(565), 1, + ACTIONS(729), 1, + anon_sym_RPAREN, + STATE(569), 1, sym_string, - STATE(590), 1, + STATE(570), 1, + sym_template_string, + STATE(653), 1, sym_primary_expression, - STATE(884), 1, + STATE(903), 1, sym_expression, - STATE(1179), 1, - sym_with_item, - STATE(1221), 1, + STATE(1220), 1, sym_yield, - STATE(1456), 1, + STATE(1274), 1, + sym_with_item, + STATE(1391), 1, sym__collection_elements, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1081), 2, + STATE(1095), 2, sym_list_splat, sym_parenthesized_list_splat, - ACTIONS(594), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(690), 5, + ACTIONS(695), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25920,72 +25053,75 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [2129] = 24, + [2107] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(325), 1, - sym_identifier, - ACTIONS(331), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(561), 1, - anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(626), 1, + ACTIONS(637), 1, + anon_sym_not, + ACTIONS(655), 1, + anon_sym_yield, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(717), 1, anon_sym_STAR, - ACTIONS(708), 1, - anon_sym_from, - STATE(689), 1, - sym_primary_expression, - STATE(693), 1, + STATE(569), 1, sym_string, - STATE(956), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(992), 1, sym_expression, - STATE(1253), 1, - sym_expression_list, - ACTIONS(75), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(710), 2, - sym__newline, - sym__semicolon, - STATE(1283), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(47), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(715), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(1118), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(327), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(940), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26001,72 +25137,77 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [2234] = 24, + [2215] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(584), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(626), 1, + ACTIONS(635), 1, anon_sym_STAR, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(712), 1, - sym_identifier, - ACTIONS(714), 1, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(721), 1, anon_sym_RPAREN, - ACTIONS(718), 1, + ACTIONS(723), 1, anon_sym_COMMA, - ACTIONS(722), 1, + ACTIONS(731), 1, + sym_identifier, + ACTIONS(735), 1, anon_sym_await, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1026), 1, + STATE(1060), 1, sym_expression, - STATE(1276), 1, + STATE(1261), 1, sym_parenthesized_list_splat, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1275), 3, + STATE(1260), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(720), 5, + ACTIONS(733), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26082,72 +25223,76 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [2339] = 24, + [2327] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(283), 1, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, sym__string_start, - ACTIONS(596), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(626), 1, + ACTIONS(635), 1, anon_sym_STAR, - ACTIONS(642), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(644), 1, - anon_sym_lambda, - ACTIONS(686), 1, - anon_sym_LPAREN, - ACTIONS(716), 1, - anon_sym_RPAREN, - ACTIONS(718), 1, - anon_sym_COMMA, - ACTIONS(724), 1, - sym_identifier, - ACTIONS(728), 1, - anon_sym_await, - STATE(565), 1, + ACTIONS(655), 1, + anon_sym_yield, + STATE(569), 1, sym_string, - STATE(590), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(895), 1, + STATE(940), 1, sym_expression, - STATE(1276), 1, - sym_parenthesized_list_splat, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(594), 3, + STATE(1375), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1275), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(301), 4, + STATE(1076), 3, + sym_expression_list, + sym_yield, + sym__f_expression, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(726), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26163,71 +25308,76 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [2444] = 23, + [2437] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(626), 1, + ACTIONS(635), 1, anon_sym_STAR, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(646), 1, + ACTIONS(655), 1, anon_sym_yield, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(918), 1, + STATE(940), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1284), 2, + STATE(1375), 2, sym_list_splat, sym_dictionary_splat, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1067), 3, + STATE(1088), 3, sym_expression_list, sym_yield, sym__f_expression, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26243,72 +25393,77 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [2547] = 24, + [2547] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(596), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(626), 1, + ACTIONS(635), 1, anon_sym_STAR, - ACTIONS(642), 1, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(644), 1, + ACTIONS(653), 1, anon_sym_lambda, - ACTIONS(686), 1, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(724), 1, + ACTIONS(719), 1, sym_identifier, - ACTIONS(728), 1, + ACTIONS(727), 1, anon_sym_await, - ACTIONS(730), 1, + ACTIONS(737), 1, anon_sym_RPAREN, - ACTIONS(732), 1, + ACTIONS(739), 1, anon_sym_COMMA, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(590), 1, + STATE(570), 1, + sym_template_string, + STATE(653), 1, sym_primary_expression, - STATE(906), 1, + STATE(933), 1, sym_expression, - STATE(1234), 1, + STATE(1204), 1, sym_parenthesized_list_splat, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(594), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1233), 3, + STATE(1205), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(726), 5, + ACTIONS(725), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26324,72 +25479,77 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [2652] = 24, + [2659] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(596), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(626), 1, + ACTIONS(635), 1, anon_sym_STAR, - ACTIONS(642), 1, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(644), 1, + ACTIONS(653), 1, anon_sym_lambda, - ACTIONS(686), 1, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(724), 1, + ACTIONS(719), 1, sym_identifier, - ACTIONS(728), 1, + ACTIONS(727), 1, anon_sym_await, - ACTIONS(734), 1, + ACTIONS(741), 1, anon_sym_RPAREN, - ACTIONS(736), 1, + ACTIONS(743), 1, anon_sym_COMMA, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(590), 1, + STATE(570), 1, + sym_template_string, + STATE(653), 1, sym_primary_expression, - STATE(901), 1, + STATE(909), 1, sym_expression, - STATE(1202), 1, + STATE(1230), 1, sym_parenthesized_list_splat, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(594), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1159), 3, + STATE(1223), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(726), 5, + ACTIONS(725), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26405,70 +25565,75 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [2757] = 22, + [2771] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(584), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(646), 1, + ACTIONS(655), 1, anon_sym_yield, - ACTIONS(706), 1, - anon_sym_STAR, - ACTIONS(714), 1, + ACTIONS(713), 1, anon_sym_LPAREN, - STATE(565), 1, + ACTIONS(717), 1, + anon_sym_STAR, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(985), 1, + STATE(992), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(738), 3, + ACTIONS(745), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - STATE(1093), 3, + STATE(1118), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26484,71 +25649,163 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [2858] = 23, + [2879] = 26, ACTIONS(3), 1, sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(258), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(488), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(494), 1, + anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + ACTIONS(635), 1, + anon_sym_STAR, + ACTIONS(747), 1, + anon_sym_from, + STATE(698), 1, + sym_string, + STATE(700), 1, + sym_template_string, + STATE(702), 1, + sym_primary_expression, + STATE(989), 1, + sym_expression, + STATE(1228), 1, + sym_expression_list, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(749), 2, + sym__newline, + sym__semicolon, + STATE(1328), 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(490), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(955), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(760), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [2991] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_await, - ACTIONS(305), 1, + ACTIONS(81), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(494), 1, + anon_sym_await, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - ACTIONS(626), 1, + ACTIONS(635), 1, anon_sym_STAR, - ACTIONS(628), 1, - anon_sym_not, - ACTIONS(646), 1, - anon_sym_yield, - STATE(565), 1, + ACTIONS(751), 1, + anon_sym_from, + STATE(698), 1, sym_string, - STATE(595), 1, + STATE(700), 1, + sym_template_string, + STATE(702), 1, sym_primary_expression, - STATE(918), 1, + STATE(1030), 1, sym_expression, - ACTIONS(299), 2, + STATE(1330), 1, + sym_expression_list, + ACTIONS(75), 2, sym_ellipsis, sym_float, - STATE(1284), 2, + ACTIONS(633), 2, + sym__newline, + sym__semicolon, + STATE(1328), 2, sym_list_splat, sym_dictionary_splat, - ACTIONS(291), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1060), 3, - sym_expression_list, - sym_yield, - sym__f_expression, - ACTIONS(301), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(490), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(955), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(760), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26564,70 +25821,75 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [2961] = 22, + [3103] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(584), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, - anon_sym_not, - ACTIONS(646), 1, - anon_sym_yield, - ACTIONS(706), 1, + ACTIONS(635), 1, anon_sym_STAR, - ACTIONS(714), 1, + ACTIONS(637), 1, + anon_sym_not, + ACTIONS(713), 1, anon_sym_LPAREN, - STATE(565), 1, + ACTIONS(731), 1, + sym_identifier, + ACTIONS(735), 1, + anon_sym_await, + ACTIONS(753), 1, + anon_sym_RPAREN, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(985), 1, + STATE(1102), 1, sym_expression, - ACTIONS(299), 2, + STATE(1368), 1, + sym_parenthesized_list_splat, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(740), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(1093), 3, + STATE(1310), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(301), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(733), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26643,151 +25905,75 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [3062] = 22, + [3212] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(584), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, - anon_sym_not, - ACTIONS(646), 1, - anon_sym_yield, - ACTIONS(706), 1, + ACTIONS(635), 1, anon_sym_STAR, - ACTIONS(714), 1, + ACTIONS(637), 1, + anon_sym_not, + ACTIONS(713), 1, anon_sym_LPAREN, - STATE(565), 1, + ACTIONS(731), 1, + sym_identifier, + ACTIONS(735), 1, + anon_sym_await, + ACTIONS(755), 1, + anon_sym_RPAREN, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(985), 1, + STATE(1102), 1, sym_expression, - ACTIONS(299), 2, + STATE(1368), 1, + sym_parenthesized_list_splat, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(740), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(1093), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(301), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(271), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(863), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(589), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [3163] = 24, - 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(325), 1, - sym_identifier, - ACTIONS(331), 1, - anon_sym_await, - ACTIONS(561), 1, - anon_sym_LPAREN, - ACTIONS(567), 1, - anon_sym_LBRACK, - ACTIONS(626), 1, - anon_sym_STAR, - ACTIONS(742), 1, - anon_sym_from, - STATE(689), 1, - sym_primary_expression, - STATE(693), 1, - sym_string, - STATE(1008), 1, - sym_expression, - STATE(1315), 1, - sym_expression_list, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(624), 2, - sym__newline, - sym__semicolon, - STATE(1283), 2, + STATE(1310), 3, sym_list_splat, sym_dictionary_splat, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, + sym_keyword_argument, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(327), 5, + ACTIONS(733), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(940), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26803,68 +25989,73 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [3268] = 21, + [3321] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(590), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(642), 1, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(684), 1, + ACTIONS(689), 1, sym_identifier, - ACTIONS(694), 1, + ACTIONS(699), 1, anon_sym_await, - ACTIONS(748), 1, + ACTIONS(761), 1, anon_sym_lambda, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(590), 1, + STATE(570), 1, + sym_template_string, + STATE(653), 1, sym_primary_expression, - STATE(920), 1, + STATE(945), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(986), 2, + STATE(1020), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(594), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(744), 3, + ACTIONS(757), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(746), 3, + ACTIONS(759), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(690), 4, + ACTIONS(695), 4, anon_sym_print, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26880,70 +26071,75 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [3366] = 23, + [3426] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(310), 1, sym__string_start, - ACTIONS(596), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(642), 1, + ACTIONS(635), 1, + anon_sym_STAR, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(644), 1, - anon_sym_lambda, - ACTIONS(646), 1, - anon_sym_yield, - ACTIONS(684), 1, - sym_identifier, - ACTIONS(686), 1, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(731), 1, + sym_identifier, + ACTIONS(735), 1, anon_sym_await, - ACTIONS(706), 1, - anon_sym_STAR, - ACTIONS(750), 1, - anon_sym_RBRACK, - STATE(565), 1, + ACTIONS(763), 1, + anon_sym_RPAREN, + STATE(569), 1, sym_string, - STATE(590), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(911), 1, + STATE(1102), 1, sym_expression, - STATE(1462), 1, - sym__collection_elements, - ACTIONS(299), 2, + STATE(1368), 1, + sym_parenthesized_list_splat, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(594), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1081), 3, + STATE(1310), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(301), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(690), 5, + ACTIONS(733), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26959,71 +26155,75 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [3468] = 24, + [3535] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(310), 1, sym__string_start, - ACTIONS(596), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(642), 1, + ACTIONS(635), 1, + anon_sym_STAR, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(644), 1, - anon_sym_lambda, - ACTIONS(646), 1, - anon_sym_yield, - ACTIONS(684), 1, - sym_identifier, - ACTIONS(686), 1, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(731), 1, + sym_identifier, + ACTIONS(735), 1, anon_sym_await, - ACTIONS(706), 1, - anon_sym_STAR, - ACTIONS(752), 1, + ACTIONS(765), 1, anon_sym_RPAREN, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(590), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(900), 1, + STATE(1102), 1, sym_expression, - STATE(1156), 1, - sym_yield, - STATE(1420), 1, - sym__collection_elements, - ACTIONS(299), 2, + STATE(1368), 1, + sym_parenthesized_list_splat, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1081), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(594), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + STATE(1310), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(690), 5, + ACTIONS(733), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27039,70 +26239,75 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [3572] = 23, + [3644] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(310), 1, sym__string_start, - ACTIONS(596), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(642), 1, + ACTIONS(635), 1, + anon_sym_STAR, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(644), 1, - anon_sym_lambda, - ACTIONS(646), 1, - anon_sym_yield, - ACTIONS(684), 1, - sym_identifier, - ACTIONS(686), 1, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(731), 1, + sym_identifier, + ACTIONS(735), 1, anon_sym_await, - ACTIONS(706), 1, - anon_sym_STAR, - ACTIONS(754), 1, - anon_sym_RBRACK, - STATE(565), 1, + ACTIONS(767), 1, + anon_sym_RPAREN, + STATE(569), 1, sym_string, - STATE(590), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(893), 1, + STATE(1102), 1, sym_expression, - STATE(1443), 1, - sym__collection_elements, - ACTIONS(299), 2, + STATE(1368), 1, + sym_parenthesized_list_splat, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(594), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1081), 3, + STATE(1310), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(301), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(690), 5, + ACTIONS(733), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27118,72 +26323,75 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [3674] = 25, + [3753] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(310), 1, sym__string_start, - ACTIONS(596), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(642), 1, + ACTIONS(635), 1, + anon_sym_STAR, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(644), 1, - anon_sym_lambda, - ACTIONS(646), 1, - anon_sym_yield, - ACTIONS(684), 1, - sym_identifier, - ACTIONS(686), 1, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(731), 1, + sym_identifier, + ACTIONS(735), 1, anon_sym_await, - ACTIONS(704), 1, + ACTIONS(769), 1, anon_sym_RPAREN, - ACTIONS(706), 1, - anon_sym_STAR, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(590), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(894), 1, + STATE(1102), 1, sym_expression, - STATE(1222), 1, - sym_list_splat, - STATE(1223), 1, + STATE(1368), 1, sym_parenthesized_list_splat, - STATE(1242), 1, - sym_yield, - STATE(1378), 1, - sym__collection_elements, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(594), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + STATE(1310), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(690), 5, + ACTIONS(733), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27199,45 +26407,50 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [3780] = 23, + [3862] = 25, 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(325), 1, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(488), 1, sym_identifier, - ACTIONS(331), 1, + ACTIONS(494), 1, anon_sym_await, - ACTIONS(561), 1, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - ACTIONS(756), 1, - anon_sym_from, - ACTIONS(758), 1, + ACTIONS(635), 1, anon_sym_STAR, - ACTIONS(760), 1, - anon_sym_STAR_STAR, - STATE(689), 1, - sym_primary_expression, - STATE(693), 1, + STATE(698), 1, sym_string, - STATE(998), 1, + STATE(700), 1, + sym_template_string, + STATE(702), 1, + sym_primary_expression, + STATE(1031), 1, sym_expression, + STATE(1377), 1, + sym_expression_list, ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(680), 2, + ACTIONS(771), 2, sym__newline, sym__semicolon, - STATE(1128), 2, + STATE(1328), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(47), 3, @@ -27249,20 +26462,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(327), 5, + ACTIONS(490), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(940), 6, + STATE(955), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 16, + STATE(760), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27278,70 +26491,75 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [3882] = 23, + [3971] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(325), 1, - sym_identifier, - ACTIONS(331), 1, - anon_sym_await, - ACTIONS(561), 1, - anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(756), 1, - anon_sym_from, - ACTIONS(758), 1, + ACTIONS(635), 1, anon_sym_STAR, - ACTIONS(760), 1, - anon_sym_STAR_STAR, - STATE(689), 1, - sym_primary_expression, - STATE(693), 1, + ACTIONS(637), 1, + anon_sym_not, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(731), 1, + sym_identifier, + ACTIONS(735), 1, + anon_sym_await, + ACTIONS(773), 1, + anon_sym_RPAREN, + STATE(569), 1, sym_string, - STATE(998), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1102), 1, sym_expression, - ACTIONS(75), 2, + STATE(1368), 1, + sym_parenthesized_list_splat, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(680), 2, - sym__newline, - sym__semicolon, - STATE(1128), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(47), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + STATE(1310), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(327), 5, + ACTIONS(733), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(940), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27357,70 +26575,75 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [3984] = 23, + [4080] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(283), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(305), 1, + ACTIONS(81), 1, sym__string_start, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(626), 1, - anon_sym_STAR, - ACTIONS(628), 1, - anon_sym_not, - ACTIONS(712), 1, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(488), 1, sym_identifier, - ACTIONS(714), 1, - anon_sym_LPAREN, - ACTIONS(722), 1, + ACTIONS(494), 1, anon_sym_await, - ACTIONS(762), 1, - anon_sym_RPAREN, - STATE(565), 1, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + ACTIONS(775), 1, + anon_sym_from, + ACTIONS(777), 1, + anon_sym_STAR, + ACTIONS(779), 1, + anon_sym_STAR_STAR, + STATE(698), 1, sym_string, - STATE(595), 1, + STATE(700), 1, + sym_template_string, + STATE(702), 1, sym_primary_expression, - STATE(1073), 1, + STATE(1002), 1, sym_expression, - STATE(1318), 1, - sym_parenthesized_list_splat, - ACTIONS(299), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(703), 2, + sym__newline, + sym__semicolon, + STATE(1168), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1314), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(301), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(720), 5, + ACTIONS(490), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(955), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(760), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27436,70 +26659,75 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [4086] = 23, + [4189] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(584), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(626), 1, - anon_sym_STAR, - ACTIONS(628), 1, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(712), 1, + ACTIONS(653), 1, + anon_sym_lambda, + ACTIONS(655), 1, + anon_sym_yield, + ACTIONS(689), 1, sym_identifier, - ACTIONS(714), 1, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(722), 1, + ACTIONS(699), 1, anon_sym_await, - ACTIONS(764), 1, - anon_sym_RPAREN, - STATE(565), 1, + ACTIONS(717), 1, + anon_sym_STAR, + ACTIONS(781), 1, + anon_sym_RBRACK, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(653), 1, sym_primary_expression, - STATE(1073), 1, + STATE(912), 1, sym_expression, - STATE(1318), 1, - sym_parenthesized_list_splat, - ACTIONS(299), 2, + STATE(1390), 1, + sym__collection_elements, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1314), 3, + STATE(1095), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(301), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(720), 5, + ACTIONS(695), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27515,70 +26743,75 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [4188] = 23, + [4298] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(283), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(305), 1, + ACTIONS(81), 1, sym__string_start, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(626), 1, - anon_sym_STAR, - ACTIONS(628), 1, - anon_sym_not, - ACTIONS(712), 1, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(488), 1, sym_identifier, - ACTIONS(714), 1, - anon_sym_LPAREN, - ACTIONS(722), 1, + ACTIONS(494), 1, anon_sym_await, - ACTIONS(766), 1, - anon_sym_RPAREN, - STATE(565), 1, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + ACTIONS(775), 1, + anon_sym_from, + ACTIONS(777), 1, + anon_sym_STAR, + ACTIONS(779), 1, + anon_sym_STAR_STAR, + STATE(698), 1, sym_string, - STATE(595), 1, + STATE(700), 1, + sym_template_string, + STATE(702), 1, sym_primary_expression, - STATE(1073), 1, + STATE(1002), 1, sym_expression, - STATE(1318), 1, - sym_parenthesized_list_splat, - ACTIONS(299), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(703), 2, + sym__newline, + sym__semicolon, + STATE(1168), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1314), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(301), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(720), 5, + ACTIONS(490), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(955), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(760), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27594,70 +26827,76 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [4290] = 23, + [4407] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(584), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(626), 1, - anon_sym_STAR, - ACTIONS(628), 1, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(712), 1, + ACTIONS(653), 1, + anon_sym_lambda, + ACTIONS(655), 1, + anon_sym_yield, + ACTIONS(689), 1, sym_identifier, - ACTIONS(714), 1, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(722), 1, + ACTIONS(699), 1, anon_sym_await, - ACTIONS(768), 1, + ACTIONS(717), 1, + anon_sym_STAR, + ACTIONS(729), 1, anon_sym_RPAREN, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(653), 1, sym_primary_expression, - STATE(1073), 1, + STATE(930), 1, sym_expression, - STATE(1318), 1, - sym_parenthesized_list_splat, - ACTIONS(299), 2, + STATE(1218), 1, + sym_yield, + STATE(1480), 1, + sym__collection_elements, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + STATE(1095), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1314), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(720), 5, + ACTIONS(695), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27673,70 +26912,73 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [4392] = 23, + [4518] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(584), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, + anon_sym_LPAREN, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(626), 1, - anon_sym_STAR, - ACTIONS(628), 1, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(712), 1, + ACTIONS(689), 1, sym_identifier, - ACTIONS(714), 1, - anon_sym_LPAREN, - ACTIONS(722), 1, + ACTIONS(699), 1, anon_sym_await, - ACTIONS(770), 1, - anon_sym_RPAREN, - STATE(565), 1, + ACTIONS(761), 1, + anon_sym_lambda, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(653), 1, sym_primary_expression, - STATE(1073), 1, + STATE(945), 1, sym_expression, - STATE(1318), 1, - sym_parenthesized_list_splat, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + STATE(1020), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1314), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(301), 4, + ACTIONS(783), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(785), 3, + anon_sym_if, + anon_sym_async, + anon_sym_for, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(720), 5, + ACTIONS(695), 4, anon_sym_print, - anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27752,70 +26994,73 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [4494] = 23, + [4623] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(584), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, + anon_sym_LPAREN, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(626), 1, - anon_sym_STAR, - ACTIONS(628), 1, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(712), 1, + ACTIONS(689), 1, sym_identifier, - ACTIONS(714), 1, - anon_sym_LPAREN, - ACTIONS(722), 1, + ACTIONS(699), 1, anon_sym_await, - ACTIONS(772), 1, - anon_sym_RPAREN, - STATE(565), 1, + ACTIONS(761), 1, + anon_sym_lambda, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(653), 1, sym_primary_expression, - STATE(1073), 1, + STATE(945), 1, sym_expression, - STATE(1318), 1, - sym_parenthesized_list_splat, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + STATE(1020), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1314), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(301), 4, + ACTIONS(787), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(789), 3, + anon_sym_if, + anon_sym_async, + anon_sym_for, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(720), 5, + ACTIONS(695), 4, anon_sym_print, - anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27831,70 +27076,75 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [4596] = 23, + [4728] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(584), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(626), 1, + ACTIONS(635), 1, anon_sym_STAR, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(712), 1, - sym_identifier, - ACTIONS(714), 1, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(722), 1, + ACTIONS(731), 1, + sym_identifier, + ACTIONS(735), 1, anon_sym_await, - ACTIONS(774), 1, + ACTIONS(791), 1, anon_sym_RPAREN, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1073), 1, + STATE(1102), 1, sym_expression, - STATE(1318), 1, + STATE(1368), 1, sym_parenthesized_list_splat, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1314), 3, + STATE(1310), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(720), 5, + ACTIONS(733), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27910,70 +27160,75 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [4698] = 23, + [4837] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(584), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(626), 1, + ACTIONS(635), 1, anon_sym_STAR, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(712), 1, - sym_identifier, - ACTIONS(714), 1, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(722), 1, + ACTIONS(731), 1, + sym_identifier, + ACTIONS(735), 1, anon_sym_await, - ACTIONS(776), 1, + ACTIONS(793), 1, anon_sym_RPAREN, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1073), 1, + STATE(1102), 1, sym_expression, - STATE(1318), 1, + STATE(1368), 1, sym_parenthesized_list_splat, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1314), 3, + STATE(1310), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(720), 5, + ACTIONS(733), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27989,147 +27244,73 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [4800] = 23, + [4946] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(288), 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, + ACTIONS(310), 1, sym__string_start, - ACTIONS(325), 1, - sym_identifier, - ACTIONS(331), 1, - anon_sym_await, - ACTIONS(561), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(626), 1, - anon_sym_STAR, - STATE(689), 1, - sym_primary_expression, - STATE(693), 1, - sym_string, - STATE(994), 1, - sym_expression, - STATE(1298), 1, - sym_expression_list, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(778), 2, - sym__newline, - sym__semicolon, - STATE(1283), 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(327), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(940), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(773), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [4902] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(590), 1, - anon_sym_LPAREN, - ACTIONS(596), 1, - anon_sym_LBRACK, - ACTIONS(642), 1, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(684), 1, + ACTIONS(689), 1, sym_identifier, - ACTIONS(694), 1, + ACTIONS(699), 1, anon_sym_await, - ACTIONS(748), 1, + ACTIONS(761), 1, anon_sym_lambda, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(590), 1, + STATE(570), 1, + sym_template_string, + STATE(653), 1, sym_primary_expression, - STATE(920), 1, + STATE(945), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(986), 2, + STATE(1020), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(594), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(780), 3, + ACTIONS(795), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(782), 3, + ACTIONS(797), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(690), 4, + ACTIONS(695), 4, anon_sym_print, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28145,72 +27326,75 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [5000] = 25, + [5051] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(310), 1, sym__string_start, - ACTIONS(596), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(642), 1, + ACTIONS(635), 1, + anon_sym_STAR, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(644), 1, - anon_sym_lambda, - ACTIONS(646), 1, - anon_sym_yield, - ACTIONS(684), 1, - sym_identifier, - ACTIONS(686), 1, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(731), 1, + sym_identifier, + ACTIONS(735), 1, anon_sym_await, - ACTIONS(706), 1, - anon_sym_STAR, - ACTIONS(784), 1, + ACTIONS(799), 1, anon_sym_RPAREN, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(590), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(894), 1, + STATE(1102), 1, sym_expression, - STATE(1222), 1, - sym_list_splat, - STATE(1223), 1, + STATE(1368), 1, sym_parenthesized_list_splat, - STATE(1242), 1, - sym_yield, - STATE(1378), 1, - sym__collection_elements, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(594), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + STATE(1310), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(690), 5, + ACTIONS(733), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28226,71 +27410,75 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [5106] = 24, + [5160] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(310), 1, sym__string_start, - ACTIONS(596), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(642), 1, + ACTIONS(635), 1, + anon_sym_STAR, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(644), 1, - anon_sym_lambda, - ACTIONS(646), 1, - anon_sym_yield, - ACTIONS(684), 1, - sym_identifier, - ACTIONS(686), 1, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(731), 1, + sym_identifier, + ACTIONS(735), 1, anon_sym_await, - ACTIONS(704), 1, + ACTIONS(801), 1, anon_sym_RPAREN, - ACTIONS(706), 1, - anon_sym_STAR, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(590), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(894), 1, + STATE(1102), 1, sym_expression, - STATE(1242), 1, - sym_yield, - STATE(1378), 1, - sym__collection_elements, - ACTIONS(299), 2, + STATE(1368), 1, + sym_parenthesized_list_splat, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1081), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(594), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + STATE(1310), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(690), 5, + ACTIONS(733), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28306,70 +27494,77 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [5210] = 23, + [5269] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(584), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(626), 1, - anon_sym_STAR, - ACTIONS(628), 1, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(712), 1, + ACTIONS(653), 1, + anon_sym_lambda, + ACTIONS(655), 1, + anon_sym_yield, + ACTIONS(689), 1, sym_identifier, - ACTIONS(714), 1, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(722), 1, + ACTIONS(699), 1, anon_sym_await, - ACTIONS(786), 1, + ACTIONS(717), 1, + anon_sym_STAR, + ACTIONS(803), 1, anon_sym_RPAREN, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(653), 1, sym_primary_expression, - STATE(1073), 1, + STATE(930), 1, sym_expression, - STATE(1318), 1, + STATE(1218), 1, + sym_yield, + STATE(1303), 1, sym_parenthesized_list_splat, - ACTIONS(299), 2, + STATE(1304), 1, + sym_list_splat, + STATE(1480), 1, + sym__collection_elements, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1314), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(720), 5, + ACTIONS(695), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28385,70 +27580,75 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [5312] = 23, + [5382] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(584), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(626), 1, + ACTIONS(635), 1, anon_sym_STAR, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(712), 1, - sym_identifier, - ACTIONS(714), 1, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(722), 1, + ACTIONS(731), 1, + sym_identifier, + ACTIONS(735), 1, anon_sym_await, - ACTIONS(788), 1, + ACTIONS(805), 1, anon_sym_RPAREN, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1073), 1, + STATE(1102), 1, sym_expression, - STATE(1318), 1, + STATE(1368), 1, sym_parenthesized_list_splat, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1314), 3, + STATE(1310), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(720), 5, + ACTIONS(733), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28464,68 +27664,75 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [5414] = 21, + [5491] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(590), 1, - anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(642), 1, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(684), 1, + ACTIONS(653), 1, + anon_sym_lambda, + ACTIONS(655), 1, + anon_sym_yield, + ACTIONS(689), 1, sym_identifier, - ACTIONS(694), 1, + ACTIONS(691), 1, + anon_sym_LPAREN, + ACTIONS(699), 1, anon_sym_await, - ACTIONS(748), 1, - anon_sym_lambda, - STATE(565), 1, + ACTIONS(717), 1, + anon_sym_STAR, + ACTIONS(807), 1, + anon_sym_RBRACK, + STATE(569), 1, sym_string, - STATE(590), 1, + STATE(570), 1, + sym_template_string, + STATE(653), 1, sym_primary_expression, - STATE(920), 1, + STATE(908), 1, sym_expression, - ACTIONS(299), 2, + STATE(1438), 1, + sym__collection_elements, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(986), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(594), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(790), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(792), 3, - anon_sym_if, - anon_sym_async, - anon_sym_for, - ACTIONS(301), 4, + STATE(1095), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(690), 4, + ACTIONS(695), 5, anon_sym_print, + anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28541,71 +27748,76 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [5512] = 24, + [5600] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(596), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(642), 1, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(644), 1, + ACTIONS(653), 1, anon_sym_lambda, - ACTIONS(646), 1, + ACTIONS(655), 1, anon_sym_yield, - ACTIONS(684), 1, + ACTIONS(689), 1, sym_identifier, - ACTIONS(686), 1, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(699), 1, anon_sym_await, - ACTIONS(706), 1, + ACTIONS(717), 1, anon_sym_STAR, - ACTIONS(784), 1, + ACTIONS(729), 1, anon_sym_RPAREN, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(590), 1, + STATE(570), 1, + sym_template_string, + STATE(653), 1, sym_primary_expression, - STATE(894), 1, + STATE(921), 1, sym_expression, - STATE(1242), 1, + STATE(1220), 1, sym_yield, - STATE(1378), 1, + STATE(1391), 1, sym__collection_elements, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1081), 2, + STATE(1095), 2, sym_list_splat, sym_parenthesized_list_splat, - ACTIONS(594), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(690), 5, + ACTIONS(695), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28621,70 +27833,75 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [5616] = 23, + [5711] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(596), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(642), 1, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(644), 1, + ACTIONS(653), 1, anon_sym_lambda, - ACTIONS(646), 1, + ACTIONS(655), 1, anon_sym_yield, - ACTIONS(684), 1, + ACTIONS(689), 1, sym_identifier, - ACTIONS(686), 1, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(699), 1, anon_sym_await, - ACTIONS(706), 1, + ACTIONS(717), 1, anon_sym_STAR, - ACTIONS(794), 1, + ACTIONS(781), 1, anon_sym_RBRACK, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(590), 1, + STATE(570), 1, + sym_template_string, + STATE(653), 1, sym_primary_expression, - STATE(910), 1, + STATE(928), 1, sym_expression, - STATE(1426), 1, + STATE(1393), 1, sym__collection_elements, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(594), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1081), 3, + STATE(1095), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(690), 5, + ACTIONS(695), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28700,70 +27917,75 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [5718] = 23, + [5820] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(325), 1, - sym_identifier, - ACTIONS(331), 1, - anon_sym_await, - ACTIONS(561), 1, - anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(758), 1, + ACTIONS(635), 1, anon_sym_STAR, - ACTIONS(760), 1, - anon_sym_STAR_STAR, - ACTIONS(796), 1, - anon_sym_from, - STATE(689), 1, - sym_primary_expression, - STATE(693), 1, + ACTIONS(637), 1, + anon_sym_not, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(731), 1, + sym_identifier, + ACTIONS(735), 1, + anon_sym_await, + ACTIONS(809), 1, + anon_sym_RPAREN, + STATE(569), 1, sym_string, - STATE(998), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1102), 1, sym_expression, - ACTIONS(75), 2, + STATE(1368), 1, + sym_parenthesized_list_splat, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(682), 2, - sym__newline, - sym__semicolon, - STATE(1128), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(47), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + STATE(1310), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(327), 5, + ACTIONS(733), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(940), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28779,70 +28001,75 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [5820] = 23, + [5929] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(596), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(642), 1, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(644), 1, + ACTIONS(653), 1, anon_sym_lambda, - ACTIONS(646), 1, + ACTIONS(655), 1, anon_sym_yield, - ACTIONS(684), 1, + ACTIONS(689), 1, sym_identifier, - ACTIONS(686), 1, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(699), 1, anon_sym_await, - ACTIONS(706), 1, + ACTIONS(717), 1, anon_sym_STAR, - ACTIONS(750), 1, + ACTIONS(811), 1, anon_sym_RBRACK, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(590), 1, + STATE(570), 1, + sym_template_string, + STATE(653), 1, sym_primary_expression, - STATE(910), 1, + STATE(912), 1, sym_expression, - STATE(1426), 1, + STATE(1390), 1, sym__collection_elements, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(594), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1081), 3, + STATE(1095), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(690), 5, + ACTIONS(695), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28858,149 +28085,76 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [5922] = 23, + [6038] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(584), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(626), 1, - anon_sym_STAR, - ACTIONS(628), 1, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(712), 1, + ACTIONS(653), 1, + anon_sym_lambda, + ACTIONS(655), 1, + anon_sym_yield, + ACTIONS(689), 1, sym_identifier, - ACTIONS(714), 1, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(722), 1, + ACTIONS(699), 1, anon_sym_await, - ACTIONS(798), 1, + ACTIONS(717), 1, + anon_sym_STAR, + ACTIONS(813), 1, anon_sym_RPAREN, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(653), 1, sym_primary_expression, - STATE(1073), 1, + STATE(935), 1, sym_expression, - STATE(1318), 1, - sym_parenthesized_list_splat, - ACTIONS(299), 2, + STATE(1197), 1, + sym_yield, + STATE(1409), 1, + sym__collection_elements, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(1314), 3, + STATE(1095), 2, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(301), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(720), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(863), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(589), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [6024] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(626), 1, - anon_sym_STAR, - ACTIONS(628), 1, - anon_sym_not, - ACTIONS(712), 1, - sym_identifier, - ACTIONS(714), 1, - anon_sym_LPAREN, - ACTIONS(722), 1, - anon_sym_await, - ACTIONS(800), 1, - anon_sym_RPAREN, - STATE(565), 1, - sym_string, - STATE(595), 1, - sym_primary_expression, - STATE(1073), 1, - sym_expression, - STATE(1318), 1, sym_parenthesized_list_splat, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - ACTIONS(291), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1314), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(720), 5, + ACTIONS(695), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29016,70 +28170,76 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [6126] = 23, + [6149] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(584), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(626), 1, - anon_sym_STAR, - ACTIONS(628), 1, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(712), 1, + ACTIONS(653), 1, + anon_sym_lambda, + ACTIONS(655), 1, + anon_sym_yield, + ACTIONS(689), 1, sym_identifier, - ACTIONS(714), 1, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(722), 1, + ACTIONS(699), 1, anon_sym_await, - ACTIONS(802), 1, + ACTIONS(717), 1, + anon_sym_STAR, + ACTIONS(803), 1, anon_sym_RPAREN, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(653), 1, sym_primary_expression, - STATE(1073), 1, + STATE(930), 1, sym_expression, - STATE(1318), 1, - sym_parenthesized_list_splat, - ACTIONS(299), 2, + STATE(1218), 1, + sym_yield, + STATE(1480), 1, + sym__collection_elements, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + STATE(1095), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1314), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(720), 5, + ACTIONS(695), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29095,70 +28255,77 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [6228] = 23, + [6260] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(584), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(626), 1, - anon_sym_STAR, - ACTIONS(628), 1, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(712), 1, + ACTIONS(653), 1, + anon_sym_lambda, + ACTIONS(655), 1, + anon_sym_yield, + ACTIONS(689), 1, sym_identifier, - ACTIONS(714), 1, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(722), 1, + ACTIONS(699), 1, anon_sym_await, - ACTIONS(804), 1, + ACTIONS(717), 1, + anon_sym_STAR, + ACTIONS(729), 1, anon_sym_RPAREN, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(653), 1, sym_primary_expression, - STATE(1073), 1, + STATE(930), 1, sym_expression, - STATE(1318), 1, + STATE(1218), 1, + sym_yield, + STATE(1303), 1, sym_parenthesized_list_splat, - ACTIONS(299), 2, + STATE(1304), 1, + sym_list_splat, + STATE(1480), 1, + sym__collection_elements, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1314), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(720), 5, + ACTIONS(695), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29174,70 +28341,75 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [6330] = 23, + [6373] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(584), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(626), 1, + ACTIONS(635), 1, anon_sym_STAR, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(712), 1, - sym_identifier, - ACTIONS(714), 1, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(722), 1, + ACTIONS(731), 1, + sym_identifier, + ACTIONS(735), 1, anon_sym_await, - ACTIONS(806), 1, + ACTIONS(815), 1, anon_sym_RPAREN, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1073), 1, + STATE(1102), 1, sym_expression, - STATE(1318), 1, + STATE(1368), 1, sym_parenthesized_list_splat, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1314), 3, + STATE(1310), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(720), 5, + ACTIONS(733), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29253,71 +28425,75 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [6432] = 24, + [6482] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(596), 1, - anon_sym_LBRACK, - ACTIONS(642), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(644), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(646), 1, - anon_sym_yield, - ACTIONS(684), 1, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(488), 1, sym_identifier, - ACTIONS(686), 1, - anon_sym_LPAREN, - ACTIONS(694), 1, + ACTIONS(494), 1, anon_sym_await, - ACTIONS(704), 1, - anon_sym_RPAREN, - ACTIONS(706), 1, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + ACTIONS(777), 1, anon_sym_STAR, - STATE(565), 1, + ACTIONS(779), 1, + anon_sym_STAR_STAR, + ACTIONS(817), 1, + anon_sym_from, + STATE(698), 1, sym_string, - STATE(590), 1, + STATE(700), 1, + sym_template_string, + STATE(702), 1, sym_primary_expression, - STATE(905), 1, + STATE(1002), 1, sym_expression, - STATE(1221), 1, - sym_yield, - STATE(1456), 1, - sym__collection_elements, - ACTIONS(299), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - STATE(1081), 2, + ACTIONS(701), 2, + sym__newline, + sym__semicolon, + STATE(1168), 2, sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(594), 3, + sym_dictionary_splat, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(690), 5, + ACTIONS(490), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(955), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(760), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29333,145 +28509,75 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [6536] = 21, + [6591] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(310), 1, sym__string_start, - ACTIONS(590), 1, - anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(642), 1, + ACTIONS(635), 1, + anon_sym_STAR, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(684), 1, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(731), 1, sym_identifier, - ACTIONS(694), 1, + ACTIONS(735), 1, anon_sym_await, - ACTIONS(748), 1, - anon_sym_lambda, - STATE(565), 1, - sym_string, - STATE(590), 1, - sym_primary_expression, - STATE(920), 1, - sym_expression, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - STATE(986), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(594), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(808), 3, + ACTIONS(819), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(810), 3, - anon_sym_if, - anon_sym_async, - anon_sym_for, - ACTIONS(301), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(690), 4, - anon_sym_print, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(863), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(589), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [6634] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_await, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(571), 1, - anon_sym_LPAREN, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(628), 1, - anon_sym_not, - ACTIONS(706), 1, - anon_sym_STAR, - ACTIONS(812), 1, - anon_sym_COLON, - ACTIONS(814), 1, - anon_sym_RBRACK, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1043), 1, + STATE(1102), 1, sym_expression, - ACTIONS(299), 2, + STATE(1368), 1, + sym_parenthesized_list_splat, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1332), 3, + STATE(1310), 3, sym_list_splat, - sym__index_expression, - sym_slice, - ACTIONS(301), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(733), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29487,68 +28593,73 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [6733] = 22, + [6700] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, - anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, - anon_sym_not, - ACTIONS(706), 1, + ACTIONS(635), 1, anon_sym_STAR, - ACTIONS(812), 1, - anon_sym_COLON, - ACTIONS(816), 1, - anon_sym_RBRACK, - STATE(565), 1, + ACTIONS(637), 1, + anon_sym_not, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(731), 1, + sym_identifier, + ACTIONS(735), 1, + anon_sym_await, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1043), 1, + STATE(1102), 1, sym_expression, - ACTIONS(299), 2, + STATE(1368), 1, + sym_parenthesized_list_splat, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1332), 3, + STATE(1310), 3, sym_list_splat, - sym__index_expression, - sym_slice, - ACTIONS(301), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(733), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29564,68 +28675,73 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [6832] = 22, + [6806] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(706), 1, + ACTIONS(717), 1, anon_sym_STAR, - ACTIONS(812), 1, + ACTIONS(821), 1, anon_sym_COLON, - STATE(565), 1, + ACTIONS(823), 1, + anon_sym_RBRACK, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1043), 1, + STATE(1042), 1, sym_expression, - STATE(1389), 1, - sym_index_expression_list, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1187), 3, + STATE(1371), 3, sym_list_splat, sym__index_expression, sym_slice, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29641,68 +28757,73 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [6931] = 22, + [6912] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(584), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(646), 1, - anon_sym_yield, - ACTIONS(706), 1, + ACTIONS(717), 1, anon_sym_STAR, - ACTIONS(714), 1, - anon_sym_LPAREN, - ACTIONS(740), 1, - anon_sym_RPAREN, - STATE(565), 1, + ACTIONS(821), 1, + anon_sym_COLON, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(985), 1, + STATE(1042), 1, sym_expression, - ACTIONS(299), 2, + STATE(1454), 1, + sym_index_expression_list, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1093), 3, + STATE(1243), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(301), 4, + sym__index_expression, + sym_slice, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29718,68 +28839,73 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [7030] = 22, + [7018] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(584), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(646), 1, - anon_sym_yield, - ACTIONS(706), 1, + ACTIONS(717), 1, anon_sym_STAR, - ACTIONS(714), 1, - anon_sym_LPAREN, - ACTIONS(740), 1, - anon_sym_RPAREN, - STATE(565), 1, + ACTIONS(821), 1, + anon_sym_COLON, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(985), 1, + STATE(1042), 1, sym_expression, - ACTIONS(299), 2, + STATE(1407), 1, + sym_index_expression_list, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1093), 3, + STATE(1203), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(301), 4, + sym__index_expression, + sym_slice, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29795,126 +28921,149 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [7129] = 3, + [7124] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(820), 17, - anon_sym_as, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(595), 1, + anon_sym_await, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(669), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_DOT, anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(825), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(306), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(583), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + ACTIONS(298), 9, + anon_sym_GT_GT, + anon_sym_PIPE, 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(818), 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, - [7190] = 22, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [7218] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(283), 1, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(305), 1, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, sym__string_start, - ACTIONS(584), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(626), 1, - anon_sym_STAR, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(712), 1, - sym_identifier, - ACTIONS(714), 1, + ACTIONS(655), 1, + anon_sym_yield, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(722), 1, - anon_sym_await, - STATE(565), 1, + ACTIONS(715), 1, + anon_sym_RPAREN, + ACTIONS(717), 1, + anon_sym_STAR, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1073), 1, + STATE(992), 1, sym_expression, - STATE(1318), 1, - sym_parenthesized_list_splat, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1314), 3, + STATE(1118), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(301), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(720), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29930,126 +29079,73 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [7289] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(824), 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(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_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, - [7350] = 22, + [7324] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(706), 1, + ACTIONS(717), 1, anon_sym_STAR, - ACTIONS(812), 1, + ACTIONS(821), 1, anon_sym_COLON, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1043), 1, + STATE(1042), 1, sym_expression, - STATE(1376), 1, + STATE(1469), 1, sym_index_expression_list, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1236), 3, + STATE(1263), 3, sym_list_splat, sym__index_expression, sym_slice, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30065,62 +29161,73 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [7449] = 16, + [7430] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, - anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(588), 1, - anon_sym_await, - STATE(565), 1, + ACTIONS(637), 1, + anon_sym_not, + ACTIONS(655), 1, + anon_sym_yield, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(715), 1, + anon_sym_RPAREN, + ACTIONS(717), 1, + anon_sym_STAR, + STATE(569), 1, sym_string, - STATE(631), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - ACTIONS(299), 2, + STATE(992), 1, + sym_expression, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(260), 3, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(826), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(301), 5, + STATE(1118), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(306), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(576), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - ACTIONS(293), 9, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(589), 16, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30136,68 +29243,73 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [7536] = 22, + [7536] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(706), 1, + ACTIONS(717), 1, anon_sym_STAR, - ACTIONS(812), 1, + ACTIONS(821), 1, anon_sym_COLON, - STATE(565), 1, + ACTIONS(827), 1, + anon_sym_RBRACK, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1043), 1, + STATE(1042), 1, sym_expression, - STATE(1375), 1, - sym_index_expression_list, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1280), 3, + STATE(1371), 3, sym_list_splat, sym__index_expression, sym_slice, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30213,130 +29325,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [7635] = 9, + [7642] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(832), 1, - anon_sym_else, - ACTIONS(834), 1, - anon_sym_except, - ACTIONS(836), 1, - anon_sym_finally, - STATE(357), 1, - sym_else_clause, - STATE(545), 1, - sym_finally_clause, - STATE(271), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(828), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(53), 1, anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(830), 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(263), 1, sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [7707] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(325), 1, - sym_identifier, - ACTIONS(331), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(561), 1, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(626), 1, + ACTIONS(635), 1, anon_sym_STAR, - STATE(689), 1, - sym_primary_expression, - STATE(693), 1, + ACTIONS(637), 1, + anon_sym_not, + STATE(569), 1, sym_string, - STATE(993), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1055), 1, sym_expression, - STATE(1327), 1, + STATE(1453), 1, sym_expression_list, - ACTIONS(75), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1283), 2, + STATE(1375), 2, sym_list_splat, sym_dictionary_splat, - ACTIONS(47), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(327), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(940), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30352,66 +29406,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [7805] = 21, + [7747] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(584), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, - anon_sym_not, - ACTIONS(646), 1, - anon_sym_yield, - ACTIONS(706), 1, + ACTIONS(635), 1, anon_sym_STAR, - ACTIONS(714), 1, - anon_sym_LPAREN, - STATE(565), 1, + ACTIONS(637), 1, + anon_sym_not, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(985), 1, + STATE(1065), 1, sym_expression, - ACTIONS(299), 2, + STATE(1490), 1, + sym_expression_list, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + STATE(1375), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1093), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30427,193 +29487,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [7901] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(838), 1, - anon_sym_else, - ACTIONS(840), 1, - anon_sym_except, - ACTIONS(842), 1, - anon_sym_finally, - STATE(395), 1, - sym_else_clause, - STATE(490), 1, - sym_finally_clause, - STATE(263), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(828), 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(830), 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, - [7973] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(838), 1, - anon_sym_else, - ACTIONS(842), 1, - anon_sym_finally, - ACTIONS(844), 1, - anon_sym_except, - STATE(395), 1, - sym_else_clause, - STATE(490), 1, - sym_finally_clause, - STATE(268), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(828), 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(830), 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, - [8045] = 22, + [7852] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(626), 1, + ACTIONS(635), 1, anon_sym_STAR, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1039), 1, + STATE(1040), 1, sym_expression, - STATE(1449), 1, + STATE(1446), 1, sym_expression_list, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1284), 2, + STATE(1375), 2, sym_list_splat, sym_dictionary_splat, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30629,130 +29568,71 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [8143] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(838), 1, - anon_sym_else, - ACTIONS(842), 1, - anon_sym_finally, - ACTIONS(844), 1, - anon_sym_except, - STATE(392), 1, - sym_else_clause, - STATE(474), 1, - sym_finally_clause, - STATE(268), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(848), 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(846), 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, - [8215] = 22, + [7957] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, - anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(626), 1, - anon_sym_STAR, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - STATE(565), 1, + ACTIONS(655), 1, + anon_sym_yield, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(717), 1, + anon_sym_STAR, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1030), 1, + STATE(992), 1, sym_expression, - STATE(1404), 1, - sym_expression_list, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1284), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + STATE(1118), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30768,318 +29648,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [8313] = 9, + [8060] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(832), 1, - anon_sym_else, - ACTIONS(834), 1, - anon_sym_except, - ACTIONS(836), 1, - anon_sym_finally, - STATE(350), 1, - sym_else_clause, - STATE(537), 1, - sym_finally_clause, - STATE(271), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(848), 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(846), 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, - [8385] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(832), 1, - anon_sym_else, - ACTIONS(836), 1, - anon_sym_finally, - ACTIONS(850), 1, - anon_sym_except, - STATE(350), 1, - sym_else_clause, - STATE(537), 1, - sym_finally_clause, - STATE(272), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(848), 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(846), 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, - [8457] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(832), 1, - anon_sym_else, - ACTIONS(836), 1, - anon_sym_finally, - ACTIONS(850), 1, - anon_sym_except, - STATE(357), 1, - sym_else_clause, - STATE(545), 1, - sym_finally_clause, - STATE(272), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(828), 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, + ACTIONS(53), 1, anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(830), 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, - [8529] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(838), 1, - anon_sym_else, - ACTIONS(840), 1, - anon_sym_except, - ACTIONS(842), 1, - anon_sym_finally, - STATE(392), 1, - sym_else_clause, - STATE(474), 1, - sym_finally_clause, - STATE(263), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(848), 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(846), 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(83), 1, + sym__template_string_start, + ACTIONS(488), 1, sym_identifier, + ACTIONS(494), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [8601] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_await, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(571), 1, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - ACTIONS(628), 1, - anon_sym_not, - ACTIONS(706), 1, + ACTIONS(635), 1, anon_sym_STAR, - ACTIONS(812), 1, - anon_sym_COLON, - STATE(565), 1, + STATE(698), 1, sym_string, - STATE(595), 1, + STATE(700), 1, + sym_template_string, + STATE(702), 1, sym_primary_expression, - STATE(1043), 1, + STATE(1005), 1, sym_expression, - ACTIONS(299), 2, + STATE(1380), 1, + sym_expression_list, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + STATE(1328), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1332), 3, - sym_list_splat, - sym__index_expression, - sym_slice, - ACTIONS(301), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(490), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(955), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(760), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31095,67 +29729,71 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [8697] = 22, + [8165] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(626), 1, - anon_sym_STAR, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - STATE(565), 1, + ACTIONS(717), 1, + anon_sym_STAR, + ACTIONS(821), 1, + anon_sym_COLON, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1011), 1, + STATE(1042), 1, sym_expression, - STATE(1416), 1, - sym_expression_list, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1284), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + STATE(1371), 3, + sym_list_splat, + sym__index_expression, + sym_slice, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31171,67 +29809,72 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [8795] = 22, + [8268] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(626), 1, + ACTIONS(635), 1, anon_sym_STAR, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1045), 1, + STATE(1050), 1, sym_expression, - STATE(1423), 1, + STATE(1437), 1, sym_expression_list, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1284), 2, + STATE(1375), 2, sym_list_splat, sym_dictionary_splat, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31247,65 +29890,70 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [8893] = 21, + [8373] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(852), 1, + ACTIONS(829), 1, anon_sym_RBRACE, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1104), 1, + STATE(1112), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1335), 2, + STATE(1378), 2, sym_dictionary_splat, sym_pair, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31321,128 +29969,70 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [8988] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(265), 1, - anon_sym_COMMA, - ACTIONS(273), 1, - anon_sym_COLON_EQ, - ACTIONS(854), 1, - anon_sym_for, - ACTIONS(856), 1, - anon_sym_with, - ACTIONS(858), 1, - anon_sym_def, - ACTIONS(275), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(297), 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(260), 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(293), 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, - [9061] = 21, + [8475] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(626), 1, - anon_sym_STAR, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - STATE(565), 1, + ACTIONS(831), 1, + anon_sym_RBRACE, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(902), 1, + STATE(1112), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1005), 2, - sym_list_splat, + STATE(1378), 2, sym_dictionary_splat, - ACTIONS(291), 3, + sym_pair, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31458,128 +30048,70 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [9156] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(265), 1, - anon_sym_COMMA, - ACTIONS(273), 1, - anon_sym_COLON_EQ, - ACTIONS(860), 1, - anon_sym_for, - ACTIONS(862), 1, - anon_sym_with, - ACTIONS(864), 1, - anon_sym_def, - ACTIONS(275), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(297), 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(260), 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(293), 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, - [9229] = 21, + [8577] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_await, - ACTIONS(305), 1, + ACTIONS(81), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(494), 1, + anon_sym_await, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - ACTIONS(628), 1, - anon_sym_not, - ACTIONS(866), 1, - anon_sym_RBRACE, - STATE(565), 1, + ACTIONS(777), 1, + anon_sym_STAR, + ACTIONS(779), 1, + anon_sym_STAR_STAR, + STATE(698), 1, sym_string, - STATE(595), 1, + STATE(700), 1, + sym_template_string, + STATE(702), 1, sym_primary_expression, - STATE(1104), 1, + STATE(1002), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - STATE(1335), 2, + STATE(1168), 2, + sym_list_splat, sym_dictionary_splat, - sym_pair, - ACTIONS(291), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(490), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(955), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(760), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31595,65 +30127,70 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [9324] = 21, + [8679] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(868), 1, + ACTIONS(833), 1, anon_sym_RBRACE, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1104), 1, + STATE(1112), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1335), 2, + STATE(1378), 2, sym_dictionary_splat, sym_pair, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31669,65 +30206,70 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [9419] = 21, + [8781] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(325), 1, - sym_identifier, - ACTIONS(331), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(561), 1, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(758), 1, - anon_sym_STAR, - ACTIONS(760), 1, - anon_sym_STAR_STAR, - STATE(689), 1, - sym_primary_expression, - STATE(693), 1, + ACTIONS(637), 1, + anon_sym_not, + ACTIONS(835), 1, + anon_sym_RBRACE, + STATE(569), 1, sym_string, - STATE(998), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1112), 1, sym_expression, - ACTIONS(75), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1128), 2, - sym_list_splat, + STATE(1378), 2, sym_dictionary_splat, - ACTIONS(47), 3, + sym_pair, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(327), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(940), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31743,65 +30285,70 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [9514] = 21, + [8883] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(870), 1, + ACTIONS(837), 1, anon_sym_RBRACE, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1104), 1, + STATE(1112), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1335), 2, + STATE(1378), 2, sym_dictionary_splat, sym_pair, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31817,65 +30364,70 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [9609] = 21, + [8985] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(872), 1, + ACTIONS(839), 1, anon_sym_RBRACE, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1104), 1, + STATE(1112), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1335), 2, + STATE(1378), 2, sym_dictionary_splat, sym_pair, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31891,65 +30443,70 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [9704] = 21, + [9087] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(635), 1, + anon_sym_STAR, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(874), 1, - anon_sym_RBRACE, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1104), 1, + STATE(931), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1335), 2, + STATE(1010), 2, + sym_list_splat, sym_dictionary_splat, - sym_pair, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31965,65 +30522,70 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [9799] = 21, + [9189] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(876), 1, + ACTIONS(841), 1, anon_sym_RBRACE, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1104), 1, + STATE(1112), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1335), 2, + STATE(1378), 2, sym_dictionary_splat, sym_pair, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32039,65 +30601,70 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [9894] = 21, + [9291] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(878), 1, + ACTIONS(843), 1, anon_sym_RBRACE, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1104), 1, + STATE(1112), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1335), 2, + STATE(1378), 2, sym_dictionary_splat, sym_pair, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32113,65 +30680,70 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [9989] = 21, + [9393] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(880), 1, + ACTIONS(845), 1, anon_sym_RBRACE, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1104), 1, + STATE(1112), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1335), 2, + STATE(1378), 2, sym_dictionary_splat, sym_pair, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32187,22 +30759,27 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [10084] = 8, + [9495] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(832), 1, + ACTIONS(851), 1, anon_sym_else, - ACTIONS(886), 1, - anon_sym_elif, - STATE(269), 1, - aux_sym_if_statement_repeat1, - STATE(407), 1, - sym_elif_clause, - STATE(527), 1, + ACTIONS(853), 1, + anon_sym_except, + ACTIONS(855), 1, + anon_sym_finally, + STATE(445), 1, sym_else_clause, - ACTIONS(882), 12, + STATE(520), 1, + sym_finally_clause, + STATE(308), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(847), 13, sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -32214,7 +30791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(884), 33, + ACTIONS(849), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -32248,256 +30825,361 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [10152] = 3, + [9568] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(888), 12, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, sym__string_start, - ts_builtin_sym_end, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(591), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(637), 1, + anon_sym_not, + ACTIONS(717), 1, + anon_sym_STAR, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1022), 1, + sym_expression, + STATE(1117), 1, + sym_list_splat, + STATE(1459), 1, + sym_type, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(890), 38, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(276), 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_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, 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, - [10210] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(838), 1, - anon_sym_else, - ACTIONS(896), 1, - anon_sym_elif, - STATE(308), 1, - aux_sym_if_statement_repeat1, - STATE(390), 1, - sym_elif_clause, - STATE(481), 1, - sym_else_clause, - ACTIONS(894), 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, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [9669] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(637), 1, + anon_sym_not, + ACTIONS(717), 1, + anon_sym_STAR, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1022), 1, + sym_expression, + STATE(1117), 1, + sym_list_splat, + STATE(1466), 1, + sym_type, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(892), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(276), 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, - [10278] = 8, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [9770] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(838), 1, - anon_sym_else, - ACTIONS(896), 1, - anon_sym_elif, - STATE(253), 1, - aux_sym_if_statement_repeat1, - STATE(390), 1, - sym_elif_clause, - STATE(468), 1, - sym_else_clause, - ACTIONS(882), 12, - sym__dedent, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(591), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(637), 1, + anon_sym_not, + ACTIONS(717), 1, + anon_sym_STAR, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1022), 1, + sym_expression, + STATE(1117), 1, + sym_list_splat, + STATE(1415), 1, + sym_type, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(884), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(276), 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, - [10346] = 8, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [9871] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(838), 1, - anon_sym_else, - ACTIONS(896), 1, - anon_sym_elif, - STATE(266), 1, - aux_sym_if_statement_repeat1, - STATE(390), 1, - sym_elif_clause, - STATE(482), 1, - sym_else_clause, - ACTIONS(900), 12, - sym__dedent, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(591), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(637), 1, + anon_sym_not, + ACTIONS(859), 1, + anon_sym_COLON, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1049), 1, + sym_expression, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(898), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(857), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(276), 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, - [10414] = 9, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [9970] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(265), 1, + ACTIONS(863), 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(861), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(273), 1, - anon_sym_COLON_EQ, - ACTIONS(902), 1, - sym__string_start, - STATE(1264), 1, - sym_string, - ACTIONS(275), 2, + anon_sym_if, anon_sym_COLON, - anon_sym_EQ, - ACTIONS(297), 13, + 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, @@ -32511,13 +31193,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(260), 15, + sym_type_conversion, + [10031] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(867), 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, @@ -32527,13 +31215,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(293), 16, - sym__newline, + ACTIONS(865), 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, @@ -32543,64 +31238,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [10484] = 21, + 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, + [10092] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(637), 1, + anon_sym_not, + ACTIONS(871), 1, + anon_sym_COLON, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1071), 1, + sym_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(869), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(276), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [10191] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(706), 1, + ACTIONS(717), 1, anon_sym_STAR, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(995), 1, + STATE(1022), 1, sym_expression, - STATE(1114), 1, + STATE(1117), 1, sym_list_splat, - STATE(1382), 1, + STATE(1465), 1, sym_type, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32616,64 +31405,69 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [10578] = 21, + [10292] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(325), 1, - sym_identifier, - ACTIONS(331), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(561), 1, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(904), 1, + ACTIONS(637), 1, + anon_sym_not, + ACTIONS(717), 1, anon_sym_STAR, - STATE(689), 1, - sym_primary_expression, - STATE(693), 1, + STATE(569), 1, sym_string, - STATE(1025), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1022), 1, sym_expression, - STATE(1153), 1, - sym_type, - STATE(1258), 1, + STATE(1117), 1, sym_list_splat, - ACTIONS(75), 2, + STATE(1450), 1, + sym_type, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(327), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(940), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32689,64 +31483,69 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [10672] = 21, + [10393] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(706), 1, + ACTIONS(717), 1, anon_sym_STAR, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(995), 1, + STATE(1022), 1, sym_expression, - STATE(1114), 1, + STATE(1117), 1, sym_list_splat, - STATE(1412), 1, + STATE(1282), 1, sym_type, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32762,13 +31561,28 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [10766] = 3, + [10494] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(906), 12, + ACTIONS(877), 1, + anon_sym_else, + ACTIONS(879), 1, + anon_sym_except, + ACTIONS(881), 1, + anon_sym_finally, + STATE(431), 1, + sym_else_clause, + STATE(498), 1, + sym_finally_clause, + STATE(293), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(875), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -32779,7 +31593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(908), 38, + ACTIONS(873), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -32792,17 +31606,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, - anon_sym_else, anon_sym_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, @@ -32818,12 +31627,104 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [10824] = 3, + [10567] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(910), 12, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, sym__string_start, - ts_builtin_sym_end, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(637), 1, + anon_sym_not, + ACTIONS(717), 1, + anon_sym_STAR, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1022), 1, + sym_expression, + STATE(1117), 1, + sym_list_splat, + STATE(1121), 1, + sym_type, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(276), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [10668] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(877), 1, + anon_sym_else, + ACTIONS(881), 1, + anon_sym_finally, + ACTIONS(883), 1, + anon_sym_except, + STATE(431), 1, + sym_else_clause, + STATE(498), 1, + sym_finally_clause, + STATE(292), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(875), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -32834,7 +31735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(912), 38, + ACTIONS(873), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -32847,17 +31748,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, - anon_sym_else, anon_sym_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, @@ -32873,229 +31769,144 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [10882] = 3, + [10741] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(914), 12, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, sym__string_start, - ts_builtin_sym_end, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(591), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(916), 38, - 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_except, - 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, + ACTIONS(637), 1, anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [10940] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(922), 1, - anon_sym_except, - STATE(263), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(920), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1112), 1, + sym_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + STATE(1378), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(296), 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(918), 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(306), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [11002] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 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(927), 38, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(276), 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_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, 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, - [11060] = 20, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [10840] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_await, - ACTIONS(305), 1, + ACTIONS(81), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(494), 1, + anon_sym_await, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - ACTIONS(628), 1, - anon_sym_not, - ACTIONS(931), 1, - anon_sym_COLON, - STATE(565), 1, + ACTIONS(885), 1, + anon_sym_STAR, + STATE(698), 1, sym_string, - STATE(595), 1, + STATE(700), 1, + sym_template_string, + STATE(702), 1, sym_primary_expression, - STATE(1038), 1, + STATE(1063), 1, sym_expression, - ACTIONS(299), 2, + STATE(1185), 1, + sym_list_splat, + STATE(1217), 1, + sym_type, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(929), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(291), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(490), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(955), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(760), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33111,23 +31922,28 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [11152] = 8, + [10941] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(838), 1, + ACTIONS(877), 1, anon_sym_else, - ACTIONS(896), 1, - anon_sym_elif, - STATE(308), 1, - aux_sym_if_statement_repeat1, - STATE(390), 1, - sym_elif_clause, - STATE(496), 1, + ACTIONS(879), 1, + anon_sym_except, + ACTIONS(881), 1, + anon_sym_finally, + STATE(425), 1, sym_else_clause, - ACTIONS(935), 12, + STATE(555), 1, + sym_finally_clause, + STATE(293), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(847), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -33138,7 +31954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(933), 33, + ACTIONS(849), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -33172,63 +31988,67 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [11220] = 21, + [11014] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(706), 1, + ACTIONS(717), 1, anon_sym_STAR, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(995), 1, + STATE(1022), 1, sym_expression, - STATE(1114), 1, + STATE(1117), 1, sym_list_splat, - STATE(1434), 1, + STATE(1461), 1, sym_type, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33244,18 +32064,28 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [11314] = 5, + [11115] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(941), 1, + ACTIONS(877), 1, + anon_sym_else, + ACTIONS(881), 1, + anon_sym_finally, + ACTIONS(883), 1, anon_sym_except, - STATE(268), 2, + STATE(425), 1, + sym_else_clause, + STATE(555), 1, + sym_finally_clause, + STATE(292), 2, sym_except_group_clause, aux_sym_try_statement_repeat2, - ACTIONS(939), 12, + ACTIONS(847), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -33266,7 +32096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(937), 35, + ACTIONS(849), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -33279,12 +32109,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, @@ -33302,81 +32130,103 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [11376] = 8, + [11188] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(832), 1, - anon_sym_else, - ACTIONS(886), 1, - anon_sym_elif, - STATE(292), 1, - aux_sym_if_statement_repeat1, - STATE(407), 1, - sym_elif_clause, - STATE(511), 1, - sym_else_clause, - ACTIONS(894), 12, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, sym__string_start, - ts_builtin_sym_end, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(591), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(637), 1, + anon_sym_not, + ACTIONS(717), 1, + anon_sym_STAR, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1022), 1, + sym_expression, + STATE(1117), 1, + sym_list_splat, + STATE(1406), 1, + sym_type, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(892), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(276), 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, - [11444] = 8, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [11289] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(832), 1, + ACTIONS(851), 1, anon_sym_else, - ACTIONS(886), 1, - anon_sym_elif, - STATE(277), 1, - aux_sym_if_statement_repeat1, - STATE(407), 1, - sym_elif_clause, - STATE(516), 1, + ACTIONS(855), 1, + anon_sym_finally, + ACTIONS(887), 1, + anon_sym_except, + STATE(445), 1, sym_else_clause, - ACTIONS(900), 12, + STATE(520), 1, + sym_finally_clause, + STATE(289), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(847), 13, sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -33388,7 +32238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(898), 33, + ACTIONS(849), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -33422,16 +32272,25 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [11512] = 5, + [11362] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(944), 1, + ACTIONS(851), 1, + anon_sym_else, + ACTIONS(853), 1, anon_sym_except, - STATE(271), 2, + ACTIONS(855), 1, + anon_sym_finally, + STATE(415), 1, + sym_else_clause, + STATE(542), 1, + sym_finally_clause, + STATE(308), 2, sym_except_group_clause, aux_sym_try_statement_repeat2, - ACTIONS(939), 12, + ACTIONS(875), 13, sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -33443,7 +32302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(937), 35, + ACTIONS(873), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -33456,12 +32315,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, @@ -33479,16 +32336,25 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [11574] = 5, + [11435] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(947), 1, + ACTIONS(851), 1, + anon_sym_else, + ACTIONS(855), 1, + anon_sym_finally, + ACTIONS(887), 1, anon_sym_except, - STATE(272), 2, + STATE(415), 1, + sym_else_clause, + STATE(542), 1, + sym_finally_clause, + STATE(289), 2, sym_except_clause, aux_sym_try_statement_repeat1, - ACTIONS(920), 12, + ACTIONS(875), 13, sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -33500,7 +32366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(918), 35, + ACTIONS(873), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -33513,12 +32379,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, @@ -33536,62 +32400,67 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [11636] = 20, + [11508] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_await, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(571), 1, + ACTIONS(609), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(617), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(619), 1, + anon_sym_LBRACE, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(889), 1, + sym_identifier, + ACTIONS(891), 1, + anon_sym_STAR, + ACTIONS(895), 1, + anon_sym_COLON, + ACTIONS(897), 1, anon_sym_not, - STATE(565), 1, - sym_string, - STATE(595), 1, + ACTIONS(899), 1, + anon_sym_lambda, + ACTIONS(901), 1, + anon_sym_await, + STATE(718), 1, sym_primary_expression, - STATE(1104), 1, + STATE(720), 1, + sym_string, + STATE(722), 1, + sym_template_string, + STATE(1000), 1, sym_expression, - ACTIONS(299), 2, + STATE(1354), 1, + sym_exception_list, + ACTIONS(621), 2, sym_ellipsis, sym_float, - STATE(1335), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(291), 3, + ACTIONS(615), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(607), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(893), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(996), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(809), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33607,174 +32476,69 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [11728] = 3, + [11609] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(906), 12, - sym__dedent, - sym__string_start, + ACTIONS(609), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(617), 1, anon_sym_LBRACK, + ACTIONS(619), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(908), 38, - 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_except, - 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, - [11786] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(888), 12, - sym__dedent, + ACTIONS(625), 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(890), 38, - 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_except, - 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, - [11844] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(258), 1, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(889), 1, sym_identifier, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(897), 1, + anon_sym_not, + ACTIONS(899), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(901), 1, anon_sym_await, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(571), 1, - anon_sym_LPAREN, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(628), 1, - anon_sym_not, - ACTIONS(706), 1, + ACTIONS(903), 1, anon_sym_STAR, - STATE(565), 1, - sym_string, - STATE(595), 1, + ACTIONS(905), 1, + anon_sym_COLON, + STATE(718), 1, sym_primary_expression, - STATE(995), 1, + STATE(720), 1, + sym_string, + STATE(722), 1, + sym_template_string, + STATE(1034), 1, sym_expression, - STATE(1114), 1, - sym_list_splat, - STATE(1391), 1, - sym_type, - ACTIONS(299), 2, + STATE(1346), 1, + sym_exception_list, + ACTIONS(621), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(615), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(607), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(893), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(996), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(809), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33790,123 +32554,69 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [11938] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(832), 1, - anon_sym_else, - ACTIONS(886), 1, - anon_sym_elif, - STATE(292), 1, - aux_sym_if_statement_repeat1, - STATE(407), 1, - sym_elif_clause, - STATE(459), 1, - sym_else_clause, - ACTIONS(935), 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(933), 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, - [12006] = 20, + [11710] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(952), 1, - anon_sym_COLON, - STATE(565), 1, + ACTIONS(717), 1, + anon_sym_STAR, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1033), 1, + STATE(1022), 1, sym_expression, - ACTIONS(299), 2, + STATE(1117), 1, + sym_list_splat, + STATE(1431), 1, + sym_type, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(950), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33922,119 +32632,66 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [12098] = 3, + [11811] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(914), 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(916), 38, - 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_except, - 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, + 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, - [12156] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(258), 1, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(488), 1, sym_identifier, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(494), 1, anon_sym_await, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(571), 1, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - ACTIONS(628), 1, - anon_sym_not, - ACTIONS(706), 1, - anon_sym_STAR, - STATE(565), 1, + STATE(698), 1, sym_string, - STATE(595), 1, + STATE(700), 1, + sym_template_string, + STATE(702), 1, sym_primary_expression, - STATE(995), 1, + STATE(1069), 1, sym_expression, - STATE(1114), 1, - sym_list_splat, - STATE(1141), 1, - sym_type, - ACTIONS(299), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(907), 2, + sym__newline, + sym__semicolon, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(490), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(955), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(760), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34050,119 +32707,66 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [12250] = 3, + [11907] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(925), 12, - sym__dedent, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(603), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(927), 38, - 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_except, - 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, + ACTIONS(651), 1, anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, + ACTIONS(689), 1, sym_identifier, + ACTIONS(699), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [12308] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(761), 1, anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_await, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(571), 1, - anon_sym_LPAREN, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(628), 1, - anon_sym_not, - ACTIONS(706), 1, - anon_sym_STAR, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(653), 1, sym_primary_expression, - STATE(995), 1, + STATE(945), 1, sym_expression, - STATE(1114), 1, - sym_list_splat, - STATE(1444), 1, - sym_type, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + STATE(973), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(695), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34178,119 +32782,142 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [12402] = 3, + [12003] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(910), 12, - sym__dedent, - sym__string_start, + ACTIONS(609), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(617), 1, anon_sym_LBRACK, + ACTIONS(619), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(889), 1, + sym_identifier, + ACTIONS(895), 1, + anon_sym_COLON, + ACTIONS(897), 1, + anon_sym_not, + ACTIONS(899), 1, + anon_sym_lambda, + ACTIONS(901), 1, + anon_sym_await, + STATE(718), 1, + sym_primary_expression, + STATE(720), 1, + sym_string, + STATE(722), 1, + sym_template_string, + STATE(1000), 1, + sym_expression, + STATE(1354), 1, + sym_exception_list, + ACTIONS(621), 2, sym_ellipsis, sym_float, - ACTIONS(912), 38, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(615), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(607), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(893), 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_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, 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, - [12460] = 21, + STATE(996), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(809), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [12101] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(706), 1, - anon_sym_STAR, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(995), 1, + STATE(1085), 1, sym_expression, - STATE(1114), 1, - sym_list_splat, - STATE(1428), 1, - sym_type, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(909), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34306,64 +32933,67 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [12554] = 21, + [12197] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, + ACTIONS(617), 1, + anon_sym_LBRACK, + ACTIONS(619), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(889), 1, + sym_identifier, + ACTIONS(897), 1, + anon_sym_not, + ACTIONS(899), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(901), 1, anon_sym_await, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(571), 1, + ACTIONS(911), 1, anon_sym_LPAREN, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(628), 1, - anon_sym_not, - ACTIONS(706), 1, - anon_sym_STAR, - STATE(565), 1, - sym_string, - STATE(595), 1, + STATE(718), 1, sym_primary_expression, - STATE(995), 1, + STATE(720), 1, + sym_string, + STATE(722), 1, + sym_template_string, + STATE(999), 1, sym_expression, - STATE(1114), 1, - sym_list_splat, - STATE(1430), 1, - sym_type, - ACTIONS(299), 2, + STATE(1238), 1, + sym_with_item, + STATE(1432), 1, + sym_with_clause, + ACTIONS(621), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(615), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(607), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(893), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(996), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(809), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34379,64 +33009,66 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [12648] = 21, + [12295] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(706), 1, - anon_sym_STAR, - STATE(565), 1, + ACTIONS(689), 1, + sym_identifier, + ACTIONS(699), 1, + anon_sym_await, + ACTIONS(761), 1, + anon_sym_lambda, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(653), 1, sym_primary_expression, - STATE(995), 1, + STATE(945), 1, sym_expression, - STATE(1114), 1, - sym_list_splat, - STATE(1433), 1, - sym_type, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + STATE(1020), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(695), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34452,64 +33084,66 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [12742] = 21, + [12391] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_await, - ACTIONS(305), 1, + ACTIONS(81), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(494), 1, + anon_sym_await, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - ACTIONS(628), 1, - anon_sym_not, - ACTIONS(706), 1, - anon_sym_STAR, - STATE(565), 1, + STATE(698), 1, sym_string, - STATE(595), 1, + STATE(700), 1, + sym_template_string, + STATE(702), 1, sym_primary_expression, - STATE(995), 1, + STATE(1069), 1, sym_expression, - STATE(1114), 1, - sym_list_splat, - STATE(1209), 1, - sym_type, - ACTIONS(299), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(913), 2, + sym__newline, + sym__semicolon, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(490), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(955), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(760), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34525,62 +33159,66 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [12836] = 20, + [12487] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(602), 1, - anon_sym_LPAREN, - ACTIONS(610), 1, - anon_sym_LBRACK, - ACTIONS(612), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(618), 1, - sym__string_start, - ACTIONS(954), 1, - sym_identifier, - ACTIONS(956), 1, - anon_sym_STAR, - ACTIONS(960), 1, - anon_sym_COLON, - ACTIONS(962), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(964), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(966), 1, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(494), 1, anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, STATE(698), 1, - sym_primary_expression, - STATE(699), 1, sym_string, - STATE(1028), 1, + STATE(700), 1, + sym_template_string, + STATE(702), 1, + sym_primary_expression, + STATE(1069), 1, sym_expression, - ACTIONS(614), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(608), 3, + ACTIONS(915), 2, + sym__newline, + sym__semicolon, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(600), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(958), 5, + ACTIONS(490), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(982), 6, + STATE(955), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(796), 16, + STATE(760), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34596,62 +33234,66 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [12927] = 20, + [12583] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(706), 1, - anon_sym_STAR, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1052), 1, + STATE(1087), 1, sym_expression, - STATE(1320), 1, - sym_list_splat, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(917), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34667,61 +33309,66 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [13018] = 19, + [12679] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(590), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(642), 1, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(684), 1, + ACTIONS(689), 1, sym_identifier, - ACTIONS(694), 1, + ACTIONS(699), 1, anon_sym_await, - ACTIONS(748), 1, + ACTIONS(761), 1, anon_sym_lambda, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(590), 1, + STATE(570), 1, + sym_template_string, + STATE(653), 1, sym_primary_expression, - STATE(920), 1, + STATE(945), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(931), 2, + STATE(987), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(594), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(690), 5, + ACTIONS(695), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34737,62 +33384,67 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [13107] = 20, + [12775] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(610), 1, + ACTIONS(617), 1, anon_sym_LBRACK, - ACTIONS(612), 1, + ACTIONS(619), 1, anon_sym_LBRACE, - ACTIONS(618), 1, + ACTIONS(625), 1, sym__string_start, - ACTIONS(954), 1, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(889), 1, sym_identifier, - ACTIONS(962), 1, + ACTIONS(897), 1, anon_sym_not, - ACTIONS(964), 1, + ACTIONS(899), 1, anon_sym_lambda, - ACTIONS(966), 1, + ACTIONS(901), 1, anon_sym_await, - ACTIONS(968), 1, + ACTIONS(911), 1, anon_sym_LPAREN, - STATE(698), 1, + STATE(718), 1, sym_primary_expression, - STATE(699), 1, + STATE(720), 1, sym_string, - STATE(987), 1, + STATE(722), 1, + sym_template_string, + STATE(999), 1, sym_expression, - STATE(1206), 1, + STATE(1238), 1, sym_with_item, - STATE(1385), 1, + STATE(1478), 1, sym_with_clause, - ACTIONS(614), 2, + ACTIONS(621), 2, sym_ellipsis, sym_float, - ACTIONS(608), 3, + ACTIONS(615), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(600), 4, + ACTIONS(607), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(958), 5, + ACTIONS(893), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(982), 6, + STATE(996), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(796), 16, + STATE(809), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34808,118 +33460,67 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [13198] = 6, + [12873] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(974), 1, - anon_sym_elif, - STATE(292), 1, - aux_sym_if_statement_repeat1, - STATE(407), 1, - sym_elif_clause, - ACTIONS(970), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(617), 1, anon_sym_LBRACK, + ACTIONS(619), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(972), 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, - anon_sym_lambda, - anon_sym_yield, - sym_integer, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(889), 1, sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [13261] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(897), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(899), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(325), 1, - sym_identifier, - ACTIONS(331), 1, + ACTIONS(901), 1, anon_sym_await, - ACTIONS(561), 1, + ACTIONS(911), 1, anon_sym_LPAREN, - ACTIONS(567), 1, - anon_sym_LBRACK, - STATE(689), 1, + STATE(718), 1, sym_primary_expression, - STATE(693), 1, + STATE(720), 1, sym_string, - STATE(1018), 1, + STATE(722), 1, + sym_template_string, + STATE(999), 1, sym_expression, - ACTIONS(75), 2, + STATE(1238), 1, + sym_with_item, + STATE(1440), 1, + sym_with_clause, + ACTIONS(621), 2, sym_ellipsis, sym_float, - ACTIONS(977), 2, - sym__newline, - sym__semicolon, - ACTIONS(47), 3, + ACTIONS(615), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(607), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(327), 5, + ACTIONS(893), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(940), 6, + STATE(996), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 16, + STATE(809), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34935,61 +33536,67 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [13350] = 19, + [12971] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(590), 1, + ACTIONS(609), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(617), 1, anon_sym_LBRACK, - ACTIONS(642), 1, - anon_sym_not, - ACTIONS(684), 1, + ACTIONS(619), 1, + anon_sym_LBRACE, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(889), 1, sym_identifier, - ACTIONS(694), 1, - anon_sym_await, - ACTIONS(748), 1, + ACTIONS(897), 1, + anon_sym_not, + ACTIONS(899), 1, anon_sym_lambda, - STATE(565), 1, - sym_string, - STATE(590), 1, + ACTIONS(901), 1, + anon_sym_await, + ACTIONS(905), 1, + anon_sym_COLON, + STATE(718), 1, sym_primary_expression, - STATE(921), 1, + STATE(720), 1, + sym_string, + STATE(722), 1, + sym_template_string, + STATE(1034), 1, sym_expression, - ACTIONS(299), 2, + STATE(1346), 1, + sym_exception_list, + ACTIONS(621), 2, sym_ellipsis, sym_float, - STATE(989), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(594), 3, + ACTIONS(615), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(607), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(690), 5, + ACTIONS(893), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(996), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(809), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35005,62 +33612,67 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [13439] = 20, + [13069] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(602), 1, + ACTIONS(609), 1, anon_sym_LPAREN, - ACTIONS(610), 1, + ACTIONS(617), 1, anon_sym_LBRACK, - ACTIONS(612), 1, + ACTIONS(619), 1, anon_sym_LBRACE, - ACTIONS(618), 1, + ACTIONS(625), 1, sym__string_start, - ACTIONS(954), 1, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(889), 1, sym_identifier, - ACTIONS(962), 1, + ACTIONS(897), 1, anon_sym_not, - ACTIONS(964), 1, + ACTIONS(899), 1, anon_sym_lambda, - ACTIONS(966), 1, + ACTIONS(901), 1, anon_sym_await, - ACTIONS(979), 1, + ACTIONS(919), 1, anon_sym_RPAREN, - STATE(698), 1, + STATE(718), 1, sym_primary_expression, - STATE(699), 1, + STATE(720), 1, sym_string, - STATE(987), 1, + STATE(722), 1, + sym_template_string, + STATE(999), 1, sym_expression, - STATE(1256), 1, + STATE(1298), 1, sym_with_item, - ACTIONS(614), 2, + ACTIONS(621), 2, sym_ellipsis, sym_float, - ACTIONS(608), 3, + ACTIONS(615), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(600), 4, + ACTIONS(607), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(958), 5, + ACTIONS(893), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(982), 6, + STATE(996), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(796), 16, + STATE(809), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35076,61 +33688,66 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [13530] = 19, + [13167] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(651), 1, anon_sym_not, - STATE(565), 1, + ACTIONS(689), 1, + sym_identifier, + ACTIONS(699), 1, + anon_sym_await, + ACTIONS(761), 1, + anon_sym_lambda, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(653), 1, sym_primary_expression, - STATE(1056), 1, + STATE(937), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(291), 3, + STATE(1018), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(695), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35146,61 +33763,66 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [13619] = 19, + [13263] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, sym__string_start, - ACTIONS(590), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(642), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(684), 1, - sym_identifier, - ACTIONS(694), 1, - anon_sym_await, - ACTIONS(748), 1, - anon_sym_lambda, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(590), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(920), 1, + STATE(1090), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(945), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(594), 3, + ACTIONS(921), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(690), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35216,62 +33838,67 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [13708] = 20, + [13359] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(610), 1, + ACTIONS(617), 1, anon_sym_LBRACK, - ACTIONS(612), 1, + ACTIONS(619), 1, anon_sym_LBRACE, - ACTIONS(618), 1, + ACTIONS(625), 1, sym__string_start, - ACTIONS(954), 1, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(889), 1, sym_identifier, - ACTIONS(962), 1, + ACTIONS(897), 1, anon_sym_not, - ACTIONS(964), 1, + ACTIONS(899), 1, anon_sym_lambda, - ACTIONS(966), 1, + ACTIONS(901), 1, anon_sym_await, - ACTIONS(968), 1, + ACTIONS(911), 1, anon_sym_LPAREN, - STATE(698), 1, + STATE(718), 1, sym_primary_expression, - STATE(699), 1, + STATE(720), 1, sym_string, - STATE(987), 1, + STATE(722), 1, + sym_template_string, + STATE(999), 1, sym_expression, - STATE(1206), 1, + STATE(1238), 1, sym_with_item, - STATE(1431), 1, + STATE(1385), 1, sym_with_clause, - ACTIONS(614), 2, + ACTIONS(621), 2, sym_ellipsis, sym_float, - ACTIONS(608), 3, + ACTIONS(615), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(600), 4, + ACTIONS(607), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(958), 5, + ACTIONS(893), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(982), 6, + STATE(996), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(796), 16, + STATE(809), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35287,61 +33914,66 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [13799] = 19, + [13457] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(651), 1, anon_sym_not, - STATE(565), 1, + ACTIONS(689), 1, + sym_identifier, + ACTIONS(699), 1, + anon_sym_await, + ACTIONS(761), 1, + anon_sym_lambda, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(653), 1, sym_primary_expression, - STATE(1057), 1, + STATE(941), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(983), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(291), 3, + STATE(1023), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(695), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35357,61 +33989,67 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [13888] = 19, + [13553] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(609), 1, + anon_sym_LPAREN, + ACTIONS(617), 1, + anon_sym_LBRACK, + ACTIONS(619), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(625), 1, sym__string_start, - ACTIONS(325), 1, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(889), 1, sym_identifier, - ACTIONS(331), 1, + ACTIONS(897), 1, + anon_sym_not, + ACTIONS(899), 1, + anon_sym_lambda, + ACTIONS(901), 1, anon_sym_await, - ACTIONS(561), 1, - anon_sym_LPAREN, - ACTIONS(567), 1, - anon_sym_LBRACK, - STATE(689), 1, + ACTIONS(923), 1, + anon_sym_RPAREN, + STATE(718), 1, sym_primary_expression, - STATE(693), 1, + STATE(720), 1, sym_string, - STATE(1018), 1, + STATE(722), 1, + sym_template_string, + STATE(999), 1, sym_expression, - ACTIONS(75), 2, + STATE(1298), 1, + sym_with_item, + ACTIONS(621), 2, sym_ellipsis, sym_float, - ACTIONS(985), 2, - sym__newline, - sym__semicolon, - ACTIONS(47), 3, + ACTIONS(615), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(607), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(327), 5, + ACTIONS(893), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(940), 6, + STATE(996), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 16, + STATE(809), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35427,121 +34065,66 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [13977] = 8, + [13651] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(265), 1, - anon_sym_COMMA, - ACTIONS(273), 1, - anon_sym_COLON_EQ, - ACTIONS(987), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(275), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(293), 10, - sym__newline, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - sym__semicolon, - ACTIONS(297), 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(260), 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, - [14044] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(602), 1, - anon_sym_LPAREN, - ACTIONS(610), 1, - anon_sym_LBRACK, - ACTIONS(612), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(618), 1, - sym__string_start, - ACTIONS(954), 1, - sym_identifier, - ACTIONS(962), 1, - anon_sym_not, - ACTIONS(964), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(966), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(989), 1, - anon_sym_RPAREN, - STATE(698), 1, - sym_primary_expression, - STATE(699), 1, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(637), 1, + anon_sym_not, + STATE(569), 1, sym_string, - STATE(987), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1100), 1, sym_expression, - STATE(1256), 1, - sym_with_item, - ACTIONS(614), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(608), 3, + ACTIONS(925), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(600), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(958), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(982), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(796), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35557,62 +34140,67 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [14135] = 20, + [13747] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(610), 1, - anon_sym_LBRACK, - ACTIONS(612), 1, - anon_sym_LBRACE, - ACTIONS(618), 1, - sym__string_start, - ACTIONS(954), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(962), 1, - anon_sym_not, - ACTIONS(964), 1, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(966), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(968), 1, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - STATE(698), 1, - sym_primary_expression, - STATE(699), 1, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(637), 1, + anon_sym_not, + ACTIONS(717), 1, + anon_sym_STAR, + STATE(569), 1, sym_string, - STATE(987), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1075), 1, sym_expression, - STATE(1206), 1, - sym_with_item, - STATE(1402), 1, - sym_with_clause, - ACTIONS(614), 2, + STATE(1324), 1, + sym_list_splat, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(608), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(600), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(958), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(982), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(796), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35628,61 +34216,66 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [14226] = 19, + [13845] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_await, - ACTIONS(305), 1, + ACTIONS(81), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(494), 1, + anon_sym_await, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - ACTIONS(628), 1, - anon_sym_not, - STATE(565), 1, + STATE(698), 1, sym_string, - STATE(595), 1, + STATE(700), 1, + sym_template_string, + STATE(702), 1, sym_primary_expression, - STATE(1082), 1, + STATE(1069), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(991), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(291), 3, + ACTIONS(927), 2, + sym__newline, + sym__semicolon, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(490), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(955), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(760), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35698,62 +34291,65 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [14315] = 20, + [13941] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(610), 1, + ACTIONS(609), 1, + anon_sym_LPAREN, + ACTIONS(617), 1, anon_sym_LBRACK, - ACTIONS(612), 1, + ACTIONS(619), 1, anon_sym_LBRACE, - ACTIONS(618), 1, + ACTIONS(625), 1, sym__string_start, - ACTIONS(954), 1, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(889), 1, sym_identifier, - ACTIONS(962), 1, + ACTIONS(897), 1, anon_sym_not, - ACTIONS(964), 1, + ACTIONS(899), 1, anon_sym_lambda, - ACTIONS(966), 1, + ACTIONS(901), 1, anon_sym_await, - ACTIONS(968), 1, - anon_sym_LPAREN, - STATE(698), 1, + STATE(718), 1, sym_primary_expression, - STATE(699), 1, + STATE(720), 1, sym_string, - STATE(987), 1, + STATE(722), 1, + sym_template_string, + STATE(1036), 1, sym_expression, - STATE(1206), 1, - sym_with_item, - STATE(1410), 1, - sym_with_clause, - ACTIONS(614), 2, + STATE(1379), 1, + sym_exception_list, + ACTIONS(621), 2, sym_ellipsis, sym_float, - ACTIONS(608), 3, + ACTIONS(615), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(600), 4, + ACTIONS(607), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(958), 5, + ACTIONS(893), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(982), 6, + STATE(996), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(796), 16, + STATE(809), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35769,61 +34365,65 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [14406] = 19, + [14036] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(609), 1, + anon_sym_LPAREN, + ACTIONS(617), 1, + anon_sym_LBRACK, + ACTIONS(619), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(625), 1, sym__string_start, - ACTIONS(325), 1, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(889), 1, sym_identifier, - ACTIONS(331), 1, + ACTIONS(897), 1, + anon_sym_not, + ACTIONS(899), 1, + anon_sym_lambda, + ACTIONS(901), 1, anon_sym_await, - ACTIONS(561), 1, - anon_sym_LPAREN, - ACTIONS(567), 1, - anon_sym_LBRACK, - STATE(689), 1, + STATE(718), 1, sym_primary_expression, - STATE(693), 1, + STATE(720), 1, sym_string, - STATE(1018), 1, + STATE(722), 1, + sym_template_string, + STATE(999), 1, sym_expression, - ACTIONS(75), 2, + STATE(1298), 1, + sym_with_item, + ACTIONS(621), 2, sym_ellipsis, sym_float, - ACTIONS(993), 2, - sym__newline, - sym__semicolon, - ACTIONS(47), 3, + ACTIONS(615), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(607), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(327), 5, + ACTIONS(893), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(940), 6, + STATE(996), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 16, + STATE(809), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35839,89 +34439,83 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [14495] = 19, + [14131] = 5, 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(933), 1, + anon_sym_except, + STATE(289), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(929), 13, sym__string_start, - ACTIONS(325), 1, - sym_identifier, - ACTIONS(331), 1, - anon_sym_await, - ACTIONS(561), 1, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(567), 1, - anon_sym_LBRACK, - STATE(689), 1, - sym_primary_expression, - STATE(693), 1, - sym_string, - STATE(1018), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(995), 2, - sym__newline, - sym__semicolon, - 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_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(327), 5, + sym_ellipsis, + sym_float, + ACTIONS(931), 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, - STATE(940), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(773), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [14584] = 6, + 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, + [14194] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(997), 1, + ACTIONS(851), 1, + anon_sym_else, + ACTIONS(940), 1, anon_sym_elif, - STATE(308), 1, + STATE(382), 1, aux_sym_if_statement_repeat1, - STATE(390), 1, + STATE(417), 1, sym_elif_clause, - ACTIONS(970), 12, - sym__dedent, + STATE(524), 1, + sym_else_clause, + ACTIONS(936), 13, sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -35932,7 +34526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(972), 34, + ACTIONS(938), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -35945,7 +34539,6 @@ 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, @@ -35967,292 +34560,22 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [14647] = 19, + [14263] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(590), 1, - anon_sym_LPAREN, - ACTIONS(596), 1, - anon_sym_LBRACK, - ACTIONS(642), 1, - anon_sym_not, - ACTIONS(684), 1, - sym_identifier, - ACTIONS(694), 1, - anon_sym_await, - ACTIONS(748), 1, - anon_sym_lambda, - STATE(565), 1, - sym_string, - STATE(590), 1, - sym_primary_expression, - STATE(920), 1, - sym_expression, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - STATE(986), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(594), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(301), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(690), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(863), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(589), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [14736] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(590), 1, - anon_sym_LPAREN, - ACTIONS(596), 1, - anon_sym_LBRACK, - ACTIONS(642), 1, - anon_sym_not, - ACTIONS(684), 1, - sym_identifier, - ACTIONS(694), 1, - anon_sym_await, - ACTIONS(748), 1, - anon_sym_lambda, - STATE(565), 1, - sym_string, - STATE(590), 1, - sym_primary_expression, - STATE(913), 1, - sym_expression, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - STATE(979), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(594), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(301), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(690), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(863), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(589), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [14825] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_await, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(571), 1, - anon_sym_LPAREN, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(628), 1, - anon_sym_not, - STATE(565), 1, - sym_string, - STATE(595), 1, - sym_primary_expression, - STATE(1076), 1, - sym_expression, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - ACTIONS(1000), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(291), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(301), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(271), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(863), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(589), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [14914] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(602), 1, - anon_sym_LPAREN, - ACTIONS(610), 1, - anon_sym_LBRACK, - ACTIONS(612), 1, - anon_sym_LBRACE, - ACTIONS(618), 1, - sym__string_start, - ACTIONS(954), 1, - sym_identifier, - ACTIONS(962), 1, - anon_sym_not, - ACTIONS(964), 1, - anon_sym_lambda, - ACTIONS(966), 1, - anon_sym_await, - ACTIONS(1002), 1, - anon_sym_STAR, - ACTIONS(1004), 1, - anon_sym_COLON, - STATE(698), 1, - sym_primary_expression, - STATE(699), 1, - sym_string, - STATE(1012), 1, - sym_expression, - ACTIONS(614), 2, - sym_ellipsis, - sym_float, - ACTIONS(608), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(600), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(958), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(982), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(796), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [15005] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1006), 12, + ACTIONS(851), 1, + anon_sym_else, + ACTIONS(940), 1, + anon_sym_elif, + STATE(309), 1, + aux_sym_if_statement_repeat1, + STATE(417), 1, + sym_elif_clause, + STATE(521), 1, + sym_else_clause, + ACTIONS(942), 13, sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -36264,7 +34587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1008), 36, + ACTIONS(944), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -36277,13 +34600,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, @@ -36301,70 +34621,18 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [15061] = 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, - [15117] = 5, + [14332] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1014), 1, - anon_sym_case, - STATE(320), 2, - sym_case_block, - aux_sym_cases_repeat1, - ACTIONS(1010), 12, + ACTIONS(950), 1, + anon_sym_except, + STATE(292), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(948), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -36375,7 +34643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1012), 33, + ACTIONS(946), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -36388,10 +34656,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, @@ -36409,253 +34679,18 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [15177] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(578), 1, - anon_sym_COLON_EQ, - ACTIONS(580), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(573), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(586), 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(293), 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(260), 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, - [15241] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1023), 1, - anon_sym_COLON_EQ, - ACTIONS(1025), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(1018), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1027), 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(1016), 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(1021), 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, - [15305] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(820), 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(818), 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, - [15361] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(602), 1, - anon_sym_LPAREN, - ACTIONS(610), 1, - anon_sym_LBRACK, - ACTIONS(612), 1, - anon_sym_LBRACE, - ACTIONS(618), 1, - sym__string_start, - ACTIONS(954), 1, - sym_identifier, - ACTIONS(962), 1, - anon_sym_not, - ACTIONS(964), 1, - anon_sym_lambda, - ACTIONS(966), 1, - anon_sym_await, - ACTIONS(1004), 1, - anon_sym_COLON, - STATE(698), 1, - sym_primary_expression, - STATE(699), 1, - sym_string, - STATE(1012), 1, - sym_expression, - ACTIONS(614), 2, - sym_ellipsis, - sym_float, - ACTIONS(608), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(600), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(958), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(982), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(796), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [15449] = 5, + [14395] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1033), 1, - anon_sym_case, - STATE(320), 2, - sym_case_block, - aux_sym_cases_repeat1, - ACTIONS(1029), 12, + ACTIONS(953), 1, + anon_sym_except, + STATE(293), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(929), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -36666,7 +34701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1031), 33, + ACTIONS(931), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -36679,10 +34714,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, @@ -36700,11 +34737,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [15509] = 3, + [14458] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1036), 12, + ACTIONS(956), 13, sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -36716,7 +34754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1038), 36, + ACTIONS(958), 38, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -36729,6 +34767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, anon_sym_else, anon_sym_async, anon_sym_for, @@ -36738,6 +34777,7 @@ 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, @@ -36753,11 +34793,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [15565] = 3, + [14517] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1040), 12, + ACTIONS(960), 13, sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -36769,7 +34810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1042), 36, + ACTIONS(962), 38, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -36782,6 +34823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, anon_sym_else, anon_sym_async, anon_sym_for, @@ -36791,6 +34833,7 @@ 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, @@ -36806,12 +34849,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [15621] = 3, + [14576] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1044), 12, + ACTIONS(956), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -36822,7 +34866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1046), 36, + ACTIONS(958), 38, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -36835,6 +34879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, anon_sym_else, anon_sym_async, anon_sym_for, @@ -36844,6 +34889,7 @@ 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, @@ -36859,11 +34905,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [15677] = 3, + [14635] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1048), 12, + ACTIONS(964), 13, sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -36875,7 +34922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1050), 36, + ACTIONS(966), 38, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -36888,6 +34935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, anon_sym_else, anon_sym_async, anon_sym_for, @@ -36897,6 +34945,7 @@ 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, @@ -36912,282 +34961,23 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [15733] = 3, + [14694] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1052), 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(1054), 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_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [15789] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1056), 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(1058), 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_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [15845] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1060), 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(1062), 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_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [15901] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1064), 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(1066), 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_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [15957] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1068), 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(1070), 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, + ACTIONS(270), 1, + anon_sym_COMMA, + ACTIONS(278), 1, + anon_sym_COLON_EQ, + ACTIONS(968), 1, anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, + ACTIONS(970), 1, anon_sym_with, - anon_sym_match, + ACTIONS(972), 1, 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, - [16013] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(265), 1, - anon_sym_COMMA, - ACTIONS(273), 1, - anon_sym_COLON_EQ, - ACTIONS(275), 2, + ACTIONS(280), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(297), 13, + ACTIONS(302), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -37201,7 +34991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(260), 15, + ACTIONS(265), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_PIPE, @@ -37217,7 +35007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(293), 16, + ACTIONS(298), 16, sym__newline, anon_sym_DOT, anon_sym_LPAREN, @@ -37234,17 +35024,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [16077] = 7, + [14767] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1072), 1, + ACTIONS(270), 1, anon_sym_COMMA, - ACTIONS(1075), 1, + ACTIONS(278), 1, anon_sym_COLON_EQ, - ACTIONS(1077), 2, + ACTIONS(974), 1, + anon_sym_for, + ACTIONS(976), 1, + anon_sym_with, + ACTIONS(978), 1, + anon_sym_def, + ACTIONS(280), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(1079), 13, + ACTIONS(302), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -37258,7 +35054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1021), 15, + ACTIONS(265), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_PIPE, @@ -37274,7 +35070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1016), 16, + ACTIONS(298), 16, sym__newline, anon_sym_DOT, anon_sym_LPAREN, @@ -37291,17 +35087,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [16141] = 5, + [14840] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1081), 1, - anon_sym_case, - STATE(333), 2, - sym_case_block, - aux_sym_cases_repeat1, - ACTIONS(1010), 12, + ACTIONS(877), 1, + anon_sym_else, + ACTIONS(984), 1, + anon_sym_elif, + STATE(312), 1, + aux_sym_if_statement_repeat1, + STATE(433), 1, + sym_elif_clause, + STATE(560), 1, + sym_else_clause, + ACTIONS(982), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -37312,7 +35114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1012), 33, + ACTIONS(980), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -37346,17 +35148,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [16201] = 5, + [14909] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1083), 1, - anon_sym_case, - STATE(333), 2, - sym_case_block, - aux_sym_cases_repeat1, - ACTIONS(1029), 12, + ACTIONS(960), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -37367,7 +35165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1031), 33, + ACTIONS(962), 38, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -37380,12 +35178,17 @@ 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, @@ -37401,12 +35204,23 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [16261] = 3, + [14968] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1036), 12, - sym__dedent, + ACTIONS(851), 1, + anon_sym_else, + ACTIONS(940), 1, + anon_sym_elif, + STATE(290), 1, + aux_sym_if_statement_repeat1, + STATE(417), 1, + sym_elif_clause, + STATE(502), 1, + sym_else_clause, + ACTIONS(982), 13, sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -37417,7 +35231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1038), 36, + ACTIONS(980), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -37430,13 +35244,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, @@ -37454,12 +35265,97 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [16317] = 3, + [15037] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1040), 12, + ACTIONS(609), 1, + anon_sym_LPAREN, + ACTIONS(617), 1, + anon_sym_LBRACK, + ACTIONS(619), 1, + anon_sym_LBRACE, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(889), 1, + sym_identifier, + ACTIONS(897), 1, + anon_sym_not, + ACTIONS(899), 1, + anon_sym_lambda, + ACTIONS(901), 1, + anon_sym_await, + STATE(718), 1, + sym_primary_expression, + STATE(720), 1, + sym_string, + STATE(722), 1, + sym_template_string, + STATE(1033), 1, + sym_expression, + STATE(1345), 1, + sym_exception_list, + ACTIONS(621), 2, + sym_ellipsis, + sym_float, + ACTIONS(615), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(607), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(893), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(996), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(809), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [15132] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(877), 1, + anon_sym_else, + ACTIONS(984), 1, + anon_sym_elif, + STATE(310), 1, + aux_sym_if_statement_repeat1, + STATE(433), 1, + sym_elif_clause, + STATE(522), 1, + sym_else_clause, + ACTIONS(942), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -37470,7 +35366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1042), 36, + ACTIONS(944), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -37483,13 +35379,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, @@ -37507,12 +35400,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [16373] = 3, + [15201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1044), 12, - sym__dedent, + ACTIONS(986), 13, sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -37523,7 +35417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1046), 36, + ACTIONS(988), 38, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -37536,6 +35430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, anon_sym_else, anon_sym_async, anon_sym_for, @@ -37545,6 +35440,7 @@ 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, @@ -37560,12 +35456,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [16429] = 3, + [15260] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1048), 12, + ACTIONS(986), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -37576,7 +35473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1050), 36, + ACTIONS(988), 38, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -37589,6 +35486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, anon_sym_else, anon_sym_async, anon_sym_for, @@ -37598,6 +35496,7 @@ 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, @@ -37613,12 +35512,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [16485] = 3, + [15319] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1052), 12, + ACTIONS(992), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -37629,7 +35529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1054), 36, + ACTIONS(990), 38, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -37642,6 +35542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, anon_sym_else, anon_sym_async, anon_sym_for, @@ -37651,6 +35552,7 @@ 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, @@ -37666,12 +35568,18 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [16541] = 3, + [15378] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1056), 12, - sym__dedent, + ACTIONS(994), 1, + anon_sym_except, + STATE(308), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(948), 13, sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -37682,7 +35590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1058), 36, + ACTIONS(946), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -37700,7 +35608,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, @@ -37719,12 +35626,23 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [16597] = 3, + [15441] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1060), 12, - sym__dedent, + ACTIONS(851), 1, + anon_sym_else, + ACTIONS(940), 1, + anon_sym_elif, + STATE(382), 1, + aux_sym_if_statement_repeat1, + STATE(417), 1, + sym_elif_clause, + STATE(491), 1, + sym_else_clause, + ACTIONS(997), 13, sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -37735,7 +35653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1062), 36, + ACTIONS(999), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -37748,13 +35666,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, @@ -37772,12 +35687,23 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [16653] = 3, + [15510] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1064), 12, + ACTIONS(877), 1, + anon_sym_else, + ACTIONS(984), 1, + anon_sym_elif, + STATE(369), 1, + aux_sym_if_statement_repeat1, + STATE(433), 1, + sym_elif_clause, + STATE(489), 1, + sym_else_clause, + ACTIONS(997), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -37788,7 +35714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1066), 36, + ACTIONS(999), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -37801,13 +35727,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, @@ -37825,12 +35748,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [16709] = 3, + [15579] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1068), 12, - sym__dedent, + ACTIONS(992), 13, sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -37841,7 +35765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1070), 36, + ACTIONS(990), 38, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -37854,6 +35778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, anon_sym_else, anon_sym_async, anon_sym_for, @@ -37863,6 +35788,7 @@ 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, @@ -37878,12 +35804,23 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [16765] = 3, + [15638] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1006), 12, + ACTIONS(877), 1, + anon_sym_else, + ACTIONS(984), 1, + anon_sym_elif, + STATE(369), 1, + aux_sym_if_statement_repeat1, + STATE(433), 1, + sym_elif_clause, + STATE(526), 1, + sym_else_clause, + ACTIONS(936), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -37894,7 +35831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1008), 36, + ACTIONS(938), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -37907,13 +35844,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, @@ -37931,59 +35865,117 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [16821] = 19, + [15707] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(602), 1, + ACTIONS(964), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, anon_sym_LPAREN, - ACTIONS(610), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(612), 1, anon_sym_LBRACE, - ACTIONS(618), 1, - sym__string_start, - ACTIONS(954), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(966), 38, + 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_except, + 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(960), 1, - anon_sym_COLON, - ACTIONS(962), 1, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [15766] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(964), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(966), 1, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(494), 1, anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, STATE(698), 1, - sym_primary_expression, - STATE(699), 1, sym_string, - STATE(1028), 1, + STATE(700), 1, + sym_template_string, + STATE(702), 1, + sym_primary_expression, + STATE(953), 1, sym_expression, - ACTIONS(614), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(608), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(600), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(958), 5, + ACTIONS(490), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(982), 6, + STATE(955), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(796), 16, + STATE(760), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37999,60 +35991,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [16909] = 19, + [15858] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(602), 1, - anon_sym_LPAREN, - ACTIONS(610), 1, - anon_sym_LBRACK, - ACTIONS(612), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(618), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(954), 1, - sym_identifier, - ACTIONS(962), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, + anon_sym_LPAREN, + ACTIONS(603), 1, + anon_sym_LBRACK, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(964), 1, + ACTIONS(653), 1, anon_sym_lambda, - ACTIONS(966), 1, + ACTIONS(689), 1, + sym_identifier, + ACTIONS(699), 1, anon_sym_await, - STATE(698), 1, - sym_primary_expression, - STATE(699), 1, + STATE(569), 1, sym_string, - STATE(987), 1, + STATE(570), 1, + sym_template_string, + STATE(653), 1, + sym_primary_expression, + STATE(899), 1, sym_expression, - STATE(1256), 1, - sym_with_item, - ACTIONS(614), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(608), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(600), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(958), 5, + ACTIONS(695), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(982), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(796), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38068,58 +36063,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [16997] = 18, + [15950] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(590), 1, + ACTIONS(609), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(617), 1, anon_sym_LBRACK, - ACTIONS(642), 1, + ACTIONS(619), 1, + anon_sym_LBRACE, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(889), 1, + sym_identifier, + ACTIONS(897), 1, anon_sym_not, - ACTIONS(644), 1, + ACTIONS(899), 1, anon_sym_lambda, - ACTIONS(684), 1, - sym_identifier, - ACTIONS(694), 1, + ACTIONS(901), 1, anon_sym_await, - STATE(565), 1, - sym_string, - STATE(590), 1, + STATE(718), 1, sym_primary_expression, - STATE(885), 1, + STATE(720), 1, + sym_string, + STATE(722), 1, + sym_template_string, + STATE(994), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(621), 2, sym_ellipsis, sym_float, - ACTIONS(594), 3, + ACTIONS(615), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(607), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(690), 5, + ACTIONS(893), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(996), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(809), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38135,112 +36135,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [17082] = 5, + [16042] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(832), 1, - anon_sym_else, - STATE(533), 1, - sym_else_clause, - ACTIONS(1086), 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(1088), 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(83), 1, + sym__template_string_start, + ACTIONS(488), 1, sym_identifier, + ACTIONS(494), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [17141] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(602), 1, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(610), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - ACTIONS(612), 1, - anon_sym_LBRACE, - ACTIONS(618), 1, - sym__string_start, - ACTIONS(954), 1, - sym_identifier, - ACTIONS(962), 1, - anon_sym_not, - ACTIONS(964), 1, - anon_sym_lambda, - ACTIONS(966), 1, - anon_sym_await, STATE(698), 1, - sym_primary_expression, - STATE(699), 1, sym_string, - STATE(1047), 1, + STATE(700), 1, + sym_template_string, + STATE(702), 1, + sym_primary_expression, + STATE(972), 1, sym_expression, - ACTIONS(614), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(608), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(600), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(958), 5, + ACTIONS(490), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(982), 6, + STATE(955), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(796), 16, + STATE(760), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38256,171 +36207,67 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [17226] = 5, + [16134] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(832), 1, - anon_sym_else, - STATE(556), 1, - sym_else_clause, - ACTIONS(1090), 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(1092), 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(263), 1, sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [17285] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(836), 1, - anon_sym_finally, - STATE(542), 1, - sym_finally_clause, - ACTIONS(1094), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, + ACTIONS(288), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1096), 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(300), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, + ACTIONS(308), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [17344] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(1098), 1, - sym_identifier, - ACTIONS(1102), 1, - anon_sym_await, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(908), 1, + STATE(1169), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(377), 2, - sym_attribute, - sym_subscript, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1100), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 14, + STATE(649), 17, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -38432,58 +36279,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [17431] = 18, + [16226] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1024), 1, + STATE(890), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38499,58 +36351,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [17516] = 18, + [16318] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(898), 1, + STATE(1126), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38566,167 +36423,135 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [17601] = 6, + [16410] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1106), 1, - anon_sym_COMMA, - ACTIONS(1113), 1, - anon_sym_EQ, - ACTIONS(1111), 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(1109), 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(1104), 16, - sym__newline, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, 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, - [17662] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(832), 1, - anon_sym_else, - STATE(467), 1, - sym_else_clause, - ACTIONS(1115), 12, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, sym__string_start, - ts_builtin_sym_end, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(494), 1, + anon_sym_await, + ACTIONS(568), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(574), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + STATE(698), 1, + sym_string, + STATE(700), 1, + sym_template_string, + STATE(702), 1, + sym_primary_expression, + STATE(963), 1, + sym_expression, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1117), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(490), 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, - [17721] = 18, + STATE(955), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(760), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [16502] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(651), 1, anon_sym_not, - STATE(565), 1, + ACTIONS(653), 1, + anon_sym_lambda, + ACTIONS(689), 1, + sym_identifier, + ACTIONS(699), 1, + anon_sym_await, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(653), 1, sym_primary_expression, - STATE(1115), 1, + STATE(898), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(695), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38742,112 +36567,135 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [17806] = 5, + [16594] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(836), 1, - anon_sym_finally, - STATE(497), 1, - sym_finally_clause, - ACTIONS(1119), 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(83), 1, + sym__template_string_start, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(494), 1, + anon_sym_await, + ACTIONS(568), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(574), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + STATE(698), 1, + sym_string, + STATE(700), 1, + sym_template_string, + STATE(702), 1, + sym_primary_expression, + STATE(1053), 1, + sym_expression, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1121), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(490), 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, - [17865] = 18, + STATE(955), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(760), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [16686] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1123), 1, + STATE(1166), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38863,58 +36711,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [17950] = 18, + [16778] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(325), 1, - sym_identifier, - ACTIONS(331), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(561), 1, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - STATE(689), 1, - sym_primary_expression, - STATE(693), 1, + ACTIONS(637), 1, + anon_sym_not, + STATE(569), 1, sym_string, - STATE(946), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1161), 1, sym_expression, - ACTIONS(75), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(327), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(940), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38930,166 +36783,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [18035] = 5, + [16870] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(832), 1, - anon_sym_else, - STATE(522), 1, - sym_else_clause, - ACTIONS(1123), 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(1125), 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, - [18094] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(832), 1, - anon_sym_else, - STATE(529), 1, - sym_else_clause, - ACTIONS(1127), 12, + ACTIONS(81), 1, 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(1129), 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, - [18153] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(258), 1, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(488), 1, sym_identifier, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(494), 1, anon_sym_await, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(571), 1, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - ACTIONS(628), 1, - anon_sym_not, - STATE(565), 1, + STATE(698), 1, sym_string, - STATE(595), 1, + STATE(700), 1, + sym_template_string, + STATE(702), 1, sym_primary_expression, - STATE(1085), 1, + STATE(951), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(490), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(955), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(760), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39105,58 +36855,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [18238] = 18, + [16962] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, + anon_sym_LPAREN, + ACTIONS(603), 1, + anon_sym_LBRACK, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(653), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(325), 1, + ACTIONS(689), 1, sym_identifier, - ACTIONS(331), 1, + ACTIONS(699), 1, anon_sym_await, - ACTIONS(561), 1, - anon_sym_LPAREN, - ACTIONS(567), 1, - anon_sym_LBRACK, - STATE(689), 1, - sym_primary_expression, - STATE(693), 1, + STATE(569), 1, sym_string, - STATE(1072), 1, + STATE(570), 1, + sym_template_string, + STATE(653), 1, + sym_primary_expression, + STATE(904), 1, sym_expression, - ACTIONS(75), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(327), 5, + ACTIONS(695), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(940), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39172,8 +36927,9 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [18323] = 18, + [17054] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -39184,19 +36940,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym__string_start, - ACTIONS(325), 1, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(488), 1, sym_identifier, - ACTIONS(331), 1, + ACTIONS(494), 1, anon_sym_await, - ACTIONS(561), 1, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - STATE(689), 1, - sym_primary_expression, - STATE(693), 1, + STATE(698), 1, sym_string, - STATE(958), 1, + STATE(700), 1, + sym_template_string, + STATE(702), 1, + sym_primary_expression, + STATE(1094), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, @@ -39210,20 +36970,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(327), 5, + ACTIONS(490), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(940), 6, + STATE(955), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 16, + STATE(760), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39239,164 +36999,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [18408] = 3, + [17146] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1131), 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(1133), 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, + ACTIONS(263), 1, sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [18463] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(832), 1, - anon_sym_else, - STATE(538), 1, - sym_else_clause, - ACTIONS(1135), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, + ACTIONS(288), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1137), 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(300), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, + ACTIONS(308), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [18522] = 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, + ACTIONS(310), 1, sym__string_start, - ACTIONS(325), 1, - sym_identifier, - ACTIONS(331), 1, - anon_sym_await, - ACTIONS(561), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - STATE(689), 1, - sym_primary_expression, - STATE(693), 1, + ACTIONS(637), 1, + anon_sym_not, + STATE(569), 1, sym_string, - STATE(1121), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1154), 1, sym_expression, - ACTIONS(75), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(327), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(940), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39412,58 +37071,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [18607] = 18, + [17238] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(325), 1, - sym_identifier, - ACTIONS(331), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(561), 1, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - STATE(689), 1, - sym_primary_expression, - STATE(693), 1, + ACTIONS(637), 1, + anon_sym_not, + STATE(569), 1, sym_string, - STATE(927), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1150), 1, sym_expression, - ACTIONS(75), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(327), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(940), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39479,58 +37143,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [18692] = 18, + [17330] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, sym__string_start, - ACTIONS(590), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(642), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(644), 1, - anon_sym_lambda, - ACTIONS(684), 1, - sym_identifier, - ACTIONS(694), 1, - anon_sym_await, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(590), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(941), 1, + STATE(1106), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(594), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(690), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39546,58 +37215,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [18777] = 18, + [17422] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1147), 1, + STATE(1092), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39613,110 +37287,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [18862] = 3, + [17514] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1139), 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(1141), 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, + ACTIONS(263), 1, sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [18917] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(325), 1, - sym_identifier, - ACTIONS(331), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(561), 1, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - STATE(689), 1, - sym_primary_expression, - STATE(693), 1, + ACTIONS(637), 1, + anon_sym_not, + STATE(569), 1, sym_string, - STATE(966), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1151), 1, sym_expression, - ACTIONS(75), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(327), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(940), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39732,58 +37359,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [19002] = 18, + [17606] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(325), 1, - sym_identifier, - ACTIONS(331), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(561), 1, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - STATE(689), 1, - sym_primary_expression, - STATE(693), 1, + ACTIONS(637), 1, + anon_sym_not, + STATE(569), 1, sym_string, - STATE(967), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1059), 1, sym_expression, - ACTIONS(75), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(327), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(940), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39799,8 +37431,9 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [19087] = 18, + [17698] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -39811,19 +37444,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym__string_start, - ACTIONS(325), 1, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(488), 1, sym_identifier, - ACTIONS(331), 1, + ACTIONS(494), 1, anon_sym_await, - ACTIONS(561), 1, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - STATE(689), 1, - sym_primary_expression, - STATE(693), 1, + STATE(698), 1, sym_string, - STATE(977), 1, + STATE(700), 1, + sym_template_string, + STATE(702), 1, + sym_primary_expression, + STATE(985), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, @@ -39837,20 +37474,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(327), 5, + ACTIONS(490), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(940), 6, + STATE(955), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 16, + STATE(760), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39866,58 +37503,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [19172] = 18, + [17790] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1096), 1, + STATE(889), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39933,58 +37575,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [19257] = 18, + [17882] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(325), 1, - sym_identifier, - ACTIONS(331), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(561), 1, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - STATE(689), 1, - sym_primary_expression, - STATE(693), 1, + ACTIONS(637), 1, + anon_sym_not, + STATE(569), 1, sym_string, - STATE(1068), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(934), 1, sym_expression, - ACTIONS(75), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(327), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(940), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40000,113 +37647,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [19342] = 6, + [17974] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1025), 1, - anon_sym_EQ, - ACTIONS(1018), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1016), 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(1027), 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(1021), 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, - [19403] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(283), 1, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, sym__string_start, - ACTIONS(590), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(642), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(644), 1, - anon_sym_lambda, - ACTIONS(684), 1, - sym_identifier, - ACTIONS(694), 1, - anon_sym_await, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(590), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(875), 1, + STATE(879), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(594), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(690), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40122,8 +37719,9 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [19488] = 18, + [18066] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -40134,19 +37732,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym__string_start, - ACTIONS(325), 1, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(488), 1, sym_identifier, - ACTIONS(331), 1, + ACTIONS(494), 1, anon_sym_await, - ACTIONS(561), 1, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - STATE(689), 1, - sym_primary_expression, - STATE(693), 1, + STATE(698), 1, sym_string, - STATE(960), 1, + STATE(700), 1, + sym_template_string, + STATE(702), 1, + sym_primary_expression, + STATE(1069), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, @@ -40160,20 +37762,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(327), 5, + ACTIONS(490), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(940), 6, + STATE(955), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 16, + STATE(760), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40189,58 +37791,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [19573] = 18, + [18158] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(590), 1, + ACTIONS(609), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(617), 1, anon_sym_LBRACK, - ACTIONS(642), 1, + ACTIONS(619), 1, + anon_sym_LBRACE, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(889), 1, + sym_identifier, + ACTIONS(897), 1, anon_sym_not, - ACTIONS(644), 1, + ACTIONS(899), 1, anon_sym_lambda, - ACTIONS(684), 1, - sym_identifier, - ACTIONS(694), 1, + ACTIONS(901), 1, anon_sym_await, - STATE(565), 1, - sym_string, - STATE(590), 1, + STATE(718), 1, sym_primary_expression, - STATE(877), 1, + STATE(720), 1, + sym_string, + STATE(722), 1, + sym_template_string, + STATE(1064), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(621), 2, sym_ellipsis, sym_float, - ACTIONS(594), 3, + ACTIONS(615), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(607), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(690), 5, + ACTIONS(893), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(996), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(809), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40256,58 +37863,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [19658] = 18, + [18250] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_await, - ACTIONS(305), 1, + ACTIONS(81), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(494), 1, + anon_sym_await, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - ACTIONS(628), 1, - anon_sym_not, - STATE(565), 1, + STATE(698), 1, sym_string, - STATE(595), 1, + STATE(700), 1, + sym_template_string, + STATE(702), 1, sym_primary_expression, - STATE(899), 1, + STATE(984), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(490), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(955), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(760), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40323,58 +37935,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [19743] = 18, + [18342] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(590), 1, - anon_sym_LPAREN, - ACTIONS(596), 1, - anon_sym_LBRACK, - ACTIONS(642), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(644), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(684), 1, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(488), 1, sym_identifier, - ACTIONS(694), 1, + ACTIONS(494), 1, anon_sym_await, - STATE(565), 1, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + STATE(698), 1, sym_string, - STATE(590), 1, + STATE(700), 1, + sym_template_string, + STATE(702), 1, sym_primary_expression, - STATE(878), 1, + STATE(1081), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(594), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(690), 5, + ACTIONS(490), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(955), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(760), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40390,58 +38007,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [19828] = 18, + [18434] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(590), 1, + ACTIONS(609), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(617), 1, anon_sym_LBRACK, - ACTIONS(642), 1, + ACTIONS(619), 1, + anon_sym_LBRACE, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(889), 1, + sym_identifier, + ACTIONS(897), 1, anon_sym_not, - ACTIONS(644), 1, + ACTIONS(899), 1, anon_sym_lambda, - ACTIONS(684), 1, - sym_identifier, - ACTIONS(694), 1, + ACTIONS(901), 1, anon_sym_await, - STATE(565), 1, - sym_string, - STATE(590), 1, + STATE(718), 1, sym_primary_expression, - STATE(880), 1, + STATE(720), 1, + sym_string, + STATE(722), 1, + sym_template_string, + STATE(1015), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(621), 2, sym_ellipsis, sym_float, - ACTIONS(594), 3, + ACTIONS(615), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(607), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(690), 5, + ACTIONS(893), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(996), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(809), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40457,58 +38079,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [19913] = 18, + [18526] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, sym__string_start, - ACTIONS(590), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(642), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(644), 1, - anon_sym_lambda, - ACTIONS(684), 1, - sym_identifier, - ACTIONS(694), 1, - anon_sym_await, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(590), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(881), 1, + STATE(1158), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(594), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(690), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40524,58 +38151,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [19998] = 18, + [18618] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(325), 1, - sym_identifier, - ACTIONS(331), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(561), 1, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - STATE(689), 1, - sym_primary_expression, - STATE(693), 1, + ACTIONS(637), 1, + anon_sym_not, + STATE(569), 1, sym_string, - STATE(1035), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1142), 1, sym_expression, - ACTIONS(75), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(327), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(940), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40591,112 +38223,135 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [20083] = 5, + [18710] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(838), 1, - anon_sym_else, - STATE(471), 1, - sym_else_clause, - ACTIONS(1090), 12, - sym__dedent, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(591), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(637), 1, + anon_sym_not, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(910), 1, + sym_expression, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(1092), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(276), 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, - [20142] = 18, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [18802] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(609), 1, + anon_sym_LPAREN, + ACTIONS(617), 1, + anon_sym_LBRACK, + ACTIONS(619), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(625), 1, sym__string_start, - ACTIONS(325), 1, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(889), 1, sym_identifier, - ACTIONS(331), 1, + ACTIONS(897), 1, + anon_sym_not, + ACTIONS(899), 1, + anon_sym_lambda, + ACTIONS(901), 1, anon_sym_await, - ACTIONS(561), 1, - anon_sym_LPAREN, - ACTIONS(567), 1, - anon_sym_LBRACK, - STATE(689), 1, + STATE(718), 1, sym_primary_expression, - STATE(693), 1, + STATE(720), 1, sym_string, - STATE(939), 1, + STATE(722), 1, + sym_template_string, + STATE(1021), 1, sym_expression, - ACTIONS(75), 2, + ACTIONS(621), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(615), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(607), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(327), 5, + ACTIONS(893), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(940), 6, + STATE(996), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 16, + STATE(809), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40712,58 +38367,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [20227] = 18, + [18894] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(590), 1, + ACTIONS(609), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(617), 1, anon_sym_LBRACK, - ACTIONS(642), 1, + ACTIONS(619), 1, + anon_sym_LBRACE, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(889), 1, + sym_identifier, + ACTIONS(897), 1, anon_sym_not, - ACTIONS(644), 1, + ACTIONS(899), 1, anon_sym_lambda, - ACTIONS(684), 1, - sym_identifier, - ACTIONS(694), 1, + ACTIONS(901), 1, anon_sym_await, - STATE(565), 1, - sym_string, - STATE(590), 1, + STATE(718), 1, sym_primary_expression, - STATE(887), 1, + STATE(720), 1, + sym_string, + STATE(722), 1, + sym_template_string, + STATE(1024), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(621), 2, sym_ellipsis, sym_float, - ACTIONS(594), 3, + ACTIONS(615), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(607), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(690), 5, + ACTIONS(893), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(996), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(809), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40779,58 +38439,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [20312] = 18, + [18986] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_await, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(571), 1, + ACTIONS(609), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(617), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(619), 1, + anon_sym_LBRACE, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(889), 1, + sym_identifier, + ACTIONS(897), 1, anon_sym_not, - STATE(565), 1, - sym_string, - STATE(595), 1, + ACTIONS(899), 1, + anon_sym_lambda, + ACTIONS(901), 1, + anon_sym_await, + STATE(718), 1, sym_primary_expression, - STATE(1089), 1, + STATE(720), 1, + sym_string, + STATE(722), 1, + sym_template_string, + STATE(1027), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(621), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(615), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(607), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(893), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(996), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(809), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40846,222 +38511,81 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [20397] = 3, + [19078] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1145), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1143), 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(300), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, + ACTIONS(308), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [20452] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(838), 1, - anon_sym_else, - STATE(486), 1, - sym_else_clause, - ACTIONS(1086), 12, - sym__dedent, + ACTIONS(310), 1, sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(591), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(637), 1, + anon_sym_not, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1043), 1, + sym_expression, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(1088), 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, - [20511] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(842), 1, - anon_sym_finally, - STATE(488), 1, - sym_finally_clause, - ACTIONS(1094), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, + ACTIONS(296), 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(1096), 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, + ACTIONS(306), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [20570] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(838), 1, - anon_sym_else, - STATE(500), 1, - sym_else_clause, - ACTIONS(1115), 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(1117), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(276), 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, - [20629] = 18, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [19170] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -41072,19 +38596,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym__string_start, - ACTIONS(325), 1, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(488), 1, sym_identifier, - ACTIONS(331), 1, + ACTIONS(494), 1, anon_sym_await, - ACTIONS(561), 1, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - STATE(689), 1, - sym_primary_expression, - STATE(693), 1, + STATE(698), 1, sym_string, - STATE(952), 1, + STATE(700), 1, + sym_template_string, + STATE(702), 1, + sym_primary_expression, + STATE(1140), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, @@ -41098,20 +38626,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(327), 5, + ACTIONS(490), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(940), 6, + STATE(955), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 16, + STATE(760), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41127,220 +38655,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [20714] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(842), 1, - anon_sym_finally, - STATE(505), 1, - sym_finally_clause, - ACTIONS(1119), 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(1121), 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, - [20773] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(838), 1, - anon_sym_else, - STATE(510), 1, - sym_else_clause, - ACTIONS(1123), 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(1125), 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, - [20832] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(838), 1, - anon_sym_else, - STATE(514), 1, - sym_else_clause, - ACTIONS(1127), 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(1129), 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, - [20891] = 18, + [19262] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1070), 1, + STATE(1058), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41356,58 +38727,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [20976] = 18, + [19354] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_await, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(571), 1, + ACTIONS(609), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(617), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(619), 1, + anon_sym_LBRACE, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(889), 1, + sym_identifier, + ACTIONS(897), 1, anon_sym_not, - STATE(565), 1, - sym_string, - STATE(595), 1, + ACTIONS(899), 1, + anon_sym_lambda, + ACTIONS(901), 1, + anon_sym_await, + STATE(718), 1, sym_primary_expression, - STATE(1071), 1, + STATE(720), 1, + sym_string, + STATE(722), 1, + sym_template_string, + STATE(1029), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(621), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(615), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(607), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(893), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(996), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(809), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41423,164 +38799,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [21061] = 3, + [19446] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1131), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, + ACTIONS(288), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1133), 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, - [21116] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(838), 1, - anon_sym_else, - STATE(519), 1, - sym_else_clause, - ACTIONS(1135), 12, - sym__dedent, + ACTIONS(310), 1, sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(603), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1137), 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(651), 1, anon_sym_not, + ACTIONS(653), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [21175] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(258), 1, + ACTIONS(689), 1, sym_identifier, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(699), 1, anon_sym_await, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(571), 1, - anon_sym_LPAREN, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(628), 1, - anon_sym_not, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(653), 1, sym_primary_expression, - STATE(908), 1, + STATE(897), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(695), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41596,115 +38871,81 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [21260] = 6, + [19538] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1149), 1, - anon_sym_COMMA, - ACTIONS(1156), 1, - anon_sym_EQ, - ACTIONS(1154), 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(1152), 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(1147), 16, - sym__newline, - anon_sym_DOT, + ACTIONS(609), 1, anon_sym_LPAREN, - anon_sym_if, - anon_sym_in, + ACTIONS(617), 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, - [21321] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1139), 12, - sym__dedent, + ACTIONS(619), 1, + anon_sym_LBRACE, + ACTIONS(625), 1, sym__string_start, - anon_sym_LPAREN, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(889), 1, + sym_identifier, + ACTIONS(897), 1, + anon_sym_not, + ACTIONS(899), 1, + anon_sym_lambda, + ACTIONS(901), 1, + anon_sym_await, + STATE(718), 1, + sym_primary_expression, + STATE(720), 1, + sym_string, + STATE(722), 1, + sym_template_string, + STATE(993), 1, + sym_expression, + ACTIONS(621), 2, + sym_ellipsis, + sym_float, + ACTIONS(615), 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(1141), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(607), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(893), 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_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, - [21376] = 18, + STATE(996), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(809), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [19630] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -41715,19 +38956,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym__string_start, - ACTIONS(325), 1, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(488), 1, sym_identifier, - ACTIONS(331), 1, + ACTIONS(494), 1, anon_sym_await, - ACTIONS(561), 1, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - STATE(689), 1, - sym_primary_expression, - STATE(693), 1, + STATE(698), 1, sym_string, - STATE(1018), 1, + STATE(700), 1, + sym_template_string, + STATE(702), 1, + sym_primary_expression, + STATE(1068), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, @@ -41741,20 +38986,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(327), 5, + ACTIONS(490), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(940), 6, + STATE(955), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 16, + STATE(760), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41770,58 +39015,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [21461] = 18, + [19722] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1148), 1, + STATE(1170), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41837,110 +39087,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [21546] = 3, + [19814] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1145), 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(1143), 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, + ACTIONS(263), 1, sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [21601] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(325), 1, - sym_identifier, - ACTIONS(331), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(561), 1, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - STATE(689), 1, - sym_primary_expression, - STATE(693), 1, + ACTIONS(637), 1, + anon_sym_not, + STATE(569), 1, sym_string, - STATE(1064), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(901), 1, sym_expression, - ACTIONS(75), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(327), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(940), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41956,58 +39159,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [21686] = 18, + [19906] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(871), 1, + STATE(900), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42023,58 +39231,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [21771] = 18, + [19998] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_await, - ACTIONS(305), 1, + ACTIONS(81), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(494), 1, + anon_sym_await, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - ACTIONS(628), 1, - anon_sym_not, - STATE(565), 1, + STATE(698), 1, sym_string, - STATE(595), 1, + STATE(700), 1, + sym_template_string, + STATE(702), 1, sym_primary_expression, - STATE(872), 1, + STATE(1091), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(490), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(955), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(760), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42090,58 +39303,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [21856] = 18, + [20090] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(873), 1, + STATE(1160), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42157,58 +39375,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [21941] = 18, + [20182] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(866), 1, + STATE(896), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42224,58 +39447,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [22026] = 18, + [20274] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(874), 1, + STATE(895), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42291,58 +39519,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [22111] = 18, + [20366] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_await, - ACTIONS(305), 1, + ACTIONS(81), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(494), 1, + anon_sym_await, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - ACTIONS(628), 1, - anon_sym_not, - STATE(565), 1, + STATE(698), 1, sym_string, - STATE(595), 1, + STATE(700), 1, + sym_template_string, + STATE(702), 1, sym_primary_expression, - STATE(876), 1, + STATE(1003), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(490), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(955), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(760), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42358,58 +39591,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [22196] = 18, + [20458] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(879), 1, + STATE(1128), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42425,58 +39663,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [22281] = 18, + [20550] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(602), 1, - anon_sym_LPAREN, - ACTIONS(610), 1, - anon_sym_LBRACK, - ACTIONS(612), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(618), 1, - sym__string_start, - ACTIONS(954), 1, - sym_identifier, - ACTIONS(962), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(964), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(966), 1, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(494), 1, anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, STATE(698), 1, - sym_primary_expression, - STATE(699), 1, sym_string, - STATE(1001), 1, + STATE(700), 1, + sym_template_string, + STATE(702), 1, + sym_primary_expression, + STATE(970), 1, sym_expression, - ACTIONS(614), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(608), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(600), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(958), 5, + ACTIONS(490), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(982), 6, + STATE(955), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(796), 16, + STATE(760), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42492,58 +39735,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [22366] = 18, + [20642] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(602), 1, - anon_sym_LPAREN, - ACTIONS(610), 1, - anon_sym_LBRACK, - ACTIONS(612), 1, - anon_sym_LBRACE, - ACTIONS(618), 1, - sym__string_start, - ACTIONS(954), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(962), 1, - anon_sym_not, - ACTIONS(964), 1, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(966), 1, + ACTIONS(308), 1, anon_sym_await, - STATE(698), 1, - sym_primary_expression, - STATE(699), 1, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(637), 1, + anon_sym_not, + STATE(569), 1, sym_string, - STATE(1006), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1164), 1, sym_expression, - ACTIONS(614), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(608), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(600), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(958), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(982), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(796), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42559,58 +39807,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [22451] = 18, + [20734] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(602), 1, - anon_sym_LPAREN, - ACTIONS(610), 1, - anon_sym_LBRACK, - ACTIONS(612), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(618), 1, - sym__string_start, - ACTIONS(954), 1, - sym_identifier, - ACTIONS(962), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(964), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(966), 1, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(494), 1, anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, STATE(698), 1, - sym_primary_expression, - STATE(699), 1, sym_string, - STATE(1007), 1, + STATE(700), 1, + sym_template_string, + STATE(702), 1, + sym_primary_expression, + STATE(969), 1, sym_expression, - ACTIONS(614), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(608), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(600), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(958), 5, + ACTIONS(490), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(982), 6, + STATE(955), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(796), 16, + STATE(760), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42626,192 +39879,121 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [22536] = 18, + [20826] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(602), 1, + ACTIONS(1005), 1, + anon_sym_elif, + STATE(369), 1, + aux_sym_if_statement_repeat1, + STATE(433), 1, + sym_elif_clause, + ACTIONS(1003), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, anon_sym_LPAREN, - ACTIONS(610), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(612), 1, anon_sym_LBRACE, - ACTIONS(618), 1, - sym__string_start, - ACTIONS(954), 1, - sym_identifier, - ACTIONS(962), 1, - anon_sym_not, - ACTIONS(964), 1, - anon_sym_lambda, - ACTIONS(966), 1, - anon_sym_await, - STATE(698), 1, - sym_primary_expression, - STATE(699), 1, - sym_string, - STATE(970), 1, - sym_expression, - ACTIONS(614), 2, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(608), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(600), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(958), 5, + ACTIONS(1001), 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, - STATE(982), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(796), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [22621] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(602), 1, - anon_sym_LPAREN, - ACTIONS(610), 1, - anon_sym_LBRACK, - ACTIONS(612), 1, - anon_sym_LBRACE, - ACTIONS(618), 1, - sym__string_start, - ACTIONS(954), 1, - sym_identifier, - ACTIONS(962), 1, + anon_sym_class, anon_sym_not, - ACTIONS(964), 1, anon_sym_lambda, - ACTIONS(966), 1, - anon_sym_await, - STATE(698), 1, - sym_primary_expression, - STATE(699), 1, - sym_string, - STATE(971), 1, - sym_expression, - ACTIONS(614), 2, - sym_ellipsis, - sym_float, - ACTIONS(608), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(600), 4, + anon_sym_yield, sym_integer, + sym_identifier, + anon_sym_await, sym_true, sym_false, sym_none, - ACTIONS(958), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(982), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(796), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [22706] = 18, + [20890] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(602), 1, + ACTIONS(609), 1, anon_sym_LPAREN, - ACTIONS(610), 1, + ACTIONS(617), 1, anon_sym_LBRACK, - ACTIONS(612), 1, + ACTIONS(619), 1, anon_sym_LBRACE, - ACTIONS(618), 1, + ACTIONS(625), 1, sym__string_start, - ACTIONS(954), 1, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(889), 1, sym_identifier, - ACTIONS(962), 1, + ACTIONS(897), 1, anon_sym_not, - ACTIONS(964), 1, + ACTIONS(899), 1, anon_sym_lambda, - ACTIONS(966), 1, + ACTIONS(901), 1, anon_sym_await, - STATE(698), 1, + STATE(718), 1, sym_primary_expression, - STATE(699), 1, + STATE(720), 1, sym_string, - STATE(976), 1, + STATE(722), 1, + sym_template_string, + STATE(1019), 1, sym_expression, - ACTIONS(614), 2, + ACTIONS(621), 2, sym_ellipsis, sym_float, - ACTIONS(608), 3, + ACTIONS(615), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(600), 4, + ACTIONS(607), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(958), 5, + ACTIONS(893), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(982), 6, + STATE(996), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(796), 16, + STATE(809), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42827,58 +40009,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [22791] = 18, + [20982] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(602), 1, - anon_sym_LPAREN, - ACTIONS(610), 1, - anon_sym_LBRACK, - ACTIONS(612), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(618), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(954), 1, - sym_identifier, - ACTIONS(962), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, + anon_sym_LPAREN, + ACTIONS(603), 1, + anon_sym_LBRACK, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(964), 1, + ACTIONS(653), 1, anon_sym_lambda, - ACTIONS(966), 1, + ACTIONS(689), 1, + sym_identifier, + ACTIONS(699), 1, anon_sym_await, - STATE(698), 1, - sym_primary_expression, - STATE(699), 1, + STATE(569), 1, sym_string, - STATE(983), 1, + STATE(570), 1, + sym_template_string, + STATE(653), 1, + sym_primary_expression, + STATE(879), 1, sym_expression, - ACTIONS(614), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(608), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(600), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(958), 5, + ACTIONS(695), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(982), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(796), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42894,58 +40081,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [22876] = 18, + [21074] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(325), 1, - sym_identifier, - ACTIONS(331), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(561), 1, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - STATE(689), 1, - sym_primary_expression, - STATE(693), 1, + ACTIONS(637), 1, + anon_sym_not, + STATE(569), 1, sym_string, - STATE(978), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(883), 1, sym_expression, - ACTIONS(75), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(327), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(940), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42961,58 +40153,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [22961] = 18, + [21166] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, sym__string_start, - ACTIONS(590), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(642), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(644), 1, - anon_sym_lambda, - ACTIONS(684), 1, - sym_identifier, - ACTIONS(694), 1, - anon_sym_await, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(590), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(860), 1, + STATE(1162), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(594), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(690), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43028,58 +40225,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [23046] = 18, + [21258] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(651), 1, anon_sym_not, - STATE(565), 1, + ACTIONS(653), 1, + anon_sym_lambda, + ACTIONS(689), 1, + sym_identifier, + ACTIONS(699), 1, + anon_sym_await, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(653), 1, sym_primary_expression, - STATE(1063), 1, + STATE(884), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(695), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43095,58 +40297,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [23131] = 18, + [21350] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, + anon_sym_LPAREN, + ACTIONS(603), 1, + anon_sym_LBRACK, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(653), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(325), 1, + ACTIONS(689), 1, sym_identifier, - ACTIONS(331), 1, + ACTIONS(699), 1, anon_sym_await, - ACTIONS(561), 1, - anon_sym_LPAREN, - ACTIONS(567), 1, - anon_sym_LBRACK, - STATE(689), 1, - sym_primary_expression, - STATE(693), 1, + STATE(569), 1, sym_string, - STATE(1016), 1, + STATE(570), 1, + sym_template_string, + STATE(653), 1, + sym_primary_expression, + STATE(967), 1, sym_expression, - ACTIONS(75), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(327), 5, + ACTIONS(695), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(940), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43162,8 +40369,9 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [23216] = 18, + [21442] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -43174,19 +40382,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym__string_start, - ACTIONS(325), 1, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(488), 1, sym_identifier, - ACTIONS(331), 1, + ACTIONS(494), 1, anon_sym_await, - ACTIONS(561), 1, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - STATE(689), 1, - sym_primary_expression, - STATE(693), 1, + STATE(698), 1, sym_string, - STATE(1066), 1, + STATE(700), 1, + sym_template_string, + STATE(702), 1, + sym_primary_expression, + STATE(1093), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, @@ -43200,87 +40412,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(327), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(940), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(773), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [23301] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(590), 1, - anon_sym_LPAREN, - ACTIONS(596), 1, - anon_sym_LBRACK, - ACTIONS(642), 1, - anon_sym_not, - ACTIONS(644), 1, - anon_sym_lambda, - ACTIONS(684), 1, - sym_identifier, - ACTIONS(694), 1, - anon_sym_await, - STATE(565), 1, - sym_string, - STATE(590), 1, - sym_primary_expression, - STATE(984), 1, - sym_expression, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - ACTIONS(594), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(301), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(690), 5, + ACTIONS(490), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(955), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(760), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43296,8 +40441,9 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [23386] = 18, + [21534] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -43308,19 +40454,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym__string_start, - ACTIONS(325), 1, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(488), 1, sym_identifier, - ACTIONS(331), 1, + ACTIONS(494), 1, anon_sym_await, - ACTIONS(561), 1, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - STATE(689), 1, - sym_primary_expression, - STATE(693), 1, + STATE(698), 1, sym_string, - STATE(980), 1, + STATE(700), 1, + sym_template_string, + STATE(702), 1, + sym_primary_expression, + STATE(1008), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, @@ -43334,20 +40484,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(327), 5, + ACTIONS(490), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(940), 6, + STATE(955), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 16, + STATE(760), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43363,58 +40513,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [23471] = 18, + [21626] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(325), 1, - sym_identifier, - ACTIONS(331), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(561), 1, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - STATE(689), 1, - sym_primary_expression, - STATE(693), 1, + ACTIONS(637), 1, + anon_sym_not, + STATE(569), 1, sym_string, - STATE(1083), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1125), 1, sym_expression, - ACTIONS(75), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(327), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(940), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43430,180 +40585,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [23556] = 6, + [21718] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1072), 1, - anon_sym_COMMA, - ACTIONS(1077), 1, - anon_sym_EQ, - ACTIONS(1079), 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(1021), 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(1016), 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, - [23617] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_await, - ACTIONS(305), 1, + ACTIONS(81), 1, sym__string_start, - ACTIONS(571), 1, - anon_sym_LPAREN, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(628), 1, - anon_sym_not, - STATE(565), 1, - sym_string, - STATE(595), 1, - sym_primary_expression, - STATE(860), 1, - sym_expression, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - ACTIONS(291), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(301), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(271), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(863), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(589), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [23702] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(258), 1, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(488), 1, sym_identifier, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(494), 1, anon_sym_await, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(571), 1, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - ACTIONS(628), 1, - anon_sym_not, - STATE(565), 1, + STATE(698), 1, sym_string, - STATE(595), 1, + STATE(700), 1, + sym_template_string, + STATE(702), 1, sym_primary_expression, - STATE(1021), 1, + STATE(979), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(490), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(955), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(760), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43619,8 +40657,9 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [23787] = 18, + [21810] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -43631,19 +40670,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym__string_start, - ACTIONS(325), 1, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(488), 1, sym_identifier, - ACTIONS(331), 1, + ACTIONS(494), 1, anon_sym_await, - ACTIONS(561), 1, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - STATE(689), 1, - sym_primary_expression, - STATE(693), 1, + STATE(698), 1, sym_string, - STATE(959), 1, + STATE(700), 1, + sym_template_string, + STATE(702), 1, + sym_primary_expression, + STATE(1073), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, @@ -43657,20 +40700,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(327), 5, + ACTIONS(490), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(940), 6, + STATE(955), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(773), 16, + STATE(760), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43686,259 +40729,182 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [23872] = 18, + [21902] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(602), 1, - anon_sym_LPAREN, - ACTIONS(610), 1, - anon_sym_LBRACK, - ACTIONS(612), 1, - anon_sym_LBRACE, - ACTIONS(618), 1, + ACTIONS(270), 1, + anon_sym_COMMA, + ACTIONS(278), 1, + anon_sym_COLON_EQ, + ACTIONS(1008), 1, sym__string_start, - ACTIONS(954), 1, - sym_identifier, - ACTIONS(962), 1, - anon_sym_not, - ACTIONS(964), 1, - anon_sym_lambda, - ACTIONS(966), 1, - anon_sym_await, - STATE(698), 1, - sym_primary_expression, - STATE(699), 1, + STATE(1256), 1, sym_string, - STATE(1003), 1, - sym_expression, - ACTIONS(614), 2, - sym_ellipsis, - sym_float, - ACTIONS(608), 3, + ACTIONS(280), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(302), 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(265), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(600), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(958), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(982), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(796), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [23957] = 18, + 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(298), 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, + [21972] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_await, - ACTIONS(305), 1, + ACTIONS(1010), 1, + anon_sym_elif, + STATE(382), 1, + aux_sym_if_statement_repeat1, + STATE(417), 1, + sym_elif_clause, + ACTIONS(1003), 13, sym__string_start, - ACTIONS(571), 1, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(628), 1, - anon_sym_not, - STATE(565), 1, - sym_string, - STATE(595), 1, - sym_primary_expression, - STATE(1090), 1, - sym_expression, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - ACTIONS(291), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - ACTIONS(301), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(271), 5, + sym_ellipsis, + sym_float, + ACTIONS(1001), 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, - STATE(863), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(589), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [24042] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_await, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(571), 1, - anon_sym_LPAREN, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(628), 1, + anon_sym_class, anon_sym_not, - STATE(565), 1, - sym_string, - STATE(595), 1, - sym_primary_expression, - STATE(1125), 1, - sym_expression, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - ACTIONS(291), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(301), 4, + anon_sym_lambda, + anon_sym_yield, sym_integer, + sym_identifier, + anon_sym_await, sym_true, sym_false, sym_none, - ACTIONS(271), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(863), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(589), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [24127] = 18, + [22036] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(651), 1, anon_sym_not, - STATE(565), 1, + ACTIONS(653), 1, + anon_sym_lambda, + ACTIONS(689), 1, + sym_identifier, + ACTIONS(699), 1, + anon_sym_await, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(653), 1, sym_primary_expression, - STATE(1132), 1, + STATE(888), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(695), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43954,58 +40920,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [24212] = 18, + [22128] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1134), 1, + STATE(1083), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44021,58 +40992,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [24297] = 18, + [22220] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(651), 1, anon_sym_not, - STATE(565), 1, + ACTIONS(653), 1, + anon_sym_lambda, + ACTIONS(689), 1, + sym_identifier, + ACTIONS(699), 1, + anon_sym_await, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(653), 1, sym_primary_expression, - STATE(1135), 1, + STATE(1007), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(695), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44088,58 +41064,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [24382] = 18, + [22312] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1140), 1, + STATE(927), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44155,125 +41136,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [24467] = 18, + [22404] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(602), 1, - anon_sym_LPAREN, - ACTIONS(610), 1, - anon_sym_LBRACK, - ACTIONS(612), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(618), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(954), 1, - sym_identifier, - ACTIONS(962), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, + anon_sym_LPAREN, + ACTIONS(603), 1, + anon_sym_LBRACK, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(964), 1, + ACTIONS(653), 1, anon_sym_lambda, - ACTIONS(966), 1, - anon_sym_await, - STATE(698), 1, - sym_primary_expression, - STATE(699), 1, - sym_string, - STATE(1046), 1, - sym_expression, - ACTIONS(614), 2, - sym_ellipsis, - sym_float, - ACTIONS(608), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(600), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(958), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(982), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(796), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [24552] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(258), 1, + ACTIONS(689), 1, sym_identifier, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(295), 1, - anon_sym_lambda, - ACTIONS(303), 1, + ACTIONS(699), 1, anon_sym_await, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(571), 1, - anon_sym_LPAREN, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(628), 1, - anon_sym_not, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(653), 1, sym_primary_expression, - STATE(1142), 1, + STATE(893), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(695), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44289,58 +41208,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [24637] = 18, + [22496] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_await, - ACTIONS(305), 1, + ACTIONS(81), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(494), 1, + anon_sym_await, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - ACTIONS(628), 1, - anon_sym_not, - STATE(565), 1, + STATE(698), 1, sym_string, - STATE(595), 1, + STATE(700), 1, + sym_template_string, + STATE(702), 1, sym_primary_expression, - STATE(1143), 1, + STATE(1009), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(490), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(955), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(760), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44356,62 +41280,68 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [24722] = 18, + [22588] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(295), 1, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(303), 1, - anon_sym_await, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(628), 1, + ACTIONS(637), 1, anon_sym_not, - STATE(565), 1, + ACTIONS(1013), 1, + sym_identifier, + ACTIONS(1017), 1, + anon_sym_await, + STATE(569), 1, sym_string, - STATE(595), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1037), 1, + STATE(934), 1, sym_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + STATE(452), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(271), 5, + ACTIONS(1015), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(863), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(589), 16, + STATE(649), 15, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -44423,13 +41353,20 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [24807] = 3, + [22682] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1158), 12, + ACTIONS(1023), 1, + anon_sym_case, + STATE(412), 2, + sym_case_block, + aux_sym_cases_repeat1, + ACTIONS(1021), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -44440,7 +41377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1160), 34, + ACTIONS(1019), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -44459,7 +41396,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_with, anon_sym_match, - anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -44475,11 +41411,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [24861] = 3, + [22743] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1162), 12, + ACTIONS(1025), 13, sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -44491,7 +41428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1164), 34, + ACTIONS(1027), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -44504,10 +41441,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_except, anon_sym_finally, anon_sym_with, anon_sym_match, @@ -44526,12 +41465,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [24915] = 3, + [22800] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1162), 12, + ACTIONS(1031), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -44542,7 +41482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1164), 34, + ACTIONS(1029), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -44555,10 +41495,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_except, anon_sym_finally, anon_sym_with, anon_sym_match, @@ -44577,12 +41519,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [24969] = 3, + [22857] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1166), 12, + ACTIONS(1025), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -44593,7 +41536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1168), 34, + ACTIONS(1027), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -44606,13 +41549,15 @@ 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_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -44628,12 +41573,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [25023] = 3, + [22914] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1166), 12, - sym__dedent, + ACTIONS(1033), 13, sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -44644,7 +41590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1168), 34, + ACTIONS(1035), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -44657,13 +41603,15 @@ 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_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -44679,12 +41627,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [25077] = 3, + [22971] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1172), 12, - sym__dedent, + ACTIONS(1037), 13, sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -44695,7 +41644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1170), 34, + ACTIONS(1039), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -44708,10 +41657,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_except, anon_sym_finally, anon_sym_with, anon_sym_match, @@ -44730,12 +41681,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [25131] = 3, + [23028] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1176), 12, - sym__dedent, + ACTIONS(1041), 13, sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -44746,7 +41698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1174), 34, + ACTIONS(1043), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -44759,13 +41711,15 @@ 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_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -44781,42 +41735,104 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [25185] = 3, + [23085] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1180), 12, - sym__dedent, - sym__string_start, + ACTIONS(270), 1, + anon_sym_COMMA, + ACTIONS(278), 1, + anon_sym_COLON_EQ, + ACTIONS(1045), 1, + sym_identifier, + ACTIONS(280), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(298), 10, + sym__newline, + anon_sym_DOT, anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym__semicolon, + ACTIONS(302), 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(265), 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_LBRACK, - anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1178), 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_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, + [23152] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1047), 13, + sym__string_start, + sym__template_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(1049), 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_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -44832,11 +41848,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [25239] = 3, + [23209] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1172), 12, + ACTIONS(1051), 13, sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -44848,7 +41865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1170), 34, + ACTIONS(1053), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -44861,10 +41878,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_except, anon_sym_finally, anon_sym_with, anon_sym_match, @@ -44883,12 +41902,67 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [25293] = 3, + [23266] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1158), 12, + ACTIONS(1055), 13, + sym__string_start, + sym__template_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(1057), 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_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [23323] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1041), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -44899,7 +41973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1160), 34, + ACTIONS(1043), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -44912,13 +41986,15 @@ 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_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -44934,12 +42010,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [25347] = 3, + [23380] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1176), 12, + ACTIONS(1037), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -44950,7 +42027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1174), 34, + ACTIONS(1039), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -44963,13 +42040,15 @@ 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_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -44985,12 +42064,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [25401] = 3, + [23437] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1180), 12, + ACTIONS(1055), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -45001,7 +42081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1178), 34, + ACTIONS(1057), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45014,13 +42094,15 @@ 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_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -45036,12 +42118,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [25455] = 3, + [23494] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1184), 12, + ACTIONS(1051), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -45052,7 +42135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1182), 33, + ACTIONS(1053), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45065,10 +42148,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, @@ -45086,11 +42172,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [25508] = 3, + [23551] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1186), 12, + ACTIONS(1059), 13, sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -45102,7 +42189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1188), 33, + ACTIONS(1061), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45115,10 +42202,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, @@ -45136,12 +42226,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [25561] = 3, + [23608] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 12, + ACTIONS(1047), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -45152,7 +42243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(846), 33, + ACTIONS(1049), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45165,10 +42256,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, @@ -45186,12 +42280,67 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [25614] = 3, + [23665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1192), 12, + ACTIONS(1031), 13, + sym__string_start, + sym__template_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(1029), 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_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [23722] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1059), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -45202,7 +42351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1190), 33, + ACTIONS(1061), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45215,10 +42364,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, @@ -45236,11 +42388,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [25667] = 3, + [23779] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 12, + ACTIONS(1067), 1, + anon_sym_case, + STATE(409), 2, + sym_case_block, + aux_sym_cases_repeat1, + ACTIONS(1063), 13, sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -45252,7 +42410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1196), 33, + ACTIONS(1065), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45286,12 +42444,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [25720] = 3, + [23840] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1200), 12, + ACTIONS(1033), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -45302,7 +42461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1198), 33, + ACTIONS(1035), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45315,10 +42474,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, @@ -45336,12 +42498,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [25773] = 3, + [23897] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1204), 12, - sym__dedent, + ACTIONS(1070), 13, sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -45352,7 +42515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1202), 33, + ACTIONS(1072), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45365,10 +42528,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, @@ -45386,12 +42552,18 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [25826] = 3, + [23954] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1206), 12, + ACTIONS(1074), 1, + anon_sym_case, + STATE(412), 2, + sym_case_block, + aux_sym_cases_repeat1, + ACTIONS(1063), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -45402,7 +42574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1208), 33, + ACTIONS(1065), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45436,12 +42608,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [25879] = 3, + [24015] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1210), 12, + ACTIONS(1070), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -45452,7 +42625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1212), 33, + ACTIONS(1072), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45465,10 +42638,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, @@ -45486,11 +42662,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [25932] = 3, + [24072] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1214), 12, + ACTIONS(1077), 1, + anon_sym_case, + STATE(409), 2, + sym_case_block, + aux_sym_cases_repeat1, + ACTIONS(1021), 13, sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -45502,7 +42684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1216), 33, + ACTIONS(1019), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45536,12 +42718,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [25985] = 3, + [24133] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1220), 12, - sym__dedent, + ACTIONS(855), 1, + anon_sym_finally, + STATE(523), 1, + sym_finally_clause, + ACTIONS(1079), 13, sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -45552,7 +42739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1218), 33, + ACTIONS(1081), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45586,11 +42773,69 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26038] = 3, + [24193] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1090), 1, + anon_sym_COLON_EQ, + ACTIONS(1092), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(1085), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1094), 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(1083), 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(1088), 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, + [24257] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 12, + ACTIONS(1096), 13, sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -45602,7 +42847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1224), 33, + ACTIONS(1098), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45615,6 +42860,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, @@ -45636,12 +42883,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26091] = 3, + [24313] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1228), 12, + ACTIONS(877), 1, + anon_sym_else, + STATE(473), 1, + sym_else_clause, + ACTIONS(1102), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -45652,7 +42904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1226), 33, + ACTIONS(1100), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45686,12 +42938,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26144] = 3, + [24373] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 12, + ACTIONS(1106), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -45702,7 +42955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1230), 33, + ACTIONS(1104), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45715,6 +42968,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, @@ -45736,11 +42991,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26197] = 3, + [24429] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1234), 12, + ACTIONS(851), 1, + anon_sym_else, + STATE(513), 1, + sym_else_clause, + ACTIONS(1108), 13, sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -45752,7 +43012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1236), 33, + ACTIONS(1110), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45786,58 +43046,170 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26250] = 19, + [24489] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(877), 1, + anon_sym_else, + STATE(548), 1, + sym_else_clause, + ACTIONS(1114), 13, + sym__dedent, + sym__string_start, + sym__template_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(1112), 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, + [24549] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(863), 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(861), 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, + [24605] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(652), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(667), 1, sym_identifier, - ACTIONS(654), 1, + ACTIONS(669), 1, anon_sym_LPAREN, - ACTIONS(664), 1, + ACTIONS(679), 1, anon_sym_LBRACK, - ACTIONS(666), 1, + ACTIONS(681), 1, anon_sym_await, - ACTIONS(1240), 1, + ACTIONS(1118), 1, anon_sym_STAR, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(840), 1, + STATE(570), 1, + sym_template_string, + STATE(854), 1, sym_pattern, - STATE(844), 1, + STATE(862), 1, sym_primary_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(1238), 2, + ACTIONS(1116), 2, anon_sym_RPAREN, anon_sym_RBRACK, - STATE(722), 2, + STATE(735), 2, sym_attribute, sym_subscript, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(833), 3, + STATE(853), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, - ACTIONS(301), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(658), 5, + ACTIONS(673), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(589), 14, + STATE(649), 15, sym_binary_operator, sym_unary_operator, sym_call, @@ -45851,13 +43223,19 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [26335] = 3, + [24697] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1094), 12, + ACTIONS(877), 1, + anon_sym_else, + STATE(481), 1, + sym_else_clause, + ACTIONS(1122), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -45868,7 +43246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1096), 33, + ACTIONS(1120), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45902,12 +43280,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26388] = 3, + [24757] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(828), 12, + ACTIONS(881), 1, + anon_sym_finally, + STATE(499), 1, + sym_finally_clause, + ACTIONS(1126), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -45918,7 +43301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(830), 33, + ACTIONS(1124), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45952,12 +43335,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26441] = 3, + [24817] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 12, - sym__dedent, + ACTIONS(851), 1, + anon_sym_else, + STATE(532), 1, + sym_else_clause, + ACTIONS(1114), 13, sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -45968,7 +43356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1242), 33, + ACTIONS(1112), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46002,12 +43390,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26494] = 3, + [24877] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1248), 12, + ACTIONS(877), 1, + anon_sym_else, + STATE(505), 1, + sym_else_clause, + ACTIONS(1130), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -46018,7 +43411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1246), 33, + ACTIONS(1128), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46052,12 +43445,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26547] = 3, + [24937] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1252), 12, - sym__dedent, + ACTIONS(1132), 13, sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -46068,7 +43462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1250), 33, + ACTIONS(1134), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46081,6 +43475,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, @@ -46102,12 +43498,74 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26600] = 3, + [24993] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 12, + ACTIONS(270), 1, + anon_sym_COMMA, + ACTIONS(278), 1, + anon_sym_COLON_EQ, + ACTIONS(280), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(302), 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(265), 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(298), 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, + [25057] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(877), 1, + anon_sym_else, + STATE(559), 1, + sym_else_clause, + ACTIONS(1108), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -46118,7 +43576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1196), 33, + ACTIONS(1110), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46152,12 +43610,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26653] = 3, + [25117] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1234), 12, + ACTIONS(881), 1, + anon_sym_finally, + STATE(479), 1, + sym_finally_clause, + ACTIONS(1079), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -46168,7 +43631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1236), 33, + ACTIONS(1081), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46202,12 +43665,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26706] = 3, + [25177] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1256), 12, - sym__dedent, + ACTIONS(851), 1, + anon_sym_else, + STATE(545), 1, + sym_else_clause, + ACTIONS(1136), 13, sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -46218,7 +43686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1254), 33, + ACTIONS(1138), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46252,12 +43720,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26759] = 3, + [25237] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1260), 12, + ACTIONS(1096), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -46268,7 +43737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1258), 33, + ACTIONS(1098), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46281,6 +43750,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, @@ -46302,62 +43773,88 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26812] = 3, + [25293] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1264), 12, - sym__dedent, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(667), 1, + sym_identifier, + ACTIONS(669), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(679), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(681), 1, + anon_sym_await, + ACTIONS(1118), 1, + anon_sym_STAR, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(854), 1, + sym_pattern, + STATE(862), 1, + sym_primary_expression, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(1262), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(1140), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(735), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(853), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(673), 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, - [26865] = 3, + STATE(649), 15, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [25385] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 12, - sym__dedent, + ACTIONS(851), 1, + anon_sym_else, + STATE(510), 1, + sym_else_clause, + ACTIONS(1130), 13, sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -46368,7 +43865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1266), 33, + ACTIONS(1128), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46402,12 +43899,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26918] = 3, + [25445] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 12, + ACTIONS(877), 1, + anon_sym_else, + STATE(537), 1, + sym_else_clause, + ACTIONS(1136), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -46418,7 +43920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1272), 33, + ACTIONS(1138), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46452,12 +43954,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26971] = 3, + [25505] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1276), 12, - sym__dedent, + ACTIONS(851), 1, + anon_sym_else, + STATE(566), 1, + sym_else_clause, + ACTIONS(1102), 13, sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -46468,7 +43975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1274), 33, + ACTIONS(1100), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46502,12 +44009,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27024] = 3, + [25565] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1280), 12, - sym__dedent, + ACTIONS(851), 1, + anon_sym_else, + STATE(483), 1, + sym_else_clause, + ACTIONS(1122), 13, sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -46518,7 +44030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1278), 33, + ACTIONS(1120), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46552,12 +44064,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27077] = 3, + [25625] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1284), 12, + ACTIONS(1132), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -46568,7 +44081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1282), 33, + ACTIONS(1134), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46581,6 +44094,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, @@ -46602,112 +44117,252 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27130] = 3, + [25681] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, + ACTIONS(1142), 1, + anon_sym_COMMA, + ACTIONS(1145), 1, + anon_sym_COLON_EQ, + ACTIONS(1147), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(1149), 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(1088), 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(1288), 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(1083), 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, + sym__semicolon, + [25745] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(667), 1, sym_identifier, + ACTIONS(669), 1, + anon_sym_LPAREN, + ACTIONS(679), 1, + anon_sym_LBRACK, + ACTIONS(681), 1, anon_sym_await, + ACTIONS(1118), 1, + anon_sym_STAR, + ACTIONS(1151), 1, + anon_sym_RPAREN, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(862), 1, + sym_primary_expression, + STATE(1177), 1, + sym_pattern, + STATE(1416), 1, + sym__patterns, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + STATE(735), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(853), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(306), 4, + sym_integer, sym_true, sym_false, sym_none, - [27183] = 3, + ACTIONS(673), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(649), 15, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [25839] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1119), 12, - sym__dedent, - sym__string_start, + ACTIONS(585), 1, + anon_sym_COLON_EQ, + ACTIONS(587), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(580), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(593), 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(298), 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(265), 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(1121), 33, - anon_sym_import, - anon_sym_from, + 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, + [25903] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(867), 16, 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_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(865), 32, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, 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_COLON, + anon_sym_in, + anon_sym_LBRACK, anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [27236] = 3, + 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, + [25959] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1292), 12, - sym__dedent, + ACTIONS(1106), 13, sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -46718,7 +44373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1290), 33, + ACTIONS(1104), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46731,6 +44386,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, @@ -46752,12 +44409,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27289] = 3, + [26015] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1296), 12, - sym__dedent, + ACTIONS(855), 1, + anon_sym_finally, + STATE(531), 1, + sym_finally_clause, + ACTIONS(1126), 13, sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -46768,7 +44430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1294), 33, + ACTIONS(1124), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46802,112 +44464,278 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27342] = 3, + [26075] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, + ACTIONS(1155), 1, + anon_sym_COMMA, + ACTIONS(1162), 1, + anon_sym_EQ, + ACTIONS(1160), 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(1158), 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(1298), 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(1153), 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, + sym__semicolon, + [26136] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(667), 1, sym_identifier, + ACTIONS(669), 1, + anon_sym_LPAREN, + ACTIONS(679), 1, + anon_sym_LBRACK, + ACTIONS(681), 1, anon_sym_await, + ACTIONS(1118), 1, + anon_sym_STAR, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(862), 1, + sym_primary_expression, + STATE(1237), 1, + sym_pattern, + STATE(1443), 1, + sym_pattern_list, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + STATE(735), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(853), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(306), 4, + sym_integer, sym_true, sym_false, sym_none, - [27395] = 3, + ACTIONS(673), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(649), 15, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [26227] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 12, - sym__dedent, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(667), 1, + sym_identifier, + ACTIONS(669), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(679), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(681), 1, + anon_sym_await, + ACTIONS(1118), 1, + anon_sym_STAR, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(862), 1, + sym_primary_expression, + STATE(1279), 1, + sym_pattern, + STATE(1504), 1, + sym_pattern_list, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(1302), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + STATE(735), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(853), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(673), 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, + STATE(649), 15, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [26318] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(667), 1, sym_identifier, + ACTIONS(669), 1, + anon_sym_LPAREN, + ACTIONS(679), 1, + anon_sym_LBRACK, + ACTIONS(681), 1, anon_sym_await, + ACTIONS(1118), 1, + anon_sym_STAR, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(862), 1, + sym_primary_expression, + STATE(1306), 1, + sym_pattern, + STATE(1476), 1, + sym_pattern_list, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + STATE(735), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(853), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(306), 4, + sym_integer, sym_true, sym_false, sym_none, - [27448] = 3, + ACTIONS(673), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(649), 15, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [26409] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1308), 12, - sym__dedent, + ACTIONS(1164), 13, sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -46918,7 +44746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1306), 33, + ACTIONS(1166), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46937,6 +44765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_with, anon_sym_match, + anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -46952,61 +44781,122 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27501] = 3, + [26464] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1186), 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(1188), 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, + ACTIONS(1170), 1, + anon_sym_COMMA, + ACTIONS(1177), 1, + anon_sym_EQ, + ACTIONS(1175), 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(1173), 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(1168), 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, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [27554] = 3, + 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, + [26525] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1092), 1, + anon_sym_EQ, + ACTIONS(1085), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1083), 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(1094), 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(1088), 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, + [26586] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 12, + ACTIONS(1179), 13, sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -47018,7 +44908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1312), 33, + ACTIONS(1181), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47037,6 +44927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_with, anon_sym_match, + anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -47052,12 +44943,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27607] = 3, + [26641] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1206), 12, - sym__dedent, + ACTIONS(1183), 13, sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -47068,7 +44960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1208), 33, + ACTIONS(1185), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47087,6 +44979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_with, anon_sym_match, + anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -47102,12 +44995,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27660] = 3, + [26696] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1210), 12, + ACTIONS(1179), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -47118,7 +45012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1212), 33, + ACTIONS(1181), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47137,6 +45031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_with, anon_sym_match, + anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -47152,12 +45047,83 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27713] = 3, + [26751] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1214), 12, - sym__dedent, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(667), 1, + sym_identifier, + ACTIONS(669), 1, + anon_sym_LPAREN, + ACTIONS(679), 1, + anon_sym_LBRACK, + ACTIONS(681), 1, + anon_sym_await, + ACTIONS(1118), 1, + anon_sym_STAR, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(862), 1, + sym_primary_expression, + STATE(1233), 1, + sym_pattern, + STATE(1422), 1, + sym_pattern_list, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + STATE(735), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(853), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(673), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(649), 15, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [26842] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1187), 13, sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -47168,7 +45134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1216), 33, + ACTIONS(1189), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47185,6 +45151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_match, anon_sym_def, @@ -47202,12 +45169,138 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27766] = 3, + [26897] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(667), 1, + sym_identifier, + ACTIONS(669), 1, + anon_sym_LPAREN, + ACTIONS(679), 1, + anon_sym_LBRACK, + ACTIONS(681), 1, + anon_sym_await, + ACTIONS(1118), 1, + anon_sym_STAR, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(862), 1, + sym_primary_expression, + STATE(1291), 1, + sym_pattern, + STATE(1507), 1, + sym_pattern_list, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + STATE(735), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(853), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(673), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(649), 15, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [26988] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1142), 1, + anon_sym_COMMA, + ACTIONS(1147), 1, + anon_sym_EQ, + ACTIONS(1149), 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(1088), 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(1083), 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, + [27049] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 12, + ACTIONS(1183), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -47218,7 +45311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1224), 33, + ACTIONS(1185), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47237,6 +45330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_with, anon_sym_match, + anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -47252,11 +45346,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27819] = 3, + [27104] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 12, + ACTIONS(1191), 13, sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -47268,7 +45363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1242), 33, + ACTIONS(1193), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47285,6 +45380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_match, anon_sym_def, @@ -47302,12 +45398,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27872] = 3, + [27159] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 12, + ACTIONS(1164), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -47318,7 +45415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1316), 33, + ACTIONS(1166), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47337,6 +45434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_with, anon_sym_match, + anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -47352,12 +45450,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27925] = 3, + [27214] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 12, + ACTIONS(1191), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -47368,7 +45467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1288), 33, + ACTIONS(1193), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47385,6 +45484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_match, anon_sym_def, @@ -47402,12 +45502,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27978] = 3, + [27269] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 12, + ACTIONS(1197), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -47418,7 +45519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1312), 33, + ACTIONS(1195), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47437,6 +45538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_with, anon_sym_match, + anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -47452,12 +45554,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28031] = 3, + [27324] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 12, - sym__dedent, + ACTIONS(1197), 13, sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -47468,7 +45571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1316), 33, + ACTIONS(1195), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47487,6 +45590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_with, anon_sym_match, + anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -47502,12 +45606,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28084] = 3, + [27379] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1252), 12, + ACTIONS(1187), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -47518,7 +45623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1250), 33, + ACTIONS(1189), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47535,6 +45640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_match, anon_sym_def, @@ -47552,12 +45658,83 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28137] = 3, + [27434] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(667), 1, + sym_identifier, + ACTIONS(669), 1, + anon_sym_LPAREN, + ACTIONS(679), 1, + anon_sym_LBRACK, + ACTIONS(681), 1, + anon_sym_await, + ACTIONS(1118), 1, + anon_sym_STAR, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(862), 1, + sym_primary_expression, + STATE(1280), 1, + sym_pattern, + STATE(1428), 1, + sym_pattern_list, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + STATE(735), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(853), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(673), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(649), 15, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [27525] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1320), 12, + ACTIONS(1201), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -47568,7 +45745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1318), 33, + ACTIONS(1199), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47602,11 +45779,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28190] = 3, + [27579] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1184), 12, + ACTIONS(875), 13, sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -47618,7 +45796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1182), 33, + ACTIONS(873), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47652,12 +45830,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28243] = 3, + [27633] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1324), 12, + ACTIONS(1205), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -47668,7 +45847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1322), 33, + ACTIONS(1203), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47702,11 +45881,63 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28296] = 3, + [27687] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1256), 12, + ACTIONS(1209), 13, + sym__dedent, sym__string_start, + sym__template_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(1207), 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, + [27741] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1211), 13, + sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -47718,7 +45949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1254), 33, + ACTIONS(1213), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47752,12 +45983,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28349] = 3, + [27795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1328), 12, + ACTIONS(1217), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -47768,7 +46000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1326), 33, + ACTIONS(1215), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47802,12 +46034,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28402] = 3, + [27849] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1332), 12, + ACTIONS(1221), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -47818,7 +46051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1330), 33, + ACTIONS(1219), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47852,12 +46085,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28455] = 3, + [27903] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 12, + ACTIONS(1225), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -47868,7 +46102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1334), 33, + ACTIONS(1223), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47902,11 +46136,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28508] = 3, + [27957] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1320), 12, + ACTIONS(1227), 13, sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -47918,7 +46153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1318), 33, + ACTIONS(1229), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47952,12 +46187,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28561] = 3, + [28011] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1260), 12, + ACTIONS(1233), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -47968,7 +46204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1258), 33, + ACTIONS(1231), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48002,12 +46238,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28614] = 3, + [28065] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 12, + ACTIONS(847), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48018,7 +46255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1338), 33, + ACTIONS(849), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48052,12 +46289,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28667] = 3, + [28119] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 12, + ACTIONS(1237), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48068,7 +46306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1342), 33, + ACTIONS(1235), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48102,12 +46340,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28720] = 3, + [28173] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 12, + ACTIONS(1241), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48118,7 +46357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1346), 33, + ACTIONS(1239), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48152,12 +46391,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28773] = 3, + [28227] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1352), 12, + ACTIONS(1245), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48168,7 +46408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1350), 33, + ACTIONS(1243), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48202,12 +46442,132 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28826] = 3, + [28281] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1356), 12, - sym__dedent, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(667), 1, + sym_identifier, + ACTIONS(669), 1, + anon_sym_LPAREN, + ACTIONS(679), 1, + anon_sym_LBRACK, + ACTIONS(681), 1, + anon_sym_await, + ACTIONS(1118), 1, + anon_sym_STAR, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(854), 1, + sym_pattern, + STATE(862), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + STATE(735), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(853), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(673), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(649), 15, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [28369] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1245), 13, + sym__string_start, + sym__template_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(1243), 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, + [28423] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1247), 13, sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48218,7 +46578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1354), 33, + ACTIONS(1249), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48252,11 +46612,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28879] = 3, + [28477] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1324), 12, + ACTIONS(1251), 13, sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -48268,7 +46629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1322), 33, + ACTIONS(1253), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48302,11 +46663,63 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28932] = 3, + [28531] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1264), 12, + ACTIONS(1257), 13, + sym__dedent, sym__string_start, + sym__template_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(1255), 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, + [28585] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1257), 13, + sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -48318,7 +46731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1262), 33, + ACTIONS(1255), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48352,12 +46765,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28985] = 3, + [28639] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1360), 12, + ACTIONS(1261), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48368,7 +46782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1358), 33, + ACTIONS(1259), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48402,12 +46816,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29038] = 3, + [28693] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1364), 12, + ACTIONS(1265), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48418,7 +46833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1362), 33, + ACTIONS(1263), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48452,11 +46867,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29091] = 3, + [28747] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1328), 12, + ACTIONS(1261), 13, sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -48468,7 +46884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1326), 33, + ACTIONS(1259), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48502,11 +46918,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29144] = 3, + [28801] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1220), 12, + ACTIONS(1265), 13, sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -48518,7 +46935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1218), 33, + ACTIONS(1263), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48552,12 +46969,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29197] = 3, + [28855] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1332), 12, + ACTIONS(1269), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48568,7 +46986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1330), 33, + ACTIONS(1267), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48602,12 +47020,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29250] = 3, + [28909] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 12, + ACTIONS(1273), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48618,7 +47037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1334), 33, + ACTIONS(1271), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48652,12 +47071,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29303] = 3, + [28963] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1200), 12, + ACTIONS(1277), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48668,7 +47088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1198), 33, + ACTIONS(1275), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48702,12 +47122,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29356] = 3, + [29017] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 12, + ACTIONS(1281), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48718,7 +47139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1266), 33, + ACTIONS(1279), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48752,12 +47173,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29409] = 3, + [29071] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 12, + ACTIONS(1285), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48768,7 +47190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(846), 33, + ACTIONS(1283), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48802,11 +47224,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29462] = 3, + [29125] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1276), 12, + ACTIONS(1287), 13, sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -48818,7 +47241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1274), 33, + ACTIONS(1289), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48852,12 +47275,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29515] = 3, + [29179] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 12, + ACTIONS(1079), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48868,7 +47292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1338), 33, + ACTIONS(1081), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48902,12 +47326,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29568] = 3, + [29233] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 12, + ACTIONS(1293), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48918,7 +47343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1342), 33, + ACTIONS(1291), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48952,12 +47377,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29621] = 3, + [29287] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1192), 12, + ACTIONS(1211), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48968,7 +47394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1190), 33, + ACTIONS(1213), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49002,12 +47428,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29674] = 3, + [29341] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1094), 12, + ACTIONS(1297), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -49018,7 +47445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1096), 33, + ACTIONS(1295), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49052,11 +47479,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29727] = 3, + [29395] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 12, + ACTIONS(1299), 13, sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -49068,7 +47496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1346), 33, + ACTIONS(1301), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49102,12 +47530,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29780] = 3, + [29449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1352), 12, + ACTIONS(1305), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -49118,7 +47547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1350), 33, + ACTIONS(1303), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49152,12 +47581,81 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29833] = 3, + [29503] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1356), 12, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, sym__string_start, - ts_builtin_sym_end, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(667), 1, + sym_identifier, + ACTIONS(669), 1, + anon_sym_LPAREN, + ACTIONS(679), 1, + anon_sym_LBRACK, + ACTIONS(681), 1, + anon_sym_await, + ACTIONS(1118), 1, + anon_sym_STAR, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(862), 1, + sym_primary_expression, + STATE(1307), 1, + sym_pattern, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + STATE(735), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(853), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(673), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(649), 15, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [29591] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1309), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -49168,7 +47666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1354), 33, + ACTIONS(1307), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49202,11 +47700,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29886] = 3, + [29645] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1280), 12, + ACTIONS(1311), 13, sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -49218,7 +47717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1278), 33, + ACTIONS(1313), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49252,11 +47751,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29939] = 3, + [29699] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1284), 12, + ACTIONS(1315), 13, sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -49268,7 +47768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1282), 33, + ACTIONS(1317), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49302,77 +47802,114 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29992] = 19, + [29753] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(1319), 13, sym__string_start, - ACTIONS(652), 1, - sym_identifier, - ACTIONS(654), 1, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(664), 1, - anon_sym_LBRACK, - ACTIONS(666), 1, - anon_sym_await, - ACTIONS(1240), 1, - anon_sym_STAR, - STATE(565), 1, - sym_string, - STATE(840), 1, - sym_pattern, - STATE(844), 1, - sym_primary_expression, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - ACTIONS(1366), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(722), 2, - sym_attribute, - sym_subscript, - ACTIONS(291), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - STATE(833), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(301), 4, + sym_ellipsis, + sym_float, + ACTIONS(1321), 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(658), 5, + [29807] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1325), 13, + sym__dedent, + sym__string_start, + sym__template_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(1323), 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(589), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [30077] = 3, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [29861] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(828), 12, + ACTIONS(1309), 13, sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -49384,7 +47921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(830), 33, + ACTIONS(1307), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49418,12 +47955,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30130] = 3, + [29915] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1119), 12, + ACTIONS(1329), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -49434,7 +47972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1121), 33, + ACTIONS(1327), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49468,12 +48006,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30183] = 3, + [29969] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1228), 12, + ACTIONS(1311), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -49484,7 +48023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1226), 33, + ACTIONS(1313), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49518,11 +48057,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30236] = 3, + [30023] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1360), 12, + ACTIONS(1331), 13, sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -49534,7 +48074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1358), 33, + ACTIONS(1333), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49568,12 +48108,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30289] = 3, + [30077] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1364), 12, + ACTIONS(1287), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -49584,7 +48125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1362), 33, + ACTIONS(1289), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49618,11 +48159,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30342] = 3, + [30131] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1248), 12, + ACTIONS(1297), 13, sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -49634,7 +48176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1246), 33, + ACTIONS(1295), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49668,12 +48210,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30395] = 3, + [30185] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1204), 12, + ACTIONS(1337), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -49684,7 +48227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1202), 33, + ACTIONS(1335), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49718,12 +48261,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30448] = 3, + [30239] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1292), 12, + ACTIONS(1251), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -49734,7 +48278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1290), 33, + ACTIONS(1253), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49768,11 +48312,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30501] = 3, + [30293] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1296), 12, + ACTIONS(1329), 13, sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -49784,7 +48329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1294), 33, + ACTIONS(1327), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49818,11 +48363,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30554] = 3, + [30347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 12, + ACTIONS(1337), 13, sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -49834,7 +48380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1298), 33, + ACTIONS(1335), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49868,11 +48414,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30607] = 3, + [30401] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 12, + ACTIONS(1126), 13, sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -49884,7 +48431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1302), 33, + ACTIONS(1124), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49918,11 +48465,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30660] = 3, + [30455] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1308), 12, + ACTIONS(1339), 13, sym__string_start, + sym__template_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, @@ -49934,7 +48482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1306), 33, + ACTIONS(1341), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49968,12 +48516,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30713] = 3, + [30509] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 12, + ACTIONS(1339), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -49984,7 +48533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1230), 33, + ACTIONS(1341), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -50018,79 +48567,166 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30766] = 20, + [30563] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(1237), 13, sym__string_start, - ACTIONS(652), 1, - sym_identifier, - ACTIONS(654), 1, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(664), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(666), 1, - anon_sym_await, - ACTIONS(1240), 1, - anon_sym_STAR, - ACTIONS(1368), 1, - anon_sym_RPAREN, - STATE(565), 1, - sym_string, - STATE(844), 1, - sym_primary_expression, - STATE(1120), 1, - sym_pattern, - STATE(1395), 1, - sym__patterns, - ACTIONS(299), 2, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, sym_ellipsis, sym_float, - STATE(722), 2, - sym_attribute, - sym_subscript, - ACTIONS(291), 3, + ACTIONS(1235), 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, + [30617] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1343), 13, + sym__string_start, + sym__template_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, - STATE(833), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(301), 4, + sym_ellipsis, + sym_float, + ACTIONS(1345), 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(658), 5, + [30671] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1319), 13, + sym__dedent, + sym__string_start, + sym__template_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(1321), 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(589), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [30853] = 3, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30725] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 12, + ACTIONS(1343), 13, sym__dedent, sym__string_start, + sym__template_string_start, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -50101,7 +48737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1272), 33, + ACTIONS(1345), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -50135,2083 +48771,2177 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30906] = 19, + [30779] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(1347), 13, sym__string_start, - ACTIONS(652), 1, - sym_identifier, - ACTIONS(654), 1, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(664), 1, - anon_sym_LBRACK, - ACTIONS(666), 1, - anon_sym_await, - ACTIONS(1240), 1, - anon_sym_STAR, - STATE(565), 1, - sym_string, - STATE(844), 1, - sym_primary_expression, - STATE(1272), 1, - sym_pattern, - STATE(1406), 1, - sym_pattern_list, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - STATE(722), 2, - sym_attribute, - sym_subscript, - ACTIONS(291), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - STATE(833), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(301), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(658), 5, + sym_ellipsis, + sym_float, + ACTIONS(1349), 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(589), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [30990] = 19, + 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, + [30833] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(1351), 13, sym__string_start, - ACTIONS(652), 1, - sym_identifier, - ACTIONS(654), 1, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(664), 1, - anon_sym_LBRACK, - ACTIONS(666), 1, - anon_sym_await, - ACTIONS(1240), 1, - anon_sym_STAR, - STATE(565), 1, - sym_string, - STATE(844), 1, - sym_primary_expression, - STATE(1279), 1, - sym_pattern, - STATE(1475), 1, - sym_pattern_list, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - STATE(722), 2, - sym_attribute, - sym_subscript, - ACTIONS(291), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - STATE(833), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(301), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(658), 5, + sym_ellipsis, + sym_float, + ACTIONS(1353), 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(589), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [31074] = 19, + 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, + [30887] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(1357), 13, + sym__dedent, sym__string_start, - ACTIONS(652), 1, - sym_identifier, - ACTIONS(654), 1, + sym__template_string_start, anon_sym_LPAREN, - ACTIONS(664), 1, - anon_sym_LBRACK, - ACTIONS(666), 1, - anon_sym_await, - ACTIONS(1240), 1, - anon_sym_STAR, - STATE(565), 1, - sym_string, - STATE(844), 1, - sym_primary_expression, - STATE(1177), 1, - sym_pattern, - STATE(1437), 1, - sym_pattern_list, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - STATE(722), 2, - sym_attribute, - sym_subscript, - ACTIONS(291), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - STATE(833), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(301), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(658), 5, + sym_ellipsis, + sym_float, + ACTIONS(1355), 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(589), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [31158] = 19, + 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, + [30941] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(1247), 13, + sym__dedent, sym__string_start, - ACTIONS(652), 1, - sym_identifier, - ACTIONS(654), 1, + sym__template_string_start, anon_sym_LPAREN, - ACTIONS(664), 1, - anon_sym_LBRACK, - ACTIONS(666), 1, - anon_sym_await, - ACTIONS(1240), 1, - anon_sym_STAR, - STATE(565), 1, - sym_string, - STATE(844), 1, - sym_primary_expression, - STATE(1172), 1, - sym_pattern, - STATE(1429), 1, - sym_pattern_list, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - STATE(722), 2, - sym_attribute, - sym_subscript, - ACTIONS(291), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - STATE(833), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(301), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(658), 5, + sym_ellipsis, + sym_float, + ACTIONS(1249), 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(589), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [31242] = 19, + 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, + [30995] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(1293), 13, sym__string_start, - ACTIONS(652), 1, - sym_identifier, - ACTIONS(654), 1, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(664), 1, - anon_sym_LBRACK, - ACTIONS(666), 1, - anon_sym_await, - ACTIONS(1240), 1, - anon_sym_STAR, - STATE(565), 1, - sym_string, - STATE(844), 1, - sym_primary_expression, - STATE(1199), 1, - sym_pattern, - STATE(1446), 1, - sym_pattern_list, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - STATE(722), 2, - sym_attribute, - sym_subscript, - ACTIONS(291), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - STATE(833), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(301), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(658), 5, + sym_ellipsis, + sym_float, + ACTIONS(1291), 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(589), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [31326] = 19, + 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, + [31049] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(1359), 13, sym__string_start, - ACTIONS(652), 1, - sym_identifier, - ACTIONS(654), 1, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(664), 1, - anon_sym_LBRACK, - ACTIONS(666), 1, - anon_sym_await, - ACTIONS(1240), 1, - anon_sym_STAR, - STATE(565), 1, - sym_string, - STATE(844), 1, - sym_primary_expression, - STATE(1278), 1, - sym_pattern, - STATE(1472), 1, - sym_pattern_list, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - STATE(722), 2, - sym_attribute, - sym_subscript, - ACTIONS(291), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - STATE(833), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(301), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(658), 5, + sym_ellipsis, + sym_float, + ACTIONS(1361), 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(589), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [31410] = 5, + 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, + [31103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(305), 1, + ACTIONS(1233), 13, sym__string_start, - STATE(566), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1021), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1016), 34, - anon_sym_DOT, + sym__template_string_start, + ts_builtin_sym_end, 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_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1231), 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_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, - [31465] = 5, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31157] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(305), 1, + ACTIONS(1241), 13, sym__string_start, - STATE(569), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1372), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1370), 34, - anon_sym_DOT, + sym__template_string_start, + ts_builtin_sym_end, 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_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1239), 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_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, - [31520] = 18, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31211] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(1285), 13, sym__string_start, - ACTIONS(652), 1, - sym_identifier, - ACTIONS(654), 1, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(664), 1, - anon_sym_LBRACK, - ACTIONS(666), 1, - anon_sym_await, - ACTIONS(1240), 1, - anon_sym_STAR, - STATE(565), 1, - sym_string, - STATE(844), 1, - sym_primary_expression, - STATE(1161), 1, - sym_pattern, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - STATE(722), 2, - sym_attribute, - sym_subscript, - ACTIONS(291), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - STATE(833), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(301), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(658), 5, + sym_ellipsis, + sym_float, + ACTIONS(1283), 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(589), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [31601] = 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, + [31265] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(1365), 13, + sym__dedent, sym__string_start, - ACTIONS(652), 1, - sym_identifier, - ACTIONS(654), 1, + sym__template_string_start, anon_sym_LPAREN, - ACTIONS(664), 1, - anon_sym_LBRACK, - ACTIONS(666), 1, - anon_sym_await, - ACTIONS(1240), 1, - anon_sym_STAR, - STATE(565), 1, - sym_string, - STATE(840), 1, - sym_pattern, - STATE(844), 1, - sym_primary_expression, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - STATE(722), 2, - sym_attribute, - sym_subscript, - ACTIONS(291), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - STATE(833), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(301), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(658), 5, + sym_ellipsis, + sym_float, + ACTIONS(1363), 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(589), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [31682] = 5, + 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, + [31319] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, + ACTIONS(1369), 13, + sym__dedent, sym__string_start, - STATE(569), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1376), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1374), 34, - anon_sym_DOT, + sym__template_string_start, 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_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1367), 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_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, - [31737] = 3, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31373] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1383), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1381), 35, + ACTIONS(1373), 13, + sym__dedent, sym__string_start, - anon_sym_DOT, + sym__template_string_start, 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_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1371), 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_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, - [31786] = 16, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31427] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(1377), 13, + sym__dedent, sym__string_start, - ACTIONS(571), 1, + sym__template_string_start, anon_sym_LPAREN, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(1385), 1, - sym_identifier, - ACTIONS(1391), 1, - anon_sym_await, - STATE(565), 1, - sym_string, - STATE(844), 1, - sym_primary_expression, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - STATE(728), 2, - sym_attribute, - sym_subscript, - ACTIONS(291), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - ACTIONS(1387), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(301), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1389), 5, + sym_ellipsis, + sym_float, + ACTIONS(1375), 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(589), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [31861] = 3, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31481] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1395), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1393), 35, + ACTIONS(1225), 13, sym__string_start, - anon_sym_DOT, + sym__template_string_start, + ts_builtin_sym_end, 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_LBRACE, 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, - [31910] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1399), 6, - anon_sym_as, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1223), 33, + anon_sym_import, + anon_sym_from, anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1397), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_async, anon_sym_for, - anon_sym_in, - anon_sym_PIPE, + 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, + [31535] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1357), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, 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, - [31958] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1403), 6, - anon_sym_as, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1355), 33, + anon_sym_import, + anon_sym_from, anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1401), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_async, anon_sym_for, - anon_sym_in, - anon_sym_PIPE, + 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, + [31589] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1079), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, 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, - [32006] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1407), 6, - anon_sym_as, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1081), 33, + anon_sym_import, + anon_sym_from, anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1405), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_async, anon_sym_for, - anon_sym_in, - anon_sym_PIPE, + 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, + [31643] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1351), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, 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, - [32054] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1411), 6, - anon_sym_as, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1353), 33, + anon_sym_import, + anon_sym_from, anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1409), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_async, anon_sym_for, - anon_sym_in, - anon_sym_PIPE, + 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, + [31697] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1305), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, 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, - [32102] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1415), 6, - anon_sym_as, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1303), 33, + anon_sym_import, + anon_sym_from, anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1413), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_async, anon_sym_for, - anon_sym_in, - anon_sym_PIPE, + 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, + [31751] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1369), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, 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, - [32150] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1419), 6, - anon_sym_as, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1367), 33, + anon_sym_import, + anon_sym_from, anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1417), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_async, anon_sym_for, - anon_sym_in, - anon_sym_PIPE, + 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, + [31805] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1269), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, 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, - [32198] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1399), 6, - anon_sym_as, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1267), 33, + anon_sym_import, + anon_sym_from, anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1397), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_async, anon_sym_for, - anon_sym_in, - anon_sym_PIPE, + 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, + [31859] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1281), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, 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, - [32246] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1423), 6, - anon_sym_as, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1279), 33, + anon_sym_import, + anon_sym_from, anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1421), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_async, anon_sym_for, - anon_sym_in, - anon_sym_PIPE, + 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, + [31913] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1359), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, 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, - [32294] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1427), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1425), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1361), 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_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_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_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, - [32342] = 3, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31967] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1423), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1421), 34, - anon_sym_DOT, + ACTIONS(847), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, 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_LBRACE, 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, - [32390] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1431), 6, - anon_sym_as, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(849), 33, + anon_sym_import, + anon_sym_from, anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1429), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, anon_sym_if, - anon_sym_COLON, - anon_sym_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_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_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, - [32438] = 3, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [32021] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1435), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1433), 34, - anon_sym_DOT, + ACTIONS(1227), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, 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_LBRACE, 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, - [32486] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1439), 6, - anon_sym_as, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1229), 33, + anon_sym_import, + anon_sym_from, anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1437), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, anon_sym_if, - anon_sym_COLON, - anon_sym_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_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_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, - [32534] = 3, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [32075] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1443), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1441), 34, - anon_sym_DOT, + ACTIONS(875), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, 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_LBRACE, 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, - [32582] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1447), 6, - anon_sym_as, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(873), 33, + anon_sym_import, + anon_sym_from, anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1445), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_async, anon_sym_for, - anon_sym_in, - anon_sym_PIPE, + 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, + [32129] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1325), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, 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, - [32630] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1451), 6, - anon_sym_as, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1323), 33, + anon_sym_import, + anon_sym_from, anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1449), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_async, anon_sym_for, - anon_sym_in, - anon_sym_PIPE, + 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, + [32183] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1347), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, 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, - [32678] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1021), 6, - anon_sym_as, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1349), 33, + anon_sym_import, + anon_sym_from, anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1016), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_async, anon_sym_for, - anon_sym_in, - anon_sym_PIPE, + 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, + [32237] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1221), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, 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, - [32726] = 20, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1219), 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, + [32291] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1453), 1, - anon_sym_DOT, - ACTIONS(1455), 1, + ACTIONS(1126), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, anon_sym_LPAREN, - ACTIONS(1459), 1, - anon_sym_as, - ACTIONS(1467), 1, - anon_sym_PIPE, - ACTIONS(1471), 1, - anon_sym_LBRACK, - ACTIONS(1473), 1, - anon_sym_STAR_STAR, - ACTIONS(1477), 1, - anon_sym_not, - ACTIONS(1479), 1, - anon_sym_AMP, - ACTIONS(1481), 1, - anon_sym_CARET, - ACTIONS(1485), 1, - anon_sym_is, - STATE(828), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(1461), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1463), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1469), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1483), 2, - anon_sym_LT, - anon_sym_GT, - STATE(593), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1475), 3, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1465), 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(1457), 10, - anon_sym_RPAREN, - anon_sym_COMMA, + 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_COLON, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - [32808] = 3, + 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, + [32345] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1489), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1487), 34, - anon_sym_DOT, + ACTIONS(1205), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, 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_LBRACE, 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, - [32856] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1493), 6, - anon_sym_as, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1203), 33, + anon_sym_import, + anon_sym_from, anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1491), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_async, anon_sym_for, - anon_sym_in, - anon_sym_PIPE, + 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, + [32399] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1377), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, 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, - [32904] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1497), 6, - anon_sym_as, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1375), 33, + anon_sym_import, + anon_sym_from, anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1495), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_async, anon_sym_for, - anon_sym_in, - anon_sym_PIPE, + 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, + [32453] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1273), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, 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, - [32952] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1501), 6, - anon_sym_as, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1271), 33, + anon_sym_import, + anon_sym_from, anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1499), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_async, anon_sym_for, - anon_sym_in, - anon_sym_PIPE, + 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, + [32507] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1331), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1333), 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_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, - [33000] = 20, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [32561] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1453), 1, - anon_sym_DOT, - ACTIONS(1455), 1, + ACTIONS(1299), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, anon_sym_LPAREN, - ACTIONS(1459), 1, - anon_sym_EQ, - ACTIONS(1471), 1, - anon_sym_LBRACK, - ACTIONS(1509), 1, - anon_sym_PIPE, - ACTIONS(1513), 1, - anon_sym_STAR_STAR, - ACTIONS(1517), 1, - anon_sym_not, - ACTIONS(1519), 1, - anon_sym_AMP, - ACTIONS(1521), 1, - anon_sym_CARET, - ACTIONS(1525), 1, - anon_sym_is, - STATE(830), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(1503), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1505), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1511), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1523), 2, - anon_sym_LT, - anon_sym_GT, - STATE(593), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1515), 3, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1507), 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(1457), 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, - [33082] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1529), 6, - anon_sym_as, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1301), 33, + anon_sym_import, + anon_sym_from, anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1527), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_async, anon_sym_for, - anon_sym_in, - anon_sym_PIPE, + 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, + [32615] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1315), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1317), 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_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, - [33130] = 3, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [32669] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1533), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1531), 34, - anon_sym_DOT, + ACTIONS(1373), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, + 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(1371), 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_COLON, - anon_sym_else, anon_sym_async, anon_sym_for, - anon_sym_in, - anon_sym_PIPE, + 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, + [32723] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1201), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1199), 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_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, - [33178] = 3, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [32777] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(260), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(293), 34, - anon_sym_DOT, + ACTIONS(1365), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, + 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(1363), 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_COLON, - anon_sym_else, anon_sym_async, anon_sym_for, - anon_sym_in, - anon_sym_PIPE, + 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, + [32831] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1277), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1275), 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_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, - [33226] = 3, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [32885] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1537), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1535), 34, - anon_sym_DOT, + ACTIONS(1217), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, + 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(1215), 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_COLON, - anon_sym_else, anon_sym_async, anon_sym_for, - anon_sym_in, - anon_sym_PIPE, + 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, + [32939] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1209), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1207), 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_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, - [33274] = 3, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [32993] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(1379), 1, + sym_identifier, + ACTIONS(1385), 1, + anon_sym_await, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(862), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + STATE(740), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1381), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1383), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(649), 15, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [33075] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1541), 6, + ACTIONS(310), 1, + sym__string_start, + STATE(573), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1088), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1539), 34, + ACTIONS(1083), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -52246,17 +50976,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [33322] = 3, + [33130] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1545), 6, + ACTIONS(312), 1, + sym__template_string_start, + STATE(572), 2, + sym_template_string, + aux_sym_concatenated_template_string_repeat1, + ACTIONS(1088), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1543), 34, + ACTIONS(1083), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -52291,17 +51026,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [33370] = 3, + [33185] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1549), 6, + ACTIONS(1391), 1, + sym__template_string_start, + STATE(571), 2, + sym_template_string, + aux_sym_concatenated_template_string_repeat1, + ACTIONS(1389), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 34, + ACTIONS(1387), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -52336,17 +51076,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [33418] = 3, + [33240] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1545), 6, + ACTIONS(312), 1, + sym__template_string_start, + STATE(571), 2, + sym_template_string, + aux_sym_concatenated_template_string_repeat1, + ACTIONS(1396), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1543), 34, + ACTIONS(1394), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -52381,17 +51126,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [33466] = 3, + [33295] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1553), 6, + ACTIONS(310), 1, + sym__string_start, + STATE(574), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1400), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1551), 34, + ACTIONS(1398), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -52426,17 +51176,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [33514] = 3, + [33350] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1493), 6, + ACTIONS(1406), 1, + sym__string_start, + STATE(574), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1404), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1491), 34, + ACTIONS(1402), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -52471,97 +51226,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [33562] = 11, + [33405] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1453), 1, - anon_sym_DOT, - ACTIONS(1455), 1, + ACTIONS(609), 1, anon_sym_LPAREN, - ACTIONS(1471), 1, + ACTIONS(617), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, - anon_sym_STAR_STAR, - ACTIONS(1503), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1511), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(593), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1515), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1557), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1555), 23, - 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_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, - [33625] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(283), 1, + ACTIONS(619), 1, anon_sym_LBRACE, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(590), 1, - anon_sym_LPAREN, - ACTIONS(596), 1, - anon_sym_LBRACK, - ACTIONS(598), 1, + ACTIONS(623), 1, anon_sym_await, - ACTIONS(1559), 1, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(1409), 1, anon_sym_not, - STATE(565), 1, + STATE(720), 1, sym_string, - STATE(611), 1, + STATE(722), 1, + sym_template_string, + STATE(751), 1, sym_primary_expression, - ACTIONS(299), 2, + ACTIONS(621), 2, sym_ellipsis, sym_float, - ACTIONS(594), 3, + ACTIONS(615), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 5, + ACTIONS(607), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(576), 5, + ACTIONS(611), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(589), 16, + STATE(809), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52577,147 +51284,111 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [33694] = 8, + [33481] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1453), 1, - anon_sym_DOT, - ACTIONS(1455), 1, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, anon_sym_LPAREN, - ACTIONS(1471), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(1473), 1, - anon_sym_STAR_STAR, - STATE(593), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1557), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1555), 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_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_AT, + ACTIONS(605), 1, + anon_sym_await, + ACTIONS(1411), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [33751] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1453), 1, - anon_sym_DOT, - ACTIONS(1455), 1, - anon_sym_LPAREN, - ACTIONS(1471), 1, - anon_sym_LBRACK, - ACTIONS(1473), 1, - anon_sym_STAR_STAR, - ACTIONS(1461), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1469), 2, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(663), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, - STATE(593), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1475), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1557), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1555), 23, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, + anon_sym_TILDE, + ACTIONS(306), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(583), 5, + anon_sym_print, 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_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [33814] = 14, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [33557] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(602), 1, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(610), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - ACTIONS(612), 1, - anon_sym_LBRACE, - ACTIONS(616), 1, + ACTIONS(576), 1, anon_sym_await, - ACTIONS(618), 1, - sym__string_start, - ACTIONS(1561), 1, + ACTIONS(1413), 1, anon_sym_not, - STATE(699), 1, + STATE(698), 1, sym_string, - STATE(729), 1, + STATE(700), 1, + sym_template_string, + STATE(717), 1, sym_primary_expression, - ACTIONS(614), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(608), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(600), 5, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(604), 5, + ACTIONS(570), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(796), 16, + STATE(760), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52733,160 +51404,162 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [33883] = 15, + [33633] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1453), 1, - anon_sym_DOT, - ACTIONS(1455), 1, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(1467), 1, - anon_sym_PIPE, - ACTIONS(1471), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(1473), 1, - anon_sym_STAR_STAR, - ACTIONS(1479), 1, - anon_sym_AMP, - ACTIONS(1481), 1, - anon_sym_CARET, - ACTIONS(1461), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1463), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1469), 2, + ACTIONS(595), 1, + anon_sym_await, + ACTIONS(1415), 1, + anon_sym_not, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(667), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, - STATE(593), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1475), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1565), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1563), 18, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, + anon_sym_TILDE, + ACTIONS(306), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(583), 5, + anon_sym_print, 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, - [33954] = 14, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [33709] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1453), 1, - anon_sym_DOT, - ACTIONS(1455), 1, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(1471), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(1473), 1, - anon_sym_STAR_STAR, - ACTIONS(1479), 1, - anon_sym_AMP, - ACTIONS(1481), 1, - anon_sym_CARET, - ACTIONS(1461), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1463), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1469), 2, + ACTIONS(595), 1, + anon_sym_await, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(672), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, - STATE(593), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1475), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1557), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1555), 19, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, + anon_sym_TILDE, + ACTIONS(306), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(583), 5, + anon_sym_print, 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_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [34023] = 10, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [33782] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1453), 1, - anon_sym_DOT, - ACTIONS(1455), 1, - anon_sym_LPAREN, - ACTIONS(1471), 1, - anon_sym_LBRACK, - ACTIONS(1473), 1, - anon_sym_STAR_STAR, - ACTIONS(1461), 2, + ACTIONS(1419), 6, + anon_sym_as, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - STATE(593), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1475), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1557), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 25, + ACTIONS(1417), 35, + sym__string_start, + 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, @@ -52896,180 +51569,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [34084] = 8, + sym_type_conversion, + [33831] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1453), 1, - anon_sym_DOT, - ACTIONS(1455), 1, - anon_sym_LPAREN, - ACTIONS(1471), 1, - anon_sym_LBRACK, - ACTIONS(1473), 1, - anon_sym_STAR_STAR, - STATE(593), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1557), 5, + ACTIONS(1423), 6, anon_sym_as, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 28, + ACTIONS(1421), 35, + sym__template_string_start, + 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_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, - [34141] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1453), 1, - anon_sym_DOT, - ACTIONS(1455), 1, - anon_sym_LPAREN, - ACTIONS(1471), 1, - anon_sym_LBRACK, - ACTIONS(1473), 1, anon_sym_STAR_STAR, - ACTIONS(1481), 1, - anon_sym_CARET, - ACTIONS(1461), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1463), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1469), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(593), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1475), 3, anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1557), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1555), 20, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_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, - [34208] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1453), 1, - anon_sym_DOT, - ACTIONS(1455), 1, - anon_sym_LPAREN, - ACTIONS(1471), 1, - anon_sym_LBRACK, - ACTIONS(1473), 1, - anon_sym_STAR_STAR, - ACTIONS(1461), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1463), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1469), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(593), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1475), 3, - anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1557), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1555), 21, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_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, - [34273] = 14, + sym_type_conversion, + [33880] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym_LBRACE, ACTIONS(81), 1, sym__string_start, - ACTIONS(561), 1, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - ACTIONS(569), 1, + ACTIONS(576), 1, anon_sym_await, - ACTIONS(1567), 1, - anon_sym_not, - STATE(693), 1, + STATE(698), 1, sym_string, - STATE(703), 1, + STATE(700), 1, + sym_template_string, + STATE(706), 1, sym_primary_expression, ACTIONS(75), 2, sym_ellipsis, @@ -53084,13 +51650,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(563), 5, + ACTIONS(570), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(773), 16, + STATE(760), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53106,41 +51672,96 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [34342] = 8, + [33953] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1453), 1, - anon_sym_DOT, - ACTIONS(1455), 1, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, anon_sym_LPAREN, - ACTIONS(1471), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(1473), 1, - anon_sym_STAR_STAR, - STATE(593), 2, - sym_argument_list, + ACTIONS(605), 1, + anon_sym_await, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(663), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(601), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(583), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(649), 17, + 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(1571), 5, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [34026] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1427), 6, anon_sym_as, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1569), 28, + ACTIONS(1425), 35, + sym__string_start, + 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, @@ -53156,45 +51777,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [34399] = 14, + sym_type_conversion, + [34075] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(81), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - ACTIONS(588), 1, + ACTIONS(576), 1, anon_sym_await, - ACTIONS(1573), 1, - anon_sym_not, - STATE(565), 1, + STATE(698), 1, sym_string, - STATE(621), 1, + STATE(700), 1, + sym_template_string, + STATE(713), 1, sym_primary_expression, - ACTIONS(299), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 5, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(576), 5, + ACTIONS(570), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(589), 16, + STATE(760), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53210,825 +51834,631 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [34468] = 8, + [34148] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1453), 1, - anon_sym_DOT, - ACTIONS(1455), 1, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, anon_sym_LPAREN, - ACTIONS(1471), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, - anon_sym_STAR_STAR, - STATE(593), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1557), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1555), 28, - 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, + ACTIONS(605), 1, + anon_sym_await, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(664), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(601), 3, 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, - [34525] = 15, + anon_sym_TILDE, + ACTIONS(306), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(583), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [34221] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1453), 1, - anon_sym_DOT, - ACTIONS(1455), 1, + ACTIONS(609), 1, anon_sym_LPAREN, - ACTIONS(1471), 1, + ACTIONS(617), 1, anon_sym_LBRACK, - ACTIONS(1509), 1, - anon_sym_PIPE, - ACTIONS(1513), 1, - anon_sym_STAR_STAR, - ACTIONS(1519), 1, - anon_sym_AMP, - ACTIONS(1521), 1, - anon_sym_CARET, - ACTIONS(1503), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1505), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1511), 2, + ACTIONS(619), 1, + anon_sym_LBRACE, + ACTIONS(623), 1, + anon_sym_await, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + STATE(720), 1, + sym_string, + STATE(722), 1, + sym_template_string, + STATE(739), 1, + sym_primary_expression, + ACTIONS(621), 2, + sym_ellipsis, + sym_float, + ACTIONS(615), 3, anon_sym_DASH, anon_sym_PLUS, - STATE(593), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1515), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1565), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1563), 18, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - 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, - sym_type_conversion, - [34596] = 14, + anon_sym_TILDE, + ACTIONS(607), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(611), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(809), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [34294] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1453), 1, - anon_sym_DOT, - ACTIONS(1455), 1, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, anon_sym_LPAREN, - ACTIONS(1471), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, - anon_sym_STAR_STAR, - ACTIONS(1519), 1, - anon_sym_AMP, - ACTIONS(1521), 1, - anon_sym_CARET, - ACTIONS(1503), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1505), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1511), 2, + ACTIONS(605), 1, + anon_sym_await, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(673), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, - STATE(593), 2, - sym_argument_list, + anon_sym_TILDE, + ACTIONS(306), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(583), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(649), 17, + 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(1515), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1557), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1555), 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, - 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_type_conversion, - [34665] = 10, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [34367] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1453), 1, - anon_sym_DOT, - ACTIONS(1455), 1, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(1471), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, - anon_sym_STAR_STAR, - ACTIONS(1503), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(593), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1515), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1557), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1555), 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, + ACTIONS(576), 1, + anon_sym_await, + STATE(698), 1, + sym_string, + STATE(700), 1, + sym_template_string, + STATE(712), 1, + sym_primary_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, 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, - [34726] = 8, + anon_sym_TILDE, + ACTIONS(77), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(570), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(760), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [34440] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1453), 1, - anon_sym_DOT, - ACTIONS(1455), 1, + ACTIONS(609), 1, anon_sym_LPAREN, - ACTIONS(1471), 1, + ACTIONS(617), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, - anon_sym_STAR_STAR, - STATE(593), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1557), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1555), 28, - 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, + ACTIONS(619), 1, + anon_sym_LBRACE, + ACTIONS(623), 1, + anon_sym_await, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + STATE(720), 1, + sym_string, + STATE(722), 1, + sym_template_string, + STATE(736), 1, + sym_primary_expression, + ACTIONS(621), 2, + sym_ellipsis, + sym_float, + ACTIONS(615), 3, 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, - [34783] = 13, + anon_sym_TILDE, + ACTIONS(607), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(611), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(809), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [34513] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1453), 1, - anon_sym_DOT, - ACTIONS(1455), 1, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, anon_sym_LPAREN, - ACTIONS(1471), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, - anon_sym_STAR_STAR, - ACTIONS(1521), 1, - anon_sym_CARET, - ACTIONS(1503), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1505), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1511), 2, + ACTIONS(605), 1, + anon_sym_await, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(683), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, - STATE(593), 2, - sym_argument_list, + anon_sym_TILDE, + ACTIONS(306), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(583), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(649), 17, + 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(1515), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1557), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1555), 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, - [34850] = 12, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [34586] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1453), 1, - anon_sym_DOT, - ACTIONS(1455), 1, + ACTIONS(609), 1, anon_sym_LPAREN, - ACTIONS(1471), 1, + ACTIONS(617), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, - anon_sym_STAR_STAR, - ACTIONS(1503), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1505), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1511), 2, + ACTIONS(619), 1, + anon_sym_LBRACE, + ACTIONS(623), 1, + anon_sym_await, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + STATE(720), 1, + sym_string, + STATE(722), 1, + sym_template_string, + STATE(734), 1, + sym_primary_expression, + ACTIONS(621), 2, + sym_ellipsis, + sym_float, + ACTIONS(615), 3, anon_sym_DASH, anon_sym_PLUS, - STATE(593), 2, - sym_argument_list, + anon_sym_TILDE, + ACTIONS(607), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(611), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(809), 17, + 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(1515), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1557), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1555), 21, - 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, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [34915] = 15, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [34659] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1453), 1, - anon_sym_DOT, - ACTIONS(1455), 1, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, anon_sym_LPAREN, - ACTIONS(1471), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(1509), 1, - anon_sym_PIPE, - ACTIONS(1513), 1, - anon_sym_STAR_STAR, - ACTIONS(1519), 1, - anon_sym_AMP, - ACTIONS(1521), 1, - anon_sym_CARET, - ACTIONS(1503), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1505), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1511), 2, + ACTIONS(605), 1, + anon_sym_await, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(677), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, - STATE(593), 2, - sym_argument_list, + anon_sym_TILDE, + ACTIONS(306), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(583), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(649), 17, + 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(1515), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1577), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1575), 18, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - 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, - sym_type_conversion, - [34986] = 15, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [34732] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1453), 1, - anon_sym_DOT, - ACTIONS(1455), 1, + ACTIONS(609), 1, anon_sym_LPAREN, - ACTIONS(1471), 1, + ACTIONS(617), 1, anon_sym_LBRACK, - ACTIONS(1509), 1, - anon_sym_PIPE, - ACTIONS(1513), 1, - anon_sym_STAR_STAR, - ACTIONS(1519), 1, - anon_sym_AMP, - ACTIONS(1521), 1, - anon_sym_CARET, - ACTIONS(1503), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1505), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1511), 2, + ACTIONS(619), 1, + anon_sym_LBRACE, + ACTIONS(623), 1, + anon_sym_await, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + STATE(720), 1, + sym_string, + STATE(722), 1, + sym_template_string, + STATE(741), 1, + sym_primary_expression, + ACTIONS(621), 2, + sym_ellipsis, + sym_float, + ACTIONS(615), 3, anon_sym_DASH, anon_sym_PLUS, - STATE(593), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1515), 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), 18, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - 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, - sym_type_conversion, - [35057] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1453), 1, - anon_sym_DOT, - ACTIONS(1455), 1, - anon_sym_LPAREN, - ACTIONS(1471), 1, - anon_sym_LBRACK, - ACTIONS(1473), 1, - anon_sym_STAR_STAR, - STATE(593), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1585), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1583), 28, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, + anon_sym_TILDE, + ACTIONS(607), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(611), 5, + anon_sym_print, 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, - [35114] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1453), 1, - anon_sym_DOT, - ACTIONS(1455), 1, - anon_sym_LPAREN, - ACTIONS(1471), 1, - anon_sym_LBRACK, - ACTIONS(1513), 1, - anon_sym_STAR_STAR, - STATE(593), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1571), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1569), 28, - 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_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, - [35171] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1453), 1, - anon_sym_DOT, - ACTIONS(1455), 1, - anon_sym_LPAREN, - ACTIONS(1471), 1, - anon_sym_LBRACK, - ACTIONS(1513), 1, - anon_sym_STAR_STAR, - STATE(593), 2, - sym_argument_list, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(809), 17, + 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(1585), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1583), 28, - 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_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, - [35228] = 15, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [34805] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1453), 1, - anon_sym_DOT, - ACTIONS(1455), 1, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(1467), 1, - anon_sym_PIPE, - ACTIONS(1471), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(1473), 1, - anon_sym_STAR_STAR, - ACTIONS(1479), 1, - anon_sym_AMP, - ACTIONS(1481), 1, - anon_sym_CARET, - ACTIONS(1461), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1463), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1469), 2, + ACTIONS(1429), 1, + sym_identifier, + ACTIONS(1433), 1, + anon_sym_await, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(862), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + STATE(859), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, - STATE(593), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1475), 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), 18, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1431), 5, + anon_sym_print, 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, - [35299] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1453), 1, - anon_sym_DOT, - ACTIONS(1455), 1, - anon_sym_LPAREN, - ACTIONS(1467), 1, - anon_sym_PIPE, - ACTIONS(1471), 1, - anon_sym_LBRACK, - ACTIONS(1473), 1, - anon_sym_STAR_STAR, - ACTIONS(1479), 1, - anon_sym_AMP, - ACTIONS(1481), 1, - anon_sym_CARET, - ACTIONS(1461), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1463), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1469), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(593), 2, - sym_argument_list, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(649), 15, + 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, - ACTIONS(1475), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1581), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1579), 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, - [35370] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1109), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1104), 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_COLON, - anon_sym_else, - 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, - [35416] = 13, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [34882] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(602), 1, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(610), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(612), 1, - anon_sym_LBRACE, - ACTIONS(616), 1, + ACTIONS(595), 1, anon_sym_await, - ACTIONS(618), 1, - sym__string_start, - STATE(699), 1, + STATE(569), 1, sym_string, - STATE(711), 1, + STATE(570), 1, + sym_template_string, + STATE(667), 1, sym_primary_expression, - ACTIONS(614), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(608), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(600), 5, + ACTIONS(306), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(604), 5, + ACTIONS(583), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(796), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54044,44 +52474,49 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [35482] = 13, + [34955] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(602), 1, + ACTIONS(609), 1, anon_sym_LPAREN, - ACTIONS(610), 1, + ACTIONS(617), 1, anon_sym_LBRACK, - ACTIONS(612), 1, + ACTIONS(619), 1, anon_sym_LBRACE, - ACTIONS(616), 1, + ACTIONS(623), 1, anon_sym_await, - ACTIONS(618), 1, + ACTIONS(625), 1, sym__string_start, - STATE(699), 1, + ACTIONS(627), 1, + sym__template_string_start, + STATE(720), 1, sym_string, - STATE(713), 1, + STATE(722), 1, + sym_template_string, + STATE(745), 1, sym_primary_expression, - ACTIONS(614), 2, + ACTIONS(621), 2, sym_ellipsis, sym_float, - ACTIONS(608), 3, + ACTIONS(615), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(600), 5, + ACTIONS(607), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(604), 5, + ACTIONS(611), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(796), 16, + STATE(809), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54097,44 +52532,49 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [35548] = 13, + [35028] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(602), 1, + ACTIONS(609), 1, anon_sym_LPAREN, - ACTIONS(610), 1, + ACTIONS(617), 1, anon_sym_LBRACK, - ACTIONS(612), 1, + ACTIONS(619), 1, anon_sym_LBRACE, - ACTIONS(616), 1, + ACTIONS(623), 1, anon_sym_await, - ACTIONS(618), 1, + ACTIONS(625), 1, sym__string_start, - STATE(699), 1, + ACTIONS(627), 1, + sym__template_string_start, + STATE(720), 1, sym_string, - STATE(729), 1, + STATE(722), 1, + sym_template_string, + STATE(751), 1, sym_primary_expression, - ACTIONS(614), 2, + ACTIONS(621), 2, sym_ellipsis, sym_float, - ACTIONS(608), 3, + ACTIONS(615), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(600), 5, + ACTIONS(607), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(604), 5, + ACTIONS(611), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(796), 16, + STATE(809), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54150,44 +52590,49 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [35614] = 13, + [35101] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(602), 1, + ACTIONS(609), 1, anon_sym_LPAREN, - ACTIONS(610), 1, + ACTIONS(617), 1, anon_sym_LBRACK, - ACTIONS(612), 1, + ACTIONS(619), 1, anon_sym_LBRACE, - ACTIONS(616), 1, + ACTIONS(623), 1, anon_sym_await, - ACTIONS(618), 1, + ACTIONS(625), 1, sym__string_start, - STATE(699), 1, + ACTIONS(627), 1, + sym__template_string_start, + STATE(720), 1, sym_string, - STATE(731), 1, + STATE(722), 1, + sym_template_string, + STATE(752), 1, sym_primary_expression, - ACTIONS(614), 2, + ACTIONS(621), 2, sym_ellipsis, sym_float, - ACTIONS(608), 3, + ACTIONS(615), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(600), 5, + ACTIONS(607), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(604), 5, + ACTIONS(611), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(796), 16, + STATE(809), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54203,44 +52648,49 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [35680] = 13, + [35174] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(602), 1, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, anon_sym_LPAREN, - ACTIONS(610), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(612), 1, - anon_sym_LBRACE, - ACTIONS(616), 1, + ACTIONS(605), 1, anon_sym_await, - ACTIONS(618), 1, - sym__string_start, - STATE(699), 1, + STATE(569), 1, sym_string, - STATE(733), 1, + STATE(570), 1, + sym_template_string, + STATE(670), 1, sym_primary_expression, - ACTIONS(614), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(608), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(600), 5, + ACTIONS(306), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(604), 5, + ACTIONS(583), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(796), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54256,44 +52706,49 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [35746] = 13, + [35247] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(602), 1, + ACTIONS(609), 1, anon_sym_LPAREN, - ACTIONS(610), 1, + ACTIONS(617), 1, anon_sym_LBRACK, - ACTIONS(612), 1, + ACTIONS(619), 1, anon_sym_LBRACE, - ACTIONS(616), 1, + ACTIONS(623), 1, anon_sym_await, - ACTIONS(618), 1, + ACTIONS(625), 1, sym__string_start, - STATE(699), 1, + ACTIONS(627), 1, + sym__template_string_start, + STATE(720), 1, sym_string, - STATE(734), 1, + STATE(722), 1, + sym_template_string, + STATE(753), 1, sym_primary_expression, - ACTIONS(614), 2, + ACTIONS(621), 2, sym_ellipsis, sym_float, - ACTIONS(608), 3, + ACTIONS(615), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(600), 5, + ACTIONS(607), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(604), 5, + ACTIONS(611), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(796), 16, + STATE(809), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54309,44 +52764,49 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [35812] = 13, + [35320] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(602), 1, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(610), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - ACTIONS(612), 1, - anon_sym_LBRACE, - ACTIONS(616), 1, + ACTIONS(576), 1, anon_sym_await, - ACTIONS(618), 1, - sym__string_start, - STATE(699), 1, + STATE(698), 1, sym_string, - STATE(718), 1, + STATE(700), 1, + sym_template_string, + STATE(723), 1, sym_primary_expression, - ACTIONS(614), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(608), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(600), 5, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(604), 5, + ACTIONS(570), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(796), 16, + STATE(760), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54362,44 +52822,49 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [35878] = 13, + [35393] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(602), 1, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, anon_sym_LPAREN, - ACTIONS(610), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(612), 1, - anon_sym_LBRACE, - ACTIONS(616), 1, + ACTIONS(605), 1, anon_sym_await, - ACTIONS(618), 1, - sym__string_start, - STATE(699), 1, + STATE(569), 1, sym_string, - STATE(730), 1, + STATE(570), 1, + sym_template_string, + STATE(682), 1, sym_primary_expression, - ACTIONS(614), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(608), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(600), 5, + ACTIONS(306), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(604), 5, + ACTIONS(583), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(796), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54415,68 +52880,28 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [35944] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(618), 1, - sym__string_start, - STATE(647), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1372), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1370), 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, - [35994] = 13, + [35466] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym_LBRACE, ACTIONS(81), 1, sym__string_start, - ACTIONS(561), 1, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - ACTIONS(569), 1, + ACTIONS(576), 1, anon_sym_await, - STATE(693), 1, + STATE(698), 1, sym_string, - STATE(704), 1, + STATE(700), 1, + sym_template_string, + STATE(721), 1, sym_primary_expression, ACTIONS(75), 2, sym_ellipsis, @@ -54491,13 +52916,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(563), 5, + ACTIONS(570), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(773), 16, + STATE(760), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54513,44 +52938,49 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [36060] = 13, + [35539] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(602), 1, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, anon_sym_LPAREN, - ACTIONS(610), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(612), 1, - anon_sym_LBRACE, - ACTIONS(616), 1, + ACTIONS(605), 1, anon_sym_await, - ACTIONS(618), 1, - sym__string_start, - STATE(699), 1, + STATE(569), 1, sym_string, - STATE(719), 1, + STATE(570), 1, + sym_template_string, + STATE(668), 1, sym_primary_expression, - ACTIONS(614), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(608), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(600), 5, + ACTIONS(306), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(604), 5, + ACTIONS(583), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(796), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54566,44 +52996,49 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [36126] = 13, + [35612] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(602), 1, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(610), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(612), 1, - anon_sym_LBRACE, - ACTIONS(616), 1, + ACTIONS(595), 1, anon_sym_await, - ACTIONS(618), 1, - sym__string_start, - STATE(699), 1, + STATE(569), 1, sym_string, - STATE(721), 1, + STATE(570), 1, + sym_template_string, + STATE(678), 1, sym_primary_expression, - ACTIONS(614), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(608), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(600), 5, + ACTIONS(306), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(604), 5, + ACTIONS(583), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(796), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54619,95 +53054,53 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [36192] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1587), 1, - sym__string_start, - STATE(647), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1376), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1374), 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, - [36242] = 15, + [35685] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(81), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, - sym_identifier, - ACTIONS(1594), 1, + ACTIONS(576), 1, anon_sym_await, - STATE(565), 1, + STATE(698), 1, sym_string, - STATE(844), 1, + STATE(700), 1, + sym_template_string, + STATE(717), 1, sym_primary_expression, - ACTIONS(299), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - STATE(839), 2, - sym_attribute, - sym_subscript, - ACTIONS(291), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(77), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(1592), 5, + ACTIONS(570), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(589), 14, + STATE(760), 17, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -54719,50 +53112,53 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [36312] = 15, + [35758] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(571), 1, + ACTIONS(609), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(617), 1, anon_sym_LBRACK, - ACTIONS(1385), 1, - sym_identifier, - ACTIONS(1391), 1, + ACTIONS(619), 1, + anon_sym_LBRACE, + ACTIONS(623), 1, anon_sym_await, - STATE(565), 1, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + STATE(720), 1, sym_string, - STATE(844), 1, + STATE(722), 1, + sym_template_string, + STATE(742), 1, sym_primary_expression, - ACTIONS(299), 2, + ACTIONS(621), 2, sym_ellipsis, sym_float, - STATE(728), 2, - sym_attribute, - sym_subscript, - ACTIONS(291), 3, + ACTIONS(615), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 4, + ACTIONS(607), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(1389), 5, + ACTIONS(611), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(589), 14, + STATE(809), 17, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -54774,44 +53170,49 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [36382] = 13, + [35831] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(81), 1, sym__string_start, - ACTIONS(590), 1, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - ACTIONS(598), 1, + ACTIONS(576), 1, anon_sym_await, - STATE(565), 1, + STATE(698), 1, sym_string, - STATE(632), 1, + STATE(700), 1, + sym_template_string, + STATE(714), 1, sym_primary_expression, - ACTIONS(299), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(594), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 5, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(576), 5, + ACTIONS(570), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(589), 16, + STATE(760), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54827,44 +53228,49 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [36448] = 13, + [35904] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(561), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(569), 1, + ACTIONS(595), 1, anon_sym_await, - STATE(693), 1, + STATE(569), 1, sym_string, - STATE(701), 1, + STATE(570), 1, + sym_template_string, + STATE(674), 1, sym_primary_expression, - ACTIONS(75), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 5, + ACTIONS(306), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(563), 5, + ACTIONS(583), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(773), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54880,44 +53286,49 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [36514] = 13, + [35977] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(81), 1, sym__string_start, - ACTIONS(590), 1, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - ACTIONS(598), 1, + ACTIONS(576), 1, anon_sym_await, - STATE(565), 1, + STATE(698), 1, sym_string, - STATE(633), 1, + STATE(700), 1, + sym_template_string, + STATE(707), 1, sym_primary_expression, - ACTIONS(299), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(594), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 5, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(576), 5, + ACTIONS(570), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(589), 16, + STATE(760), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54933,44 +53344,49 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [36580] = 13, + [36050] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(81), 1, sym__string_start, - ACTIONS(590), 1, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - ACTIONS(598), 1, + ACTIONS(576), 1, anon_sym_await, - STATE(565), 1, + STATE(698), 1, sym_string, - STATE(618), 1, + STATE(700), 1, + sym_template_string, + STATE(708), 1, sym_primary_expression, - ACTIONS(299), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(594), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 5, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(576), 5, + ACTIONS(570), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(589), 16, + STATE(760), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54986,44 +53402,49 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [36646] = 13, + [36123] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(561), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(569), 1, + ACTIONS(595), 1, anon_sym_await, - STATE(693), 1, + STATE(569), 1, sym_string, - STATE(707), 1, + STATE(570), 1, + sym_template_string, + STATE(685), 1, sym_primary_expression, - ACTIONS(75), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 5, + ACTIONS(306), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(563), 5, + ACTIONS(583), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(773), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55039,44 +53460,49 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [36712] = 13, + [36196] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(561), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(569), 1, + ACTIONS(595), 1, anon_sym_await, - STATE(693), 1, + STATE(569), 1, sym_string, - STATE(708), 1, + STATE(570), 1, + sym_template_string, + STATE(662), 1, sym_primary_expression, - ACTIONS(75), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 5, + ACTIONS(306), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(563), 5, + ACTIONS(583), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(773), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55092,175 +53518,49 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [36778] = 3, + [36269] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1152), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1147), 33, - anon_sym_DOT, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(591), 1, 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, - [36824] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(578), 1, - anon_sym_COLON_EQ, - ACTIONS(260), 6, - anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(293), 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_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, - [36872] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1023), 1, - anon_sym_COLON_EQ, - ACTIONS(1021), 6, - anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1016), 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_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, - [36920] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(590), 1, - anon_sym_LPAREN, - ACTIONS(596), 1, - anon_sym_LBRACK, - ACTIONS(598), 1, + ACTIONS(595), 1, anon_sym_await, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(570), 1, + sym_template_string, + STATE(671), 1, sym_primary_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(594), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 5, + ACTIONS(306), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(576), 5, + ACTIONS(583), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55276,23 +53576,28 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [36986] = 13, + [36342] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym_LBRACE, ACTIONS(81), 1, sym__string_start, - ACTIONS(561), 1, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - ACTIONS(569), 1, + ACTIONS(576), 1, anon_sym_await, - STATE(693), 1, + STATE(698), 1, sym_string, - STATE(694), 1, + STATE(700), 1, + sym_template_string, + STATE(705), 1, sym_primary_expression, ACTIONS(75), 2, sym_ellipsis, @@ -55307,13 +53612,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(563), 5, + ACTIONS(570), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(773), 16, + STATE(760), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55329,44 +53634,49 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [37052] = 13, + [36415] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(571), 1, + ACTIONS(609), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(617), 1, anon_sym_LBRACK, - ACTIONS(588), 1, + ACTIONS(619), 1, + anon_sym_LBRACE, + ACTIONS(623), 1, anon_sym_await, - STATE(565), 1, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + STATE(720), 1, sym_string, - STATE(620), 1, + STATE(722), 1, + sym_template_string, + STATE(746), 1, sym_primary_expression, - ACTIONS(299), 2, + ACTIONS(621), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(615), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 5, + ACTIONS(607), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(576), 5, + ACTIONS(611), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(589), 16, + STATE(809), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55382,44 +53692,49 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [37118] = 13, + [36488] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(588), 1, + ACTIONS(595), 1, anon_sym_await, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(606), 1, + STATE(570), 1, + sym_template_string, + STATE(681), 1, sym_primary_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 5, + ACTIONS(306), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(576), 5, + ACTIONS(583), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55435,44 +53750,49 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [37184] = 13, + [36561] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(81), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - ACTIONS(588), 1, + ACTIONS(576), 1, anon_sym_await, - STATE(565), 1, + STATE(698), 1, sym_string, - STATE(621), 1, + STATE(700), 1, + sym_template_string, + STATE(710), 1, sym_primary_expression, - ACTIONS(299), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 5, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(576), 5, + ACTIONS(570), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(589), 16, + STATE(760), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55488,44 +53808,49 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [37250] = 13, + [36634] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(571), 1, + ACTIONS(609), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(617), 1, anon_sym_LBRACK, - ACTIONS(588), 1, + ACTIONS(619), 1, + anon_sym_LBRACE, + ACTIONS(623), 1, anon_sym_await, - STATE(565), 1, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + STATE(720), 1, sym_string, - STATE(622), 1, + STATE(722), 1, + sym_template_string, + STATE(744), 1, sym_primary_expression, - ACTIONS(299), 2, + ACTIONS(621), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(615), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 5, + ACTIONS(607), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(576), 5, + ACTIONS(611), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(589), 16, + STATE(809), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55541,44 +53866,49 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [37316] = 13, + [36707] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(588), 1, + ACTIONS(605), 1, anon_sym_await, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(623), 1, + STATE(570), 1, + sym_template_string, + STATE(679), 1, sym_primary_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 5, + ACTIONS(306), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(576), 5, + ACTIONS(583), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55594,44 +53924,49 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [37382] = 13, + [36780] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(588), 1, + ACTIONS(595), 1, anon_sym_await, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(624), 1, + STATE(570), 1, + sym_template_string, + STATE(680), 1, sym_primary_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 5, + ACTIONS(306), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(576), 5, + ACTIONS(583), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55647,48 +53982,55 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [37448] = 13, + [36853] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(588), 1, + ACTIONS(1379), 1, + sym_identifier, + ACTIONS(1385), 1, anon_sym_await, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(625), 1, + STATE(570), 1, + sym_template_string, + STATE(862), 1, sym_primary_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + STATE(740), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 5, + ACTIONS(306), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(576), 5, + ACTIONS(1383), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(589), 16, + STATE(649), 15, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -55700,97 +54042,95 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [37514] = 13, + [36930] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(571), 1, + ACTIONS(1437), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1435), 35, + sym__template_string_start, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(588), 1, - anon_sym_await, - STATE(565), 1, - sym_string, - STATE(626), 1, - sym_primary_expression, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - ACTIONS(291), 3, + 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, - ACTIONS(301), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(576), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(589), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [37580] = 13, + 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, + [36979] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(561), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(569), 1, + ACTIONS(595), 1, anon_sym_await, - STATE(693), 1, + STATE(569), 1, sym_string, - STATE(696), 1, + STATE(570), 1, + sym_template_string, + STATE(666), 1, sym_primary_expression, - ACTIONS(75), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 5, + ACTIONS(306), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(563), 5, + ACTIONS(583), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(773), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55806,44 +54146,49 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [37646] = 13, + [37052] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(588), 1, + ACTIONS(605), 1, anon_sym_await, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(627), 1, + STATE(570), 1, + sym_template_string, + STATE(676), 1, sym_primary_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 5, + ACTIONS(306), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(576), 5, + ACTIONS(583), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55859,88 +54204,49 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [37712] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(592), 1, - anon_sym_COLON_EQ, - ACTIONS(260), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_COLON, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(293), 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_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, - [37760] = 13, + [37125] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(571), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(588), 1, + ACTIONS(595), 1, anon_sym_await, - STATE(565), 1, + STATE(569), 1, sym_string, - STATE(628), 1, + STATE(570), 1, + sym_template_string, + STATE(665), 1, sym_primary_expression, - ACTIONS(299), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(291), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(301), 5, + ACTIONS(306), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(576), 5, + ACTIONS(583), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(589), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55956,44 +54262,49 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [37826] = 13, + [37198] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(561), 1, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, anon_sym_LPAREN, - ACTIONS(567), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(569), 1, + ACTIONS(605), 1, anon_sym_await, - STATE(693), 1, + STATE(569), 1, sym_string, - STATE(702), 1, + STATE(570), 1, + sym_template_string, + STATE(684), 1, sym_primary_expression, - ACTIONS(75), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 5, + ACTIONS(306), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(563), 5, + ACTIONS(583), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(773), 16, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56009,26 +54320,27 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, + sym_concatenated_template_string, sym_await, - [37892] = 4, + [37271] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1596), 1, - anon_sym_COLON_EQ, - ACTIONS(1021), 6, + ACTIONS(1441), 6, anon_sym_as, anon_sym_STAR, - anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1016), 31, + ACTIONS(1439), 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, @@ -56054,710 +54366,3559 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [37940] = 13, + sym_type_conversion, + [37319] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(571), 1, + ACTIONS(1445), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1443), 34, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(588), 1, - anon_sym_await, - STATE(565), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - ACTIONS(291), 3, + 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, - ACTIONS(301), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(576), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(589), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [38006] = 13, + 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, + [37367] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(602), 1, + ACTIONS(1449), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1447), 34, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(610), 1, - anon_sym_LBRACK, - ACTIONS(612), 1, - anon_sym_LBRACE, - ACTIONS(616), 1, - anon_sym_await, - ACTIONS(618), 1, - sym__string_start, - STATE(699), 1, - sym_string, - STATE(720), 1, - sym_primary_expression, - ACTIONS(614), 2, - sym_ellipsis, - sym_float, - ACTIONS(608), 3, + 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, - ACTIONS(600), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(604), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(796), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [38072] = 13, + 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, + [37415] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(561), 1, + ACTIONS(1453), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1451), 34, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(567), 1, - anon_sym_LBRACK, - ACTIONS(569), 1, - anon_sym_await, - STATE(693), 1, - sym_string, - STATE(706), 1, - sym_primary_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, + 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, - ACTIONS(77), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(563), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(773), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [38138] = 13, + 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, + [37463] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(561), 1, + ACTIONS(1457), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1455), 34, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(567), 1, - anon_sym_LBRACK, - ACTIONS(569), 1, - anon_sym_await, - STATE(693), 1, - sym_string, - STATE(697), 1, - sym_primary_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, + 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, - ACTIONS(77), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(563), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(773), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [38204] = 13, + 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, + [37511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(561), 1, + ACTIONS(1461), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1459), 34, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(567), 1, - anon_sym_LBRACK, - ACTIONS(569), 1, - anon_sym_await, - STATE(693), 1, - sym_string, - STATE(705), 1, - sym_primary_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, + 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, - ACTIONS(77), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(563), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(773), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [38270] = 13, + 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, + [37559] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(590), 1, + ACTIONS(1465), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1463), 34, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(596), 1, - anon_sym_LBRACK, - ACTIONS(598), 1, - anon_sym_await, - STATE(565), 1, - sym_string, - STATE(608), 1, - sym_primary_expression, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - ACTIONS(594), 3, + 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, - ACTIONS(301), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(576), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(589), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [38336] = 13, + 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, + [37607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(590), 1, + ACTIONS(1469), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1467), 34, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(596), 1, - anon_sym_LBRACK, - ACTIONS(598), 1, - anon_sym_await, - STATE(565), 1, - sym_string, - STATE(609), 1, - sym_primary_expression, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - ACTIONS(594), 3, + 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, - ACTIONS(301), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(576), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(589), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [38402] = 13, + 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, + [37655] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1473), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1471), 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, + [37703] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1477), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1475), 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, + [37751] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1465), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1463), 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, + [37799] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1481), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1479), 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, + [37847] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1485), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1483), 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, + [37895] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1489), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1487), 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, + [37943] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1453), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1451), 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, + [37991] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1493), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1491), 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, + [38039] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1497), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 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, + [38087] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1497), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 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, + [38135] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1501), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1499), 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, + [38183] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1449), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1447), 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, + [38231] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1088), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1083), 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, + [38279] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1505), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1503), 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, + [38327] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1509), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1507), 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, + [38375] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1511), 1, + anon_sym_DOT, + ACTIONS(1513), 1, + anon_sym_LPAREN, + ACTIONS(1523), 1, + anon_sym_PIPE, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_STAR_STAR, + ACTIONS(1531), 1, + anon_sym_EQ, + ACTIONS(1535), 1, + anon_sym_not, + ACTIONS(1537), 1, + anon_sym_AMP, + ACTIONS(1539), 1, + anon_sym_CARET, + ACTIONS(1543), 1, + anon_sym_is, + STATE(846), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1517), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1519), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1525), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1541), 2, + anon_sym_LT, + anon_sym_GT, + STATE(642), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1533), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1521), 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(1515), 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, + [38457] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1511), 1, + anon_sym_DOT, + ACTIONS(1513), 1, + anon_sym_LPAREN, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1531), 1, + anon_sym_as, + ACTIONS(1551), 1, + anon_sym_PIPE, + ACTIONS(1555), 1, + anon_sym_STAR_STAR, + ACTIONS(1559), 1, + anon_sym_not, + ACTIONS(1561), 1, + anon_sym_AMP, + ACTIONS(1563), 1, + anon_sym_CARET, + ACTIONS(1567), 1, + anon_sym_is, + STATE(845), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1545), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1547), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1553), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1565), 2, + anon_sym_LT, + anon_sym_GT, + STATE(642), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1557), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1549), 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(1515), 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, + [38539] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1571), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1569), 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, + [38587] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1575), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1573), 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, + [38635] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(265), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(298), 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, + [38683] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1579), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1577), 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, + [38731] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1583), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1581), 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, + [38779] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1587), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1585), 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, + [38827] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1591), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1589), 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, + [38875] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1595), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1593), 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, + [38923] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1511), 1, + anon_sym_DOT, + ACTIONS(1513), 1, + anon_sym_LPAREN, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_STAR_STAR, + STATE(642), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1599), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1597), 28, + 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_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, + [38980] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1511), 1, + anon_sym_DOT, + ACTIONS(1513), 1, + anon_sym_LPAREN, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1551), 1, + anon_sym_PIPE, + ACTIONS(1555), 1, + anon_sym_STAR_STAR, + ACTIONS(1561), 1, + anon_sym_AMP, + ACTIONS(1563), 1, + anon_sym_CARET, + ACTIONS(1545), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1547), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1553), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(642), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1557), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1603), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1601), 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, + [39051] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1511), 1, + anon_sym_DOT, + ACTIONS(1513), 1, + anon_sym_LPAREN, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1551), 1, + anon_sym_PIPE, + ACTIONS(1555), 1, + anon_sym_STAR_STAR, + ACTIONS(1561), 1, + anon_sym_AMP, + ACTIONS(1563), 1, + anon_sym_CARET, + ACTIONS(1545), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1547), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1553), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(642), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1557), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1607), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1605), 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, + [39122] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1511), 1, + anon_sym_DOT, + ACTIONS(1513), 1, + anon_sym_LPAREN, + ACTIONS(1523), 1, + anon_sym_PIPE, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_STAR_STAR, + ACTIONS(1537), 1, + anon_sym_AMP, + ACTIONS(1539), 1, + anon_sym_CARET, + ACTIONS(1517), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1519), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1525), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(642), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1533), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1607), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1605), 18, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + 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, + sym_type_conversion, + [39193] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1511), 1, + anon_sym_DOT, + ACTIONS(1513), 1, + anon_sym_LPAREN, + ACTIONS(1523), 1, + anon_sym_PIPE, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_STAR_STAR, + ACTIONS(1537), 1, + anon_sym_AMP, + ACTIONS(1539), 1, + anon_sym_CARET, + ACTIONS(1517), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1519), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1525), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(642), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1533), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1611), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1609), 18, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + 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, + sym_type_conversion, + [39264] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1511), 1, + anon_sym_DOT, + ACTIONS(1513), 1, + anon_sym_LPAREN, + ACTIONS(1523), 1, + anon_sym_PIPE, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_STAR_STAR, + ACTIONS(1537), 1, + anon_sym_AMP, + ACTIONS(1539), 1, + anon_sym_CARET, + ACTIONS(1517), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1519), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1525), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(642), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1533), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1603), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1601), 18, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + 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, + sym_type_conversion, + [39335] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1511), 1, + anon_sym_DOT, + ACTIONS(1513), 1, + anon_sym_LPAREN, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1555), 1, + anon_sym_STAR_STAR, + ACTIONS(1545), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1547), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1553), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(642), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1557), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1599), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1597), 21, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_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, + [39400] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1511), 1, + anon_sym_DOT, + ACTIONS(1513), 1, + anon_sym_LPAREN, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_STAR_STAR, + STATE(642), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1615), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1613), 28, + 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_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, + [39457] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1511), 1, + anon_sym_DOT, + ACTIONS(1513), 1, + anon_sym_LPAREN, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1555), 1, + anon_sym_STAR_STAR, + STATE(642), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1619), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1617), 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_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, + [39514] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1511), 1, + anon_sym_DOT, + ACTIONS(1513), 1, + anon_sym_LPAREN, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_STAR_STAR, + STATE(642), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1619), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1617), 28, + 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_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, + [39571] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1511), 1, + anon_sym_DOT, + ACTIONS(1513), 1, + anon_sym_LPAREN, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_STAR_STAR, + STATE(642), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1599), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1597), 28, + 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_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, + [39628] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1511), 1, + anon_sym_DOT, + ACTIONS(1513), 1, + anon_sym_LPAREN, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1551), 1, + anon_sym_PIPE, + ACTIONS(1555), 1, + anon_sym_STAR_STAR, + ACTIONS(1561), 1, + anon_sym_AMP, + ACTIONS(1563), 1, + anon_sym_CARET, + ACTIONS(1545), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1547), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1553), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(642), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1557), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1611), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1609), 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, + [39699] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1511), 1, + anon_sym_DOT, + ACTIONS(1513), 1, + anon_sym_LPAREN, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_STAR_STAR, + ACTIONS(1537), 1, + anon_sym_AMP, + ACTIONS(1539), 1, + anon_sym_CARET, + ACTIONS(1517), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1519), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1525), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(642), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1533), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1599), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1597), 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, + 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_type_conversion, + [39768] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1511), 1, + anon_sym_DOT, + ACTIONS(1513), 1, + anon_sym_LPAREN, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1555), 1, + anon_sym_STAR_STAR, + STATE(642), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1615), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1613), 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_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, + [39825] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1511), 1, + anon_sym_DOT, + ACTIONS(1513), 1, + anon_sym_LPAREN, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1555), 1, + anon_sym_STAR_STAR, + STATE(642), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1599), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1597), 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_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, + [39882] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1511), 1, + anon_sym_DOT, + ACTIONS(1513), 1, + anon_sym_LPAREN, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1555), 1, + anon_sym_STAR_STAR, + ACTIONS(1545), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1553), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(642), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1557), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1599), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1597), 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_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_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [39945] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1511), 1, + anon_sym_DOT, + ACTIONS(1513), 1, + anon_sym_LPAREN, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_STAR_STAR, + ACTIONS(1517), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1525), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(642), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1533), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1599), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1597), 23, + 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_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, + [40008] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1511), 1, + anon_sym_DOT, + ACTIONS(1513), 1, + anon_sym_LPAREN, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1555), 1, + anon_sym_STAR_STAR, + ACTIONS(1563), 1, + anon_sym_CARET, + ACTIONS(1545), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1547), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1553), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(642), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1557), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1599), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1597), 20, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_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, + [40075] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1511), 1, + anon_sym_DOT, + ACTIONS(1513), 1, + anon_sym_LPAREN, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_STAR_STAR, + ACTIONS(1517), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1519), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1525), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(642), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1533), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1599), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1597), 21, + 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, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [40140] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1511), 1, + anon_sym_DOT, + ACTIONS(1513), 1, + anon_sym_LPAREN, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_STAR_STAR, + ACTIONS(1539), 1, + anon_sym_CARET, + ACTIONS(1517), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1519), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1525), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(642), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1533), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1599), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1597), 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, + [40207] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1511), 1, + anon_sym_DOT, + ACTIONS(1513), 1, + anon_sym_LPAREN, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1555), 1, + anon_sym_STAR_STAR, + ACTIONS(1561), 1, + anon_sym_AMP, + ACTIONS(1563), 1, + anon_sym_CARET, + ACTIONS(1545), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1547), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1553), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(642), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1557), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1599), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1597), 19, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_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, + [40276] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1511), 1, + anon_sym_DOT, + ACTIONS(1513), 1, + anon_sym_LPAREN, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1555), 1, + anon_sym_STAR_STAR, + ACTIONS(1545), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(642), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1557), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1599), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1597), 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, + [40337] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1511), 1, + anon_sym_DOT, + ACTIONS(1513), 1, + anon_sym_LPAREN, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1555), 1, + anon_sym_STAR_STAR, + STATE(642), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1599), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1597), 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_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, + [40394] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1511), 1, + anon_sym_DOT, + ACTIONS(1513), 1, + anon_sym_LPAREN, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_STAR_STAR, + ACTIONS(1517), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(642), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1533), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1599), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1597), 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, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [40455] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1621), 1, + sym__template_string_start, + STATE(686), 2, + sym_template_string, + aux_sym_concatenated_template_string_repeat1, + ACTIONS(1389), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1387), 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, + [40505] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1090), 1, + anon_sym_COLON_EQ, + ACTIONS(1088), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1083), 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_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, + [40553] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1624), 1, + sym__string_start, + STATE(688), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1404), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1402), 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, + [40603] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(627), 1, + sym__template_string_start, + STATE(686), 2, + sym_template_string, + aux_sym_concatenated_template_string_repeat1, + ACTIONS(1396), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1394), 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, + [40653] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1158), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1153), 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_COLON, + anon_sym_else, + 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, + [40699] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(625), 1, + sym__string_start, + STATE(688), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1400), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1398), 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, + [40749] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1627), 1, + anon_sym_COLON_EQ, + ACTIONS(1088), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1083), 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_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, + [40797] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(599), 1, + anon_sym_COLON_EQ, + ACTIONS(265), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(298), 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_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, + [40845] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(585), 1, + anon_sym_COLON_EQ, + ACTIONS(265), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(298), 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_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, + [40893] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1173), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1168), 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_COLON, + anon_sym_else, + 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, + [40939] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(590), 1, + ACTIONS(1629), 1, + sym__template_string_start, + STATE(696), 2, + sym_template_string, + aux_sym_concatenated_template_string_repeat1, + ACTIONS(1389), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1387), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(596), 1, - anon_sym_LBRACK, - ACTIONS(598), 1, - anon_sym_await, - STATE(565), 1, - sym_string, - STATE(611), 1, - sym_primary_expression, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - ACTIONS(594), 3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(301), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(576), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(589), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [38468] = 13, + 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, + [40988] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(590), 1, + ACTIONS(1158), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1153), 32, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(596), 1, - anon_sym_LBRACK, - ACTIONS(598), 1, - anon_sym_await, - STATE(565), 1, - sym_string, - STATE(612), 1, - sym_primary_expression, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - ACTIONS(594), 3, + 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_TILDE, - ACTIONS(301), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(576), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(589), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [38534] = 13, + 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, + [41033] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, + ACTIONS(81), 1, sym__string_start, - ACTIONS(590), 1, + STATE(699), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1088), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1083), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(596), 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(598), 1, - anon_sym_await, - STATE(565), 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, + [41082] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 1, + sym__string_start, + STATE(704), 2, sym_string, - STATE(613), 1, - sym_primary_expression, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - ACTIONS(594), 3, + aux_sym_concatenated_string_repeat1, + ACTIONS(1400), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1398), 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_TILDE, - ACTIONS(301), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(576), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(589), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [38600] = 13, + 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, + [41131] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(590), 1, + ACTIONS(83), 1, + sym__template_string_start, + STATE(701), 2, + sym_template_string, + aux_sym_concatenated_template_string_repeat1, + ACTIONS(1088), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1083), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(596), 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(598), 1, - anon_sym_await, - STATE(565), 1, - sym_string, - STATE(614), 1, - sym_primary_expression, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - ACTIONS(594), 3, + 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, + [41180] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + sym__template_string_start, + STATE(696), 2, + sym_template_string, + aux_sym_concatenated_template_string_repeat1, + ACTIONS(1396), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1394), 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_TILDE, - ACTIONS(301), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(576), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(589), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [38666] = 13, + 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, + [41229] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, - anon_sym_LBRACE, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(590), 1, + ACTIONS(1531), 1, + anon_sym_EQ, + ACTIONS(1632), 1, + anon_sym_DOT, + ACTIONS(1634), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(1642), 1, + anon_sym_PIPE, + ACTIONS(1646), 1, anon_sym_LBRACK, - ACTIONS(598), 1, - anon_sym_await, - STATE(565), 1, - sym_string, - STATE(615), 1, - sym_primary_expression, - ACTIONS(299), 2, - sym_ellipsis, - sym_float, - ACTIONS(594), 3, + ACTIONS(1648), 1, + anon_sym_STAR_STAR, + ACTIONS(1652), 1, + anon_sym_not, + ACTIONS(1654), 1, + anon_sym_AMP, + ACTIONS(1656), 1, + anon_sym_CARET, + ACTIONS(1660), 1, + anon_sym_is, + STATE(850), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1636), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1638), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1644), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(301), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(576), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(589), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, + ACTIONS(1658), 2, + anon_sym_LT, + anon_sym_GT, + STATE(788), 2, + sym_argument_list, sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [38732] = 13, + ACTIONS(1650), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1640), 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(1515), 7, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_if, + anon_sym_and, + anon_sym_or, + sym__semicolon, + [41308] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(561), 1, + ACTIONS(1173), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1168), 32, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(567), 1, - anon_sym_LBRACK, - ACTIONS(569), 1, - anon_sym_await, - STATE(693), 1, - sym_string, - STATE(703), 1, - sym_primary_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, + 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_TILDE, - ACTIONS(77), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(563), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(773), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [38798] = 5, + 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, + [41353] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(1662), 1, sym__string_start, - STATE(692), 2, + STATE(704), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1372), 5, + ACTIONS(1404), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1370), 29, + ACTIONS(1402), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -56787,140 +57948,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [38847] = 20, + [41402] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_EQ, - ACTIONS(1598), 1, + ACTIONS(1632), 1, anon_sym_DOT, - ACTIONS(1600), 1, + ACTIONS(1634), 1, anon_sym_LPAREN, - ACTIONS(1608), 1, - anon_sym_PIPE, - ACTIONS(1612), 1, + ACTIONS(1646), 1, anon_sym_LBRACK, - ACTIONS(1614), 1, + ACTIONS(1648), 1, anon_sym_STAR_STAR, - ACTIONS(1618), 1, - anon_sym_not, - ACTIONS(1620), 1, - anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(1656), 1, anon_sym_CARET, - ACTIONS(1626), 1, - anon_sym_is, - STATE(837), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(1602), 2, + ACTIONS(1636), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1604), 2, + ACTIONS(1638), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1610), 2, + ACTIONS(1644), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1624), 2, - anon_sym_LT, - anon_sym_GT, - STATE(747), 2, + STATE(788), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1616), 3, + ACTIONS(1599), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1650), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1606), 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(1457), 7, + ACTIONS(1597), 17, sym__newline, anon_sym_from, anon_sym_COMMA, anon_sym_if, + 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, sym__semicolon, - [38926] = 3, + [41466] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1109), 5, - anon_sym_as, + ACTIONS(1632), 1, + anon_sym_DOT, + ACTIONS(1634), 1, + anon_sym_LPAREN, + ACTIONS(1642), 1, + anon_sym_PIPE, + ACTIONS(1646), 1, + anon_sym_LBRACK, + ACTIONS(1648), 1, + anon_sym_STAR_STAR, + ACTIONS(1654), 1, + anon_sym_AMP, + ACTIONS(1656), 1, + anon_sym_CARET, + ACTIONS(1636), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1638), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1644), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(788), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1607), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1104), 32, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(1650), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1605), 15, + sym__newline, + anon_sym_from, 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, - [38971] = 3, + sym__semicolon, + [41534] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1152), 5, - anon_sym_as, + ACTIONS(1632), 1, + anon_sym_DOT, + ACTIONS(1634), 1, + anon_sym_LPAREN, + ACTIONS(1646), 1, + anon_sym_LBRACK, + ACTIONS(1648), 1, + anon_sym_STAR_STAR, + ACTIONS(1636), 2, anon_sym_STAR, anon_sym_SLASH, + STATE(788), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1599), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1147), 32, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(1650), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1597), 22, + sym__newline, + anon_sym_from, 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, @@ -56930,25 +58099,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [39016] = 5, + sym__semicolon, + [41592] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1628), 1, - sym__string_start, - STATE(692), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1376), 5, + ACTIONS(1632), 1, + anon_sym_DOT, + ACTIONS(1634), 1, + anon_sym_LPAREN, + ACTIONS(1646), 1, + anon_sym_LBRACK, + ACTIONS(1648), 1, + anon_sym_STAR_STAR, + STATE(788), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1599), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1374), 29, + ACTIONS(1597), 25, sym__newline, - anon_sym_DOT, anon_sym_from, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -56956,8 +58130,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -56974,33 +58146,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [39065] = 5, + [41646] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - sym__string_start, - STATE(688), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1021), 5, + ACTIONS(1427), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1016), 29, - sym__newline, + ACTIONS(1425), 32, + sym__string_start, 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, @@ -57017,43 +58187,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [39114] = 14, + [41690] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1598), 1, + ACTIONS(1632), 1, anon_sym_DOT, - ACTIONS(1600), 1, + ACTIONS(1634), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1646), 1, anon_sym_LBRACK, - ACTIONS(1614), 1, + ACTIONS(1648), 1, anon_sym_STAR_STAR, - ACTIONS(1620), 1, - anon_sym_AMP, - ACTIONS(1622), 1, - anon_sym_CARET, - ACTIONS(1602), 2, + ACTIONS(1636), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1604), 2, + ACTIONS(1638), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1610), 2, + ACTIONS(1644), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(747), 2, + STATE(788), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1557), 3, + ACTIONS(1599), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1616), 3, + ACTIONS(1650), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1555), 16, + ACTIONS(1597), 18, sym__newline, anon_sym_from, anon_sym_COMMA, @@ -57063,6 +58228,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -57070,32 +58237,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [39180] = 3, + [41752] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1395), 4, + ACTIONS(1632), 1, + anon_sym_DOT, + ACTIONS(1634), 1, + anon_sym_LPAREN, + ACTIONS(1646), 1, + anon_sym_LBRACK, + ACTIONS(1648), 1, + anon_sym_STAR_STAR, + STATE(788), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1615), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1393), 32, - sym__string_start, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(1613), 25, + 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, 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, @@ -57111,35 +58282,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [39224] = 11, + sym__semicolon, + [41806] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1598), 1, + ACTIONS(1632), 1, anon_sym_DOT, - ACTIONS(1600), 1, + ACTIONS(1634), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1646), 1, anon_sym_LBRACK, - ACTIONS(1614), 1, + ACTIONS(1648), 1, anon_sym_STAR_STAR, - ACTIONS(1602), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1610), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(747), 2, + STATE(788), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1557), 3, + ACTIONS(1619), 5, + anon_sym_STAR, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1616), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1555), 20, + ACTIONS(1617), 25, sym__newline, anon_sym_from, anon_sym_COMMA, @@ -57147,9 +58311,14 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -57160,44 +58329,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [39284] = 15, + [41860] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1598), 1, + ACTIONS(1632), 1, anon_sym_DOT, - ACTIONS(1600), 1, + ACTIONS(1634), 1, anon_sym_LPAREN, - ACTIONS(1608), 1, + ACTIONS(1642), 1, anon_sym_PIPE, - ACTIONS(1612), 1, + ACTIONS(1646), 1, anon_sym_LBRACK, - ACTIONS(1614), 1, + ACTIONS(1648), 1, anon_sym_STAR_STAR, - ACTIONS(1620), 1, + ACTIONS(1654), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(1656), 1, anon_sym_CARET, - ACTIONS(1602), 2, + ACTIONS(1636), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1604), 2, + ACTIONS(1638), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1610), 2, + ACTIONS(1644), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(747), 2, + STATE(788), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1577), 3, + ACTIONS(1611), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1616), 3, + ACTIONS(1650), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1575), 15, + ACTIONS(1609), 15, sym__newline, anon_sym_from, anon_sym_COMMA, @@ -57213,77 +58382,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [39352] = 19, + [41928] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1631), 1, + ACTIONS(1632), 1, anon_sym_DOT, - ACTIONS(1633), 1, + ACTIONS(1634), 1, anon_sym_LPAREN, - ACTIONS(1641), 1, - anon_sym_PIPE, - ACTIONS(1645), 1, + ACTIONS(1646), 1, anon_sym_LBRACK, - ACTIONS(1647), 1, + ACTIONS(1648), 1, anon_sym_STAR_STAR, - ACTIONS(1651), 1, - anon_sym_not, - ACTIONS(1653), 1, + ACTIONS(1654), 1, anon_sym_AMP, - ACTIONS(1655), 1, + ACTIONS(1656), 1, anon_sym_CARET, - ACTIONS(1659), 1, - anon_sym_is, - STATE(843), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(1635), 2, + ACTIONS(1636), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1637), 2, + ACTIONS(1638), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1643), 2, + ACTIONS(1644), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1657), 2, - anon_sym_LT, - anon_sym_GT, - STATE(799), 2, + STATE(788), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1649), 3, + ACTIONS(1599), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1650), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1639), 6, + ACTIONS(1597), 16, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_if, anon_sym_in, + anon_sym_PIPE, + 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, - ACTIONS(1457), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_and, - anon_sym_or, - [39428] = 5, + anon_sym_is, + sym__semicolon, + [41994] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(618), 1, - sym__string_start, - STATE(643), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1021), 4, + ACTIONS(1423), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1016), 29, + ACTIONS(1421), 32, + sym__template_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -57297,6 +58457,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -57313,15 +58475,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [39476] = 3, + [42038] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1383), 4, + ACTIONS(1419), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 32, + ACTIONS(1417), 32, sym__string_start, anon_sym_DOT, anon_sym_LPAREN, @@ -57354,44 +58516,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [39520] = 15, + [42082] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1598), 1, + ACTIONS(1632), 1, anon_sym_DOT, - ACTIONS(1600), 1, + ACTIONS(1634), 1, anon_sym_LPAREN, - ACTIONS(1608), 1, + ACTIONS(1642), 1, anon_sym_PIPE, - ACTIONS(1612), 1, + ACTIONS(1646), 1, anon_sym_LBRACK, - ACTIONS(1614), 1, + ACTIONS(1648), 1, anon_sym_STAR_STAR, - ACTIONS(1620), 1, + ACTIONS(1654), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(1656), 1, anon_sym_CARET, - ACTIONS(1602), 2, + ACTIONS(1636), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1604), 2, + ACTIONS(1638), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1610), 2, + ACTIONS(1644), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(747), 2, + STATE(788), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1581), 3, + ACTIONS(1603), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1616), 3, + ACTIONS(1650), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1579), 15, + ACTIONS(1601), 15, sym__newline, anon_sym_from, anon_sym_COMMA, @@ -57407,135 +58569,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [39588] = 8, + [42150] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1598), 1, + ACTIONS(1665), 1, anon_sym_DOT, - ACTIONS(1600), 1, + ACTIONS(1667), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1675), 1, + anon_sym_PIPE, + ACTIONS(1679), 1, anon_sym_LBRACK, - ACTIONS(1614), 1, + ACTIONS(1681), 1, anon_sym_STAR_STAR, - STATE(747), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1557), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1555), 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, + ACTIONS(1685), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(1687), 1, anon_sym_AMP, + ACTIONS(1689), 1, 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, + ACTIONS(1693), 1, anon_sym_is, - sym__semicolon, - [39642] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1598), 1, - anon_sym_DOT, - ACTIONS(1600), 1, - anon_sym_LPAREN, - ACTIONS(1608), 1, - anon_sym_PIPE, - ACTIONS(1612), 1, - anon_sym_LBRACK, - ACTIONS(1614), 1, - anon_sym_STAR_STAR, - ACTIONS(1620), 1, - anon_sym_AMP, - ACTIONS(1622), 1, - anon_sym_CARET, - ACTIONS(1602), 2, + STATE(863), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1669), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1604), 2, + ACTIONS(1671), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1610), 2, + ACTIONS(1677), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(747), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1565), 3, - anon_sym_EQ, + ACTIONS(1691), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1616), 3, + STATE(813), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1683), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1563), 15, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_if, + ACTIONS(1673), 6, 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, - [39710] = 8, + ACTIONS(1515), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + [42226] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1598), 1, - anon_sym_DOT, - ACTIONS(1600), 1, - anon_sym_LPAREN, - ACTIONS(1612), 1, - anon_sym_LBRACK, - ACTIONS(1614), 1, - anon_sym_STAR_STAR, - STATE(747), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1571), 5, + ACTIONS(1437), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1569), 25, - sym__newline, - anon_sym_from, + ACTIONS(1435), 32, + sym__template_string_start, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_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, @@ -57551,84 +58667,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [39764] = 13, + [42270] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1598), 1, - anon_sym_DOT, - ACTIONS(1600), 1, - anon_sym_LPAREN, - ACTIONS(1612), 1, - anon_sym_LBRACK, - ACTIONS(1614), 1, - anon_sym_STAR_STAR, - ACTIONS(1622), 1, - anon_sym_CARET, - ACTIONS(1602), 2, + ACTIONS(625), 1, + sym__string_start, + STATE(691), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1088), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1604), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1610), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(747), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1557), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1616), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1555), 17, - sym__newline, - anon_sym_from, + ACTIONS(1083), 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, - sym__semicolon, - [39828] = 10, + [42318] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1598), 1, + ACTIONS(1632), 1, anon_sym_DOT, - ACTIONS(1600), 1, + ACTIONS(1634), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1646), 1, anon_sym_LBRACK, - ACTIONS(1614), 1, + ACTIONS(1648), 1, anon_sym_STAR_STAR, - ACTIONS(1602), 2, + ACTIONS(1636), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(747), 2, + ACTIONS(1644), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(788), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1557), 3, + ACTIONS(1599), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1616), 3, + ACTIONS(1650), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1555), 22, + ACTIONS(1597), 20, sym__newline, anon_sym_from, anon_sym_COMMA, @@ -57636,8 +58746,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_in, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, @@ -57651,77 +58759,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [39886] = 12, + [42378] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1598), 1, - anon_sym_DOT, - ACTIONS(1600), 1, - anon_sym_LPAREN, - ACTIONS(1612), 1, - anon_sym_LBRACK, - ACTIONS(1614), 1, - anon_sym_STAR_STAR, - ACTIONS(1602), 2, + ACTIONS(627), 1, + sym__template_string_start, + STATE(689), 2, + sym_template_string, + aux_sym_concatenated_template_string_repeat1, + ACTIONS(1088), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1604), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1610), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(747), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1557), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1616), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1555), 18, - sym__newline, - anon_sym_from, + ACTIONS(1083), 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, - sym__semicolon, - [39948] = 8, + [42426] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1598), 1, + ACTIONS(1632), 1, anon_sym_DOT, - ACTIONS(1600), 1, + ACTIONS(1634), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, + ACTIONS(1646), 1, anon_sym_LBRACK, - ACTIONS(1614), 1, + ACTIONS(1648), 1, anon_sym_STAR_STAR, - STATE(747), 2, + STATE(788), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1557), 5, + ACTIONS(1599), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 25, + ACTIONS(1597), 25, sym__newline, anon_sym_from, anon_sym_COMMA, @@ -57747,73 +58848,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [40002] = 8, + [42480] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1598), 1, + ACTIONS(1153), 3, anon_sym_DOT, - ACTIONS(1600), 1, anon_sym_LPAREN, - ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1614), 1, - anon_sym_STAR_STAR, - STATE(747), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1585), 5, + ACTIONS(1158), 13, anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1583), 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_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_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [40056] = 5, + ACTIONS(1160), 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, + [42525] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1596), 1, - anon_sym_COLON_EQ, - ACTIONS(1661), 1, - anon_sym_EQ, - ACTIONS(1021), 4, + ACTIONS(1437), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1016), 29, + ACTIONS(1435), 30, + sym__newline, + sym__template_string_start, 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, @@ -57835,36 +58928,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [40103] = 8, + sym__semicolon, + [42568] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1631), 1, - anon_sym_DOT, - ACTIONS(1633), 1, - anon_sym_LPAREN, - ACTIONS(1645), 1, - anon_sym_LBRACK, - ACTIONS(1647), 1, - anon_sym_STAR_STAR, - STATE(799), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1557), 4, + ACTIONS(1423), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 25, - anon_sym_RPAREN, + ACTIONS(1421), 30, + sym__newline, + sym__template_string_start, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_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, @@ -57880,27 +58968,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [40156] = 5, + sym__semicolon, + [42611] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(592), 1, + ACTIONS(278), 1, anon_sym_COLON_EQ, - ACTIONS(620), 1, - anon_sym_EQ, - ACTIONS(260), 4, + ACTIONS(265), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(293), 29, + ACTIONS(298), 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, @@ -57922,69 +59009,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [40203] = 11, + sym__semicolon, + [42656] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1631), 1, - anon_sym_DOT, - ACTIONS(1633), 1, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(1695), 1, + sym_identifier, + ACTIONS(1697), 1, anon_sym_LPAREN, - ACTIONS(1645), 1, - anon_sym_LBRACK, - ACTIONS(1647), 1, - anon_sym_STAR_STAR, - ACTIONS(1557), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1635), 2, + ACTIONS(1699), 1, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1643), 2, + ACTIONS(1701), 1, anon_sym_DASH, - anon_sym_PLUS, - STATE(799), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1649), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1555), 20, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [40262] = 5, + ACTIONS(1703), 1, + sym_match_wildcard_pattern, + ACTIONS(1705), 1, + anon_sym_LBRACK, + ACTIONS(1707), 1, + anon_sym_LBRACE, + ACTIONS(1709), 1, + sym_integer, + ACTIONS(1711), 1, + sym_float, + STATE(891), 1, + sym_template_string, + STATE(892), 1, + sym_string, + STATE(1419), 1, + sym_pattern_class_name, + STATE(977), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1014), 2, + sym__match_or_pattern, + sym_match_or_pattern, + STATE(1183), 2, + sym__match_patterns, + sym_open_sequence_match_pattern, + STATE(1184), 2, + sym__match_pattern, + sym_match_as_pattern, + STATE(1362), 2, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + ACTIONS(1713), 3, + sym_true, + sym_false, + sym_none, + STATE(980), 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, + [42737] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(592), 1, + ACTIONS(599), 1, anon_sym_COLON_EQ, - ACTIONS(265), 3, + ACTIONS(270), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(260), 4, + ACTIONS(265), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(293), 27, + ACTIONS(298), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -58012,18 +59111,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [40309] = 4, + [42784] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(273), 1, + ACTIONS(1145), 1, anon_sym_COLON_EQ, - ACTIONS(260), 5, + ACTIONS(1088), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(293), 29, + ACTIONS(1083), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -58053,14 +59152,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [40354] = 4, + [42829] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(293), 3, + ACTIONS(298), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(260), 13, + ACTIONS(265), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_PIPE, @@ -58074,7 +59173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(586), 19, + ACTIONS(302), 19, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -58094,133 +59193,236 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [40399] = 3, + [42874] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1383), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1381), 30, - sym__newline, - sym__string_start, + ACTIONS(298), 3, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(265), 13, + anon_sym_STAR, 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_SLASH, 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, - [40442] = 13, + ACTIONS(593), 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, + [42919] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(1695), 1, + sym_identifier, + ACTIONS(1697), 1, + anon_sym_LPAREN, + ACTIONS(1699), 1, + anon_sym_STAR, + ACTIONS(1701), 1, + anon_sym_DASH, + ACTIONS(1703), 1, + sym_match_wildcard_pattern, + ACTIONS(1705), 1, + anon_sym_LBRACK, + ACTIONS(1707), 1, + anon_sym_LBRACE, + ACTIONS(1709), 1, + sym_integer, + ACTIONS(1711), 1, + sym_float, + STATE(891), 1, + sym_template_string, + STATE(892), 1, + sym_string, + STATE(1419), 1, + sym_pattern_class_name, + STATE(977), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1014), 2, + sym__match_or_pattern, + sym_match_or_pattern, + STATE(1184), 2, + sym__match_pattern, + sym_match_as_pattern, + STATE(1277), 2, + sym__match_patterns, + sym_open_sequence_match_pattern, + STATE(1362), 2, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + ACTIONS(1713), 3, + sym_true, + sym_false, + sym_none, + STATE(980), 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, + [43000] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1631), 1, + ACTIONS(1665), 1, anon_sym_DOT, - ACTIONS(1633), 1, + ACTIONS(1667), 1, anon_sym_LPAREN, - ACTIONS(1645), 1, + ACTIONS(1675), 1, + anon_sym_PIPE, + ACTIONS(1679), 1, anon_sym_LBRACK, - ACTIONS(1647), 1, + ACTIONS(1681), 1, anon_sym_STAR_STAR, - ACTIONS(1655), 1, + ACTIONS(1687), 1, + anon_sym_AMP, + ACTIONS(1689), 1, anon_sym_CARET, - ACTIONS(1557), 2, + ACTIONS(1611), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1635), 2, + ACTIONS(1669), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1637), 2, + ACTIONS(1671), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1643), 2, + ACTIONS(1677), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(799), 2, + STATE(813), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1649), 3, + ACTIONS(1683), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1555), 17, + ACTIONS(1609), 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, - 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, - [40505] = 15, + [43067] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1083), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1088), 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(1149), 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, + [43112] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1631), 1, + ACTIONS(1665), 1, anon_sym_DOT, - ACTIONS(1633), 1, + ACTIONS(1667), 1, anon_sym_LPAREN, - ACTIONS(1641), 1, + ACTIONS(1675), 1, anon_sym_PIPE, - ACTIONS(1645), 1, + ACTIONS(1679), 1, anon_sym_LBRACK, - ACTIONS(1647), 1, + ACTIONS(1681), 1, anon_sym_STAR_STAR, - ACTIONS(1653), 1, + ACTIONS(1687), 1, anon_sym_AMP, - ACTIONS(1655), 1, + ACTIONS(1689), 1, anon_sym_CARET, - ACTIONS(1577), 2, + ACTIONS(1607), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1635), 2, + ACTIONS(1669), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1637), 2, + ACTIONS(1671), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1643), 2, + ACTIONS(1677), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(799), 2, + STATE(813), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1649), 3, + ACTIONS(1683), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1575), 15, + ACTIONS(1605), 15, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -58236,111 +59438,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [40572] = 8, + [43179] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(1695), 1, + sym_identifier, + ACTIONS(1697), 1, + anon_sym_LPAREN, + ACTIONS(1699), 1, + anon_sym_STAR, + ACTIONS(1701), 1, + anon_sym_DASH, + ACTIONS(1703), 1, + sym_match_wildcard_pattern, + ACTIONS(1705), 1, + anon_sym_LBRACK, + ACTIONS(1707), 1, + anon_sym_LBRACE, + ACTIONS(1709), 1, + sym_integer, + ACTIONS(1711), 1, + sym_float, + ACTIONS(1715), 1, + anon_sym_if, + ACTIONS(1717), 1, + anon_sym_COLON, + STATE(891), 1, + sym_template_string, + STATE(892), 1, + sym_string, + STATE(1419), 1, + sym_pattern_class_name, + STATE(977), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1014), 2, + sym__match_or_pattern, + sym_match_or_pattern, + ACTIONS(1713), 3, + sym_true, + sym_false, + sym_none, + STATE(1089), 4, + sym__match_pattern, + sym_match_as_pattern, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + STATE(980), 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, + [43260] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1631), 1, + ACTIONS(1168), 3, anon_sym_DOT, - ACTIONS(1633), 1, anon_sym_LPAREN, - ACTIONS(1645), 1, anon_sym_LBRACK, - ACTIONS(1647), 1, - anon_sym_STAR_STAR, - STATE(799), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1571), 4, + ACTIONS(1173), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1569), 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_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_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [40625] = 15, + ACTIONS(1175), 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, + [43305] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1631), 1, + ACTIONS(1665), 1, anon_sym_DOT, - ACTIONS(1633), 1, + ACTIONS(1667), 1, anon_sym_LPAREN, - ACTIONS(1641), 1, - anon_sym_PIPE, - ACTIONS(1645), 1, + ACTIONS(1679), 1, anon_sym_LBRACK, - ACTIONS(1647), 1, + ACTIONS(1681), 1, anon_sym_STAR_STAR, - ACTIONS(1653), 1, - anon_sym_AMP, - ACTIONS(1655), 1, - anon_sym_CARET, - ACTIONS(1581), 2, + ACTIONS(1599), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1635), 2, + ACTIONS(1669), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1637), 2, + ACTIONS(1671), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1643), 2, + ACTIONS(1677), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(799), 2, + STATE(813), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1649), 3, + ACTIONS(1683), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1579), 15, + ACTIONS(1597), 18, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [40692] = 4, + [43366] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1016), 3, + ACTIONS(1083), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(1021), 13, + ACTIONS(1088), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_PIPE, @@ -58354,7 +59608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1079), 19, + ACTIONS(1094), 19, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -58374,71 +59628,269 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [40737] = 4, + [43411] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1665), 1, + anon_sym_DOT, + ACTIONS(1667), 1, + anon_sym_LPAREN, + ACTIONS(1679), 1, + anon_sym_LBRACK, + ACTIONS(1681), 1, + anon_sym_STAR_STAR, + ACTIONS(1689), 1, + anon_sym_CARET, + ACTIONS(1599), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1669), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1671), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1677), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(813), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1683), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1597), 17, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [43474] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1665), 1, + anon_sym_DOT, + ACTIONS(1667), 1, + anon_sym_LPAREN, + ACTIONS(1679), 1, + anon_sym_LBRACK, + ACTIONS(1681), 1, + anon_sym_STAR_STAR, + STATE(813), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1599), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1597), 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, + [43527] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1419), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1417), 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_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, + [43570] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1665), 1, + anon_sym_DOT, + ACTIONS(1667), 1, + anon_sym_LPAREN, + ACTIONS(1679), 1, + anon_sym_LBRACK, + ACTIONS(1681), 1, + anon_sym_STAR_STAR, + ACTIONS(1599), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1669), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(813), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1683), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1597), 22, + 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_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, + [43627] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1104), 3, + ACTIONS(1665), 1, anon_sym_DOT, + ACTIONS(1667), 1, anon_sym_LPAREN, + ACTIONS(1679), 1, anon_sym_LBRACK, - ACTIONS(1109), 13, + ACTIONS(1681), 1, + anon_sym_STAR_STAR, + ACTIONS(1687), 1, + anon_sym_AMP, + ACTIONS(1689), 1, + anon_sym_CARET, + ACTIONS(1599), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1669), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1671), 2, anon_sym_GT_GT, - anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(1677), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR_STAR, + STATE(813), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1683), 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(1111), 19, + ACTIONS(1597), 16, 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, - [40782] = 3, + anon_sym_PIPE, + 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, + [43692] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1395), 5, + ACTIONS(1665), 1, + anon_sym_DOT, + ACTIONS(1667), 1, + anon_sym_LPAREN, + ACTIONS(1679), 1, + anon_sym_LBRACK, + ACTIONS(1681), 1, + anon_sym_STAR_STAR, + STATE(813), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1619), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1393), 30, - sym__newline, - sym__string_start, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(1617), 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, @@ -58454,24 +59906,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [40825] = 5, + [43745] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1596), 1, + ACTIONS(599), 1, anon_sym_COLON_EQ, - ACTIONS(1072), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1021), 4, + ACTIONS(629), 1, + anon_sym_EQ, + ACTIONS(265), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1016), 27, + ACTIONS(298), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -58497,67 +59948,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [40872] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(293), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(260), 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(297), 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, - [40917] = 8, + [43792] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1631), 1, + ACTIONS(1665), 1, anon_sym_DOT, - ACTIONS(1633), 1, + ACTIONS(1667), 1, anon_sym_LPAREN, - ACTIONS(1645), 1, + ACTIONS(1679), 1, anon_sym_LBRACK, - ACTIONS(1647), 1, + ACTIONS(1681), 1, anon_sym_STAR_STAR, - STATE(799), 2, + STATE(813), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1585), 4, + ACTIONS(1615), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1583), 25, + ACTIONS(1613), 25, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -58583,84 +59993,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [40970] = 4, + [43845] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1016), 3, + ACTIONS(1627), 1, + anon_sym_COLON_EQ, + ACTIONS(1719), 1, + anon_sym_EQ, + ACTIONS(1088), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1083), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1021), 13, - anon_sym_STAR, + 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_LBRACK, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_SLASH, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1027), 19, - anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [43892] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(1695), 1, + sym_identifier, + ACTIONS(1697), 1, + anon_sym_LPAREN, + ACTIONS(1699), 1, + anon_sym_STAR, + ACTIONS(1701), 1, + anon_sym_DASH, + ACTIONS(1703), 1, + sym_match_wildcard_pattern, + ACTIONS(1705), 1, + anon_sym_LBRACK, + ACTIONS(1707), 1, + anon_sym_LBRACE, + ACTIONS(1709), 1, + sym_integer, + ACTIONS(1711), 1, + sym_float, + ACTIONS(1721), 1, + anon_sym_if, + ACTIONS(1723), 1, 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, - [41015] = 15, + STATE(891), 1, + sym_template_string, + STATE(892), 1, + sym_string, + STATE(1419), 1, + sym_pattern_class_name, + STATE(977), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1014), 2, + sym__match_or_pattern, + sym_match_or_pattern, + ACTIONS(1713), 3, + sym_true, + sym_false, + sym_none, + STATE(1089), 4, + sym__match_pattern, + sym_match_as_pattern, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + STATE(980), 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, + [43973] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1631), 1, + ACTIONS(1665), 1, anon_sym_DOT, - ACTIONS(1633), 1, + ACTIONS(1667), 1, anon_sym_LPAREN, - ACTIONS(1641), 1, + ACTIONS(1675), 1, anon_sym_PIPE, - ACTIONS(1645), 1, + ACTIONS(1679), 1, anon_sym_LBRACK, - ACTIONS(1647), 1, + ACTIONS(1681), 1, anon_sym_STAR_STAR, - ACTIONS(1653), 1, + ACTIONS(1687), 1, anon_sym_AMP, - ACTIONS(1655), 1, + ACTIONS(1689), 1, anon_sym_CARET, - ACTIONS(1565), 2, + ACTIONS(1603), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1635), 2, + ACTIONS(1669), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1637), 2, + ACTIONS(1671), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1643), 2, + ACTIONS(1677), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(799), 2, + STATE(813), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1649), 3, + ACTIONS(1683), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1563), 15, + ACTIONS(1601), 15, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -58676,40 +60146,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [41082] = 12, + [44040] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1631), 1, + ACTIONS(1665), 1, anon_sym_DOT, - ACTIONS(1633), 1, + ACTIONS(1667), 1, anon_sym_LPAREN, - ACTIONS(1645), 1, + ACTIONS(1679), 1, anon_sym_LBRACK, - ACTIONS(1647), 1, + ACTIONS(1681), 1, anon_sym_STAR_STAR, - ACTIONS(1557), 2, + ACTIONS(1599), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1635), 2, + ACTIONS(1669), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1637), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1643), 2, + ACTIONS(1677), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(799), 2, + STATE(813), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1649), 3, + ACTIONS(1683), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1555), 18, + ACTIONS(1597), 20, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, @@ -58719,129 +60187,33 @@ 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, - [41143] = 14, + [44099] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1631), 1, + ACTIONS(1665), 1, anon_sym_DOT, - ACTIONS(1633), 1, + ACTIONS(1667), 1, anon_sym_LPAREN, - ACTIONS(1645), 1, + ACTIONS(1679), 1, anon_sym_LBRACK, - ACTIONS(1647), 1, + ACTIONS(1681), 1, anon_sym_STAR_STAR, - ACTIONS(1653), 1, - anon_sym_AMP, - ACTIONS(1655), 1, - anon_sym_CARET, - ACTIONS(1557), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1635), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1637), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1643), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(799), 2, + STATE(813), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1649), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1555), 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [41208] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1147), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1152), 13, + ACTIONS(1599), 4, 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(1154), 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, - [41253] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1631), 1, - anon_sym_DOT, - ACTIONS(1633), 1, - anon_sym_LPAREN, - ACTIONS(1645), 1, - anon_sym_LBRACK, - ACTIONS(1647), 1, - anon_sym_STAR_STAR, - ACTIONS(1557), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1635), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(799), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1649), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1555), 22, + ACTIONS(1597), 25, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -58852,9 +60224,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, @@ -58864,36 +60239,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [41310] = 8, + [44152] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1631), 1, - anon_sym_DOT, - ACTIONS(1633), 1, - anon_sym_LPAREN, - ACTIONS(1645), 1, - anon_sym_LBRACK, - ACTIONS(1647), 1, - anon_sym_STAR_STAR, - STATE(799), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1557), 4, + ACTIONS(1627), 1, + anon_sym_COLON_EQ, + ACTIONS(1142), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1088), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 25, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(1083), 27, + anon_sym_DOT, + anon_sym_LPAREN, 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, @@ -58909,19 +60281,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [41363] = 4, + [44199] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1075), 1, - anon_sym_COLON_EQ, - ACTIONS(1021), 5, + ACTIONS(1427), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1016), 29, + ACTIONS(1425), 30, sym__newline, + sym__string_start, anon_sym_DOT, anon_sym_from, anon_sym_LPAREN, @@ -58950,23 +60321,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [41408] = 3, + [44242] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1427), 5, + ACTIONS(1170), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1173), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1425), 29, - sym__newline, + ACTIONS(1168), 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, @@ -58988,17 +60361,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [41450] = 3, + [44286] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1399), 5, + ACTIONS(1505), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1397), 29, + ACTIONS(1503), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -59028,16 +60400,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [41492] = 3, + [44328] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1553), 5, + ACTIONS(1465), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1551), 29, + ACTIONS(1463), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -59067,16 +60439,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [41534] = 3, + [44370] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1407), 5, + ACTIONS(265), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1405), 29, + ACTIONS(298), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -59106,16 +60478,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [41576] = 3, + [44412] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1415), 5, + ACTIONS(1088), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1413), 29, + ACTIONS(1083), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -59145,25 +60517,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [41618] = 4, + [44454] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1072), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1021), 4, + ACTIONS(1579), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1016), 27, + ACTIONS(1577), 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, @@ -59185,25 +60555,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [41662] = 4, + sym__semicolon, + [44496] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1149), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1152), 4, + ACTIONS(613), 1, + anon_sym_COLON_EQ, + ACTIONS(265), 5, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1147), 27, + ACTIONS(298), 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, @@ -59225,25 +60596,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [41706] = 4, + [44540] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1106), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1109), 4, + ACTIONS(1575), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1104), 27, + ACTIONS(1573), 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, @@ -59265,16 +60634,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [41750] = 3, + sym__semicolon, + [44582] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1152), 5, + ACTIONS(1571), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1147), 29, + ACTIONS(1569), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -59304,16 +60674,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [41792] = 3, + [44624] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(1695), 1, + sym_identifier, + ACTIONS(1697), 1, + anon_sym_LPAREN, + ACTIONS(1699), 1, + anon_sym_STAR, + ACTIONS(1701), 1, + anon_sym_DASH, + ACTIONS(1703), 1, + sym_match_wildcard_pattern, + ACTIONS(1705), 1, + anon_sym_LBRACK, + ACTIONS(1707), 1, + anon_sym_LBRACE, + ACTIONS(1709), 1, + sym_integer, + ACTIONS(1711), 1, + sym_float, + ACTIONS(1725), 1, + anon_sym_RPAREN, + STATE(891), 1, + sym_template_string, + STATE(892), 1, + sym_string, + STATE(1419), 1, + sym_pattern_class_name, + STATE(977), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1014), 2, + sym__match_or_pattern, + sym_match_or_pattern, + STATE(1376), 2, + sym__match_pattern, + sym_match_as_pattern, + STATE(1382), 2, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + ACTIONS(1713), 3, + sym_true, + sym_false, + sym_none, + STATE(980), 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, + [44704] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(1695), 1, + sym_identifier, + ACTIONS(1697), 1, + anon_sym_LPAREN, + ACTIONS(1699), 1, + anon_sym_STAR, + ACTIONS(1701), 1, + anon_sym_DASH, + ACTIONS(1703), 1, + sym_match_wildcard_pattern, + ACTIONS(1705), 1, + anon_sym_LBRACK, + ACTIONS(1707), 1, + anon_sym_LBRACE, + ACTIONS(1709), 1, + sym_integer, + ACTIONS(1711), 1, + sym_float, + ACTIONS(1725), 1, + anon_sym_RBRACK, + STATE(891), 1, + sym_template_string, + STATE(892), 1, + sym_string, + STATE(1419), 1, + sym_pattern_class_name, + STATE(977), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1014), 2, + sym__match_or_pattern, + sym_match_or_pattern, + ACTIONS(1713), 3, + sym_true, + sym_false, + sym_none, + STATE(1206), 4, + sym__match_pattern, + sym_match_as_pattern, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + STATE(980), 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, + [44782] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1109), 5, + ACTIONS(1449), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1104), 29, + ACTIONS(1447), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -59343,16 +60828,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [41834] = 3, + [44824] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(1695), 1, + sym_identifier, + ACTIONS(1697), 1, + anon_sym_LPAREN, + ACTIONS(1699), 1, + anon_sym_STAR, + ACTIONS(1701), 1, + anon_sym_DASH, + ACTIONS(1703), 1, + sym_match_wildcard_pattern, + ACTIONS(1705), 1, + anon_sym_LBRACK, + ACTIONS(1707), 1, + anon_sym_LBRACE, + ACTIONS(1709), 1, + sym_integer, + ACTIONS(1711), 1, + sym_float, + ACTIONS(1727), 1, + anon_sym_RBRACK, + STATE(891), 1, + sym_template_string, + STATE(892), 1, + sym_string, + STATE(1419), 1, + sym_pattern_class_name, + STATE(977), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1014), 2, + sym__match_or_pattern, + sym_match_or_pattern, + ACTIONS(1713), 3, + sym_true, + sym_false, + sym_none, + STATE(1089), 4, + sym__match_pattern, + sym_match_as_pattern, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + STATE(980), 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, + [44902] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1451), 5, + ACTIONS(1469), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1449), 29, + ACTIONS(1467), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -59382,23 +60924,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [41876] = 3, + [44944] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1497), 5, + ACTIONS(1142), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1088), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1495), 29, - sym__newline, + ACTIONS(1083), 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, @@ -59420,95 +60964,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [41918] = 3, + [44988] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1423), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1421), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(1695), 1, + sym_identifier, + ACTIONS(1697), 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, - 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, - [41960] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1423), 5, + ACTIONS(1699), 1, anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1421), 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, + ACTIONS(1701), 1, anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1703), 1, + sym_match_wildcard_pattern, + ACTIONS(1705), 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, - [42002] = 3, + ACTIONS(1707), 1, + anon_sym_LBRACE, + ACTIONS(1709), 1, + sym_integer, + ACTIONS(1711), 1, + sym_float, + ACTIONS(1727), 1, + anon_sym_RPAREN, + STATE(891), 1, + sym_template_string, + STATE(892), 1, + sym_string, + STATE(1419), 1, + sym_pattern_class_name, + STATE(977), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1014), 2, + sym__match_or_pattern, + sym_match_or_pattern, + ACTIONS(1713), 3, + sym_true, + sym_false, + sym_none, + STATE(1089), 4, + sym__match_pattern, + sym_match_as_pattern, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + STATE(980), 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, + [45066] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1489), 5, + ACTIONS(1465), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1487), 29, + ACTIONS(1463), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -59538,94 +61060,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [42044] = 3, + [45108] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1493), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1491), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(1695), 1, + sym_identifier, + ACTIONS(1697), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, + ACTIONS(1699), 1, + anon_sym_STAR, + ACTIONS(1701), 1, anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1703), 1, + sym_match_wildcard_pattern, + ACTIONS(1705), 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, - [42086] = 3, + ACTIONS(1707), 1, + anon_sym_LBRACE, + ACTIONS(1709), 1, + sym_integer, + ACTIONS(1711), 1, + sym_float, + ACTIONS(1729), 1, + anon_sym_RPAREN, + STATE(891), 1, + sym_template_string, + STATE(892), 1, + sym_string, + STATE(1419), 1, + sym_pattern_class_name, + STATE(977), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1014), 2, + sym__match_or_pattern, + sym_match_or_pattern, + ACTIONS(1713), 3, + sym_true, + sym_false, + sym_none, + STATE(1089), 4, + sym__match_pattern, + sym_match_as_pattern, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + STATE(980), 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, + [45186] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(260), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(293), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(1695), 1, + sym_identifier, + ACTIONS(1697), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, + ACTIONS(1699), 1, + anon_sym_STAR, + ACTIONS(1701), 1, anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1703), 1, + sym_match_wildcard_pattern, + ACTIONS(1705), 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, - [42128] = 3, + ACTIONS(1707), 1, + anon_sym_LBRACE, + ACTIONS(1709), 1, + sym_integer, + ACTIONS(1711), 1, + sym_float, + ACTIONS(1729), 1, + anon_sym_RBRACK, + STATE(891), 1, + sym_template_string, + STATE(892), 1, + sym_string, + STATE(1419), 1, + sym_pattern_class_name, + STATE(977), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1014), 2, + sym__match_or_pattern, + sym_match_or_pattern, + ACTIONS(1713), 3, + sym_true, + sym_false, + sym_none, + STATE(1089), 4, + sym__match_pattern, + sym_match_as_pattern, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + STATE(980), 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, + [45264] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1529), 5, + ACTIONS(1497), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1527), 29, + ACTIONS(1495), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -59655,16 +61213,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [42170] = 3, + [45306] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1533), 5, + ACTIONS(1497), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1531), 29, + ACTIONS(1495), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -59694,16 +61252,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [42212] = 3, + [45348] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1493), 5, + ACTIONS(1477), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1491), 29, + ACTIONS(1475), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -59733,21 +61291,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [42254] = 3, + [45390] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1537), 5, + ACTIONS(1731), 1, + anon_sym_COLON_EQ, + ACTIONS(1088), 5, anon_sym_STAR, - anon_sym_EQ, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1535), 29, - sym__newline, + ACTIONS(1083), 28, 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, @@ -59771,17 +61331,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [42296] = 3, + [45434] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1545), 5, + ACTIONS(1158), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1543), 29, + ACTIONS(1153), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -59811,16 +61370,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [42338] = 3, + [45476] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1549), 5, + ACTIONS(1461), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 29, + ACTIONS(1459), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -59850,16 +61409,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [42380] = 3, + [45518] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1545), 5, + ACTIONS(1473), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1543), 29, + ACTIONS(1471), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -59889,16 +61448,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [42422] = 3, + [45560] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1501), 5, + ACTIONS(1485), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1499), 29, + ACTIONS(1483), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -59928,16 +61487,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [42464] = 3, + [45602] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1403), 5, + ACTIONS(1481), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1401), 29, + ACTIONS(1479), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -59967,16 +61526,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [42506] = 3, + [45644] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1447), 5, + ACTIONS(1173), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1445), 29, + ACTIONS(1168), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -60006,16 +61565,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [42548] = 3, + [45686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1419), 5, + ACTIONS(1453), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1417), 29, + ACTIONS(1451), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -60045,16 +61604,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [42590] = 3, + [45728] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1443), 5, + ACTIONS(1509), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1441), 29, + ACTIONS(1507), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -60084,16 +61643,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [42632] = 3, + [45770] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1411), 5, + ACTIONS(1583), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1409), 29, + ACTIONS(1581), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -60123,16 +61682,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [42674] = 3, + [45812] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1431), 5, + ACTIONS(1489), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1429), 29, + ACTIONS(1487), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -60162,16 +61721,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [42716] = 3, + [45854] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1541), 5, + ACTIONS(1587), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1539), 29, + ACTIONS(1585), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -60201,16 +61760,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [42758] = 3, + [45896] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1399), 5, + ACTIONS(1501), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1397), 29, + ACTIONS(1499), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -60240,23 +61799,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [42800] = 4, + [45938] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(606), 1, - anon_sym_COLON_EQ, - ACTIONS(260), 5, + ACTIONS(1441), 5, anon_sym_STAR, - anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(293), 28, + ACTIONS(1439), 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, @@ -60280,23 +61837,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [42844] = 4, + sym__semicolon, + [45980] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1663), 1, - anon_sym_COLON_EQ, - ACTIONS(1021), 5, + ACTIONS(1595), 5, anon_sym_STAR, - anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1016), 28, + ACTIONS(1593), 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, @@ -60320,16 +61876,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [42888] = 3, + sym__semicolon, + [46022] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1435), 5, + ACTIONS(1449), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1433), 29, + ACTIONS(1447), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -60359,16 +61916,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [42930] = 3, + [46064] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1439), 5, + ACTIONS(1493), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1437), 29, + ACTIONS(1491), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -60398,16 +61955,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [42972] = 3, + [46106] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1021), 5, + ACTIONS(1453), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1016), 29, + ACTIONS(1451), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -60437,23 +61994,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [43014] = 3, + [46148] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1549), 4, + ACTIONS(1155), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1158), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 29, + ACTIONS(1153), 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, @@ -60475,23 +62034,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43055] = 3, + [46192] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1447), 4, + ACTIONS(1445), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1445), 29, + ACTIONS(1443), 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, @@ -60513,23 +62072,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43096] = 3, + sym__semicolon, + [46234] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1419), 4, + ACTIONS(1591), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1417), 29, + ACTIONS(1589), 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, @@ -60551,23 +62111,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43137] = 3, + sym__semicolon, + [46276] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1399), 4, + ACTIONS(1457), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1397), 29, + ACTIONS(1455), 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, @@ -60589,15 +62150,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43178] = 3, + sym__semicolon, + [46318] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1435), 4, + ACTIONS(1595), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1433), 29, + ACTIONS(1593), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -60627,15 +62189,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43219] = 3, + [46359] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1439), 4, + ACTIONS(1575), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1437), 29, + ACTIONS(1573), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -60665,15 +62227,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43260] = 3, + [46400] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1399), 4, + ACTIONS(265), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1397), 29, + ACTIONS(298), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -60703,23 +62265,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43301] = 3, + [46441] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1553), 4, + ACTIONS(585), 1, + anon_sym_COLON_EQ, + ACTIONS(629), 1, + anon_sym_EQ, + ACTIONS(265), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1551), 29, + ACTIONS(298), 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, @@ -60741,53 +62305,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43342] = 3, + [46486] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1407), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1405), 29, - anon_sym_DOT, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(1697), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, + ACTIONS(1701), 1, anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1703), 1, + sym_match_wildcard_pattern, + ACTIONS(1705), 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, - [43383] = 3, + ACTIONS(1707), 1, + anon_sym_LBRACE, + ACTIONS(1709), 1, + sym_integer, + ACTIONS(1711), 1, + sym_float, + ACTIONS(1733), 1, + sym_identifier, + ACTIONS(1735), 1, + anon_sym_RPAREN, + STATE(891), 1, + sym_template_string, + STATE(892), 1, + sym_string, + STATE(1192), 1, + sym_match_keyword_pattern, + STATE(1200), 1, + sym_match_positional_pattern, + STATE(1419), 1, + sym_pattern_class_name, + STATE(977), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1014), 2, + sym__match_or_pattern, + sym_match_or_pattern, + STATE(1373), 2, + sym__match_pattern, + sym_match_as_pattern, + ACTIONS(1713), 3, + sym_true, + sym_false, + sym_none, + STATE(980), 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, + [46565] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1415), 4, + ACTIONS(1449), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1413), 29, + ACTIONS(1447), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -60817,15 +62400,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43424] = 3, + [46606] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(820), 4, + ACTIONS(1501), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(818), 29, + ACTIONS(1499), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -60855,53 +62438,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43465] = 3, + [46647] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1423), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1421), 29, - anon_sym_DOT, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(1695), 1, + sym_identifier, + ACTIONS(1697), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, + ACTIONS(1699), 1, + anon_sym_STAR, + ACTIONS(1701), 1, anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1703), 1, + sym_match_wildcard_pattern, + ACTIONS(1705), 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, - [43506] = 3, + ACTIONS(1707), 1, + anon_sym_LBRACE, + ACTIONS(1709), 1, + sym_integer, + ACTIONS(1711), 1, + sym_float, + STATE(891), 1, + sym_template_string, + STATE(892), 1, + sym_string, + STATE(1419), 1, + sym_pattern_class_name, + STATE(977), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1014), 2, + sym__match_or_pattern, + sym_match_or_pattern, + ACTIONS(1713), 3, + sym_true, + sym_false, + sym_none, + STATE(1089), 4, + sym__match_pattern, + sym_match_as_pattern, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + STATE(980), 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, + [46722] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1423), 4, + ACTIONS(1449), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1421), 29, + ACTIONS(1447), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -60931,15 +62531,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43547] = 3, + [46763] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1489), 4, + ACTIONS(1088), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1487), 29, + ACTIONS(1083), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -60969,53 +62569,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43588] = 3, + [46804] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1493), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1491), 29, - anon_sym_DOT, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(1697), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, + ACTIONS(1701), 1, anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1703), 1, + sym_match_wildcard_pattern, + ACTIONS(1705), 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, - [43629] = 3, + ACTIONS(1707), 1, + anon_sym_LBRACE, + ACTIONS(1709), 1, + sym_integer, + ACTIONS(1711), 1, + sym_float, + ACTIONS(1733), 1, + sym_identifier, + ACTIONS(1737), 1, + anon_sym_RPAREN, + STATE(891), 1, + sym_template_string, + STATE(892), 1, + sym_string, + STATE(1213), 1, + sym_match_keyword_pattern, + STATE(1332), 1, + sym_match_positional_pattern, + STATE(1419), 1, + sym_pattern_class_name, + STATE(977), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1014), 2, + sym__match_or_pattern, + sym_match_or_pattern, + STATE(1373), 2, + sym__match_pattern, + sym_match_as_pattern, + ACTIONS(1713), 3, + sym_true, + sym_false, + sym_none, + STATE(980), 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, + [46883] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1529), 4, + ACTIONS(1509), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1527), 29, + ACTIONS(1507), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -61045,15 +62664,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43670] = 3, + [46924] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1533), 4, + ACTIONS(1453), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1531), 29, + ACTIONS(1451), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -61083,15 +62702,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43711] = 3, + [46965] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1493), 4, + ACTIONS(1489), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1491), 29, + ACTIONS(1487), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -61121,15 +62740,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43752] = 3, + [47006] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1545), 4, + ACTIONS(1481), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1543), 29, + ACTIONS(1479), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -61159,15 +62778,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43793] = 3, + [47047] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1451), 4, + ACTIONS(1485), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1449), 29, + ACTIONS(1483), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -61197,25 +62816,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43834] = 5, + [47088] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(578), 1, - anon_sym_COLON_EQ, - ACTIONS(620), 1, - anon_sym_EQ, - ACTIONS(260), 4, + ACTIONS(1453), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(293), 27, + ACTIONS(1451), 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, @@ -61237,25 +62854,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43879] = 5, + [47129] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1023), 1, - anon_sym_COLON_EQ, - ACTIONS(1661), 1, - anon_sym_EQ, - ACTIONS(1021), 4, + ACTIONS(1591), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1016), 27, + ACTIONS(1589), 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, @@ -61277,15 +62892,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43924] = 3, + [47170] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1021), 4, + ACTIONS(1493), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1016), 29, + ACTIONS(1491), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -61315,15 +62930,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43965] = 3, + [47211] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(260), 4, + ACTIONS(1497), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(293), 29, + ACTIONS(1495), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -61353,15 +62968,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44006] = 3, + [47252] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1537), 4, + ACTIONS(1445), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1535), 29, + ACTIONS(1443), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -61391,7 +63006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44047] = 3, + [47293] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1497), 4, @@ -61429,15 +63044,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44088] = 3, + [47334] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1501), 4, + ACTIONS(863), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1499), 29, + ACTIONS(861), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -61467,15 +63082,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44129] = 3, + [47375] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(1697), 1, + anon_sym_LPAREN, + ACTIONS(1701), 1, + anon_sym_DASH, + ACTIONS(1703), 1, + sym_match_wildcard_pattern, + ACTIONS(1705), 1, + anon_sym_LBRACK, + ACTIONS(1707), 1, + anon_sym_LBRACE, + ACTIONS(1709), 1, + sym_integer, + ACTIONS(1711), 1, + sym_float, + ACTIONS(1733), 1, + sym_identifier, + ACTIONS(1739), 1, + anon_sym_RPAREN, + STATE(891), 1, + sym_template_string, + STATE(892), 1, + sym_string, + STATE(1242), 1, + sym_match_keyword_pattern, + STATE(1332), 1, + sym_match_positional_pattern, + STATE(1419), 1, + sym_pattern_class_name, + STATE(977), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1014), 2, + sym__match_or_pattern, + sym_match_or_pattern, + STATE(1373), 2, + sym__match_pattern, + sym_match_as_pattern, + ACTIONS(1713), 3, + sym_true, + sym_false, + sym_none, + STATE(980), 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, + [47454] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1403), 4, + ACTIONS(1571), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1401), 29, + ACTIONS(1569), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -61505,23 +63177,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44170] = 3, + [47495] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1443), 4, + ACTIONS(1090), 1, + anon_sym_COLON_EQ, + ACTIONS(1719), 1, + anon_sym_EQ, + ACTIONS(1088), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1441), 29, + ACTIONS(1083), 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, @@ -61543,15 +63217,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44211] = 3, + [47540] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1411), 4, + ACTIONS(1579), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1409), 29, + ACTIONS(1577), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -61581,15 +63255,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44252] = 3, + [47581] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1431), 4, + ACTIONS(1465), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1429), 29, + ACTIONS(1463), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -61619,15 +63293,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44293] = 3, + [47622] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1541), 4, + ACTIONS(1441), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1539), 29, + ACTIONS(1439), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -61657,15 +63331,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44334] = 3, + [47663] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(824), 4, + ACTIONS(1587), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(822), 29, + ACTIONS(1585), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -61695,15 +63369,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44375] = 3, + [47704] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1427), 4, + ACTIONS(1477), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1425), 29, + ACTIONS(1475), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -61733,15 +63407,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44416] = 3, + [47745] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1545), 4, + ACTIONS(1583), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1543), 29, + ACTIONS(1581), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -61771,781 +63445,317 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44457] = 20, + [47786] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(618), 1, - sym__string_start, - ACTIONS(1665), 1, - sym_identifier, - ACTIONS(1667), 1, - anon_sym_LPAREN, - ACTIONS(1669), 1, + ACTIONS(1469), 4, anon_sym_STAR, - ACTIONS(1671), 1, - anon_sym_DASH, - ACTIONS(1673), 1, - sym_match_wildcard_pattern, - ACTIONS(1675), 1, - anon_sym_LBRACK, - ACTIONS(1677), 1, - anon_sym_LBRACE, - ACTIONS(1679), 1, - sym_integer, - ACTIONS(1681), 1, - sym_float, - STATE(886), 1, - sym_string, - STATE(942), 1, - sym_concatenated_string, - STATE(1386), 1, - sym_pattern_class_name, - STATE(972), 2, - sym__match_or_pattern, - sym_match_or_pattern, - STATE(1250), 2, - sym__match_patterns, - sym_open_sequence_match_pattern, - STATE(1254), 2, - sym__match_pattern, - sym_match_as_pattern, - STATE(1317), 2, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - ACTIONS(1683), 3, - sym_true, - sym_false, - sym_none, - STATE(968), 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, - [44531] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(618), 1, - sym__string_start, - ACTIONS(1665), 1, - sym_identifier, - ACTIONS(1667), 1, - anon_sym_LPAREN, - ACTIONS(1669), 1, - anon_sym_STAR, - ACTIONS(1671), 1, - anon_sym_DASH, - ACTIONS(1673), 1, - sym_match_wildcard_pattern, - ACTIONS(1675), 1, - anon_sym_LBRACK, - ACTIONS(1677), 1, - anon_sym_LBRACE, - ACTIONS(1679), 1, - sym_integer, - ACTIONS(1681), 1, - sym_float, - STATE(886), 1, - sym_string, - STATE(942), 1, - sym_concatenated_string, - STATE(1386), 1, - sym_pattern_class_name, - STATE(972), 2, - sym__match_or_pattern, - sym_match_or_pattern, - STATE(1254), 2, - sym__match_pattern, - sym_match_as_pattern, - STATE(1262), 2, - sym__match_patterns, - sym_open_sequence_match_pattern, - STATE(1317), 2, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - ACTIONS(1683), 3, - sym_true, - sym_false, - sym_none, - STATE(968), 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, - [44605] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(618), 1, - sym__string_start, - ACTIONS(1665), 1, - sym_identifier, - ACTIONS(1667), 1, - anon_sym_LPAREN, - ACTIONS(1669), 1, - anon_sym_STAR, - ACTIONS(1671), 1, - anon_sym_DASH, - ACTIONS(1673), 1, - sym_match_wildcard_pattern, - ACTIONS(1675), 1, - anon_sym_LBRACK, - ACTIONS(1677), 1, - anon_sym_LBRACE, - ACTIONS(1679), 1, - sym_integer, - ACTIONS(1681), 1, - sym_float, - ACTIONS(1685), 1, - anon_sym_if, - ACTIONS(1687), 1, - anon_sym_COLON, - STATE(886), 1, - sym_string, - STATE(942), 1, - sym_concatenated_string, - STATE(1386), 1, - sym_pattern_class_name, - STATE(972), 2, - sym__match_or_pattern, - sym_match_or_pattern, - ACTIONS(1683), 3, - sym_true, - sym_false, - sym_none, - STATE(1078), 4, - sym__match_pattern, - sym_match_as_pattern, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - STATE(968), 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, - [44679] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(618), 1, - sym__string_start, - ACTIONS(1665), 1, - sym_identifier, - ACTIONS(1667), 1, - anon_sym_LPAREN, - ACTIONS(1669), 1, - anon_sym_STAR, - ACTIONS(1671), 1, - anon_sym_DASH, - ACTIONS(1673), 1, - sym_match_wildcard_pattern, - ACTIONS(1675), 1, - anon_sym_LBRACK, - ACTIONS(1677), 1, - anon_sym_LBRACE, - ACTIONS(1679), 1, - sym_integer, - ACTIONS(1681), 1, - sym_float, - ACTIONS(1689), 1, - anon_sym_if, - ACTIONS(1691), 1, - anon_sym_COLON, - STATE(886), 1, - sym_string, - STATE(942), 1, - sym_concatenated_string, - STATE(1386), 1, - sym_pattern_class_name, - STATE(972), 2, - sym__match_or_pattern, - sym_match_or_pattern, - ACTIONS(1683), 3, - sym_true, - sym_false, - sym_none, - STATE(1078), 4, - sym__match_pattern, - sym_match_as_pattern, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - STATE(968), 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, - [44753] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(618), 1, - sym__string_start, - ACTIONS(1665), 1, - sym_identifier, - ACTIONS(1667), 1, - anon_sym_LPAREN, - ACTIONS(1669), 1, - anon_sym_STAR, - ACTIONS(1671), 1, - anon_sym_DASH, - ACTIONS(1673), 1, - sym_match_wildcard_pattern, - ACTIONS(1675), 1, - anon_sym_LBRACK, - ACTIONS(1677), 1, - anon_sym_LBRACE, - ACTIONS(1679), 1, - sym_integer, - ACTIONS(1681), 1, - sym_float, - ACTIONS(1693), 1, - anon_sym_RPAREN, - STATE(886), 1, - sym_string, - STATE(942), 1, - sym_concatenated_string, - STATE(1386), 1, - sym_pattern_class_name, - STATE(972), 2, - sym__match_or_pattern, - sym_match_or_pattern, - STATE(1309), 2, - sym__match_pattern, - sym_match_as_pattern, - STATE(1310), 2, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - ACTIONS(1683), 3, - sym_true, - sym_false, - sym_none, - STATE(968), 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, - [44826] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(618), 1, - sym__string_start, - ACTIONS(1665), 1, - sym_identifier, - ACTIONS(1667), 1, - anon_sym_LPAREN, - ACTIONS(1669), 1, - anon_sym_STAR, - ACTIONS(1671), 1, - anon_sym_DASH, - ACTIONS(1673), 1, - sym_match_wildcard_pattern, - ACTIONS(1675), 1, - anon_sym_LBRACK, - ACTIONS(1677), 1, - anon_sym_LBRACE, - ACTIONS(1679), 1, - sym_integer, - ACTIONS(1681), 1, - sym_float, - ACTIONS(1693), 1, - anon_sym_RBRACK, - STATE(886), 1, - sym_string, - STATE(942), 1, - sym_concatenated_string, - STATE(1386), 1, - sym_pattern_class_name, - STATE(972), 2, - sym__match_or_pattern, - sym_match_or_pattern, - ACTIONS(1683), 3, - sym_true, - sym_false, - sym_none, - STATE(1201), 4, - sym__match_pattern, - sym_match_as_pattern, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - STATE(968), 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, - [44897] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(618), 1, - sym__string_start, - ACTIONS(1665), 1, - sym_identifier, - ACTIONS(1667), 1, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1467), 29, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1669), 1, - anon_sym_STAR, - ACTIONS(1671), 1, - anon_sym_DASH, - ACTIONS(1673), 1, - sym_match_wildcard_pattern, - ACTIONS(1675), 1, - anon_sym_LBRACK, - ACTIONS(1677), 1, - anon_sym_LBRACE, - ACTIONS(1679), 1, - sym_integer, - ACTIONS(1681), 1, - sym_float, - ACTIONS(1695), 1, anon_sym_RPAREN, - STATE(886), 1, - sym_string, - STATE(942), 1, - sym_concatenated_string, - STATE(1386), 1, - sym_pattern_class_name, - STATE(972), 2, - sym__match_or_pattern, - sym_match_or_pattern, - ACTIONS(1683), 3, - sym_true, - sym_false, - sym_none, - STATE(1078), 4, - sym__match_pattern, - sym_match_as_pattern, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - STATE(968), 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, - [44968] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(618), 1, - sym__string_start, - ACTIONS(1665), 1, - sym_identifier, - ACTIONS(1667), 1, - anon_sym_LPAREN, - ACTIONS(1669), 1, - anon_sym_STAR, - ACTIONS(1671), 1, + 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(1673), 1, - sym_match_wildcard_pattern, - ACTIONS(1675), 1, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(1677), 1, - anon_sym_LBRACE, - ACTIONS(1679), 1, - sym_integer, - ACTIONS(1681), 1, - sym_float, - ACTIONS(1695), 1, - anon_sym_RBRACK, - STATE(886), 1, - sym_string, - STATE(942), 1, - sym_concatenated_string, - STATE(1386), 1, - sym_pattern_class_name, - STATE(972), 2, - sym__match_or_pattern, - sym_match_or_pattern, - ACTIONS(1683), 3, - sym_true, - sym_false, - sym_none, - STATE(1078), 4, - sym__match_pattern, - sym_match_as_pattern, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - STATE(968), 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, - [45039] = 19, + 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, + [47827] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(618), 1, - sym__string_start, - ACTIONS(1665), 1, - sym_identifier, - ACTIONS(1667), 1, - anon_sym_LPAREN, - ACTIONS(1669), 1, + ACTIONS(1465), 4, anon_sym_STAR, - ACTIONS(1671), 1, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1463), 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(1673), 1, - sym_match_wildcard_pattern, - ACTIONS(1675), 1, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(1677), 1, - anon_sym_LBRACE, - ACTIONS(1679), 1, - sym_integer, - ACTIONS(1681), 1, - sym_float, - ACTIONS(1697), 1, - anon_sym_RPAREN, - STATE(886), 1, - sym_string, - STATE(942), 1, - sym_concatenated_string, - STATE(1386), 1, - sym_pattern_class_name, - STATE(972), 2, - sym__match_or_pattern, - sym_match_or_pattern, - ACTIONS(1683), 3, - sym_true, - sym_false, - sym_none, - STATE(1078), 4, - sym__match_pattern, - sym_match_as_pattern, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - STATE(968), 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, - [45110] = 19, + 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, + [47868] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(618), 1, - sym__string_start, - ACTIONS(1665), 1, - sym_identifier, - ACTIONS(1667), 1, - anon_sym_LPAREN, - ACTIONS(1669), 1, + ACTIONS(1461), 4, anon_sym_STAR, - ACTIONS(1671), 1, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1459), 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(1673), 1, - sym_match_wildcard_pattern, - ACTIONS(1675), 1, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(1677), 1, - anon_sym_LBRACE, - ACTIONS(1679), 1, - sym_integer, - ACTIONS(1681), 1, - sym_float, - ACTIONS(1697), 1, - anon_sym_RBRACK, - STATE(886), 1, - sym_string, - STATE(942), 1, - sym_concatenated_string, - STATE(1386), 1, - sym_pattern_class_name, - STATE(972), 2, - sym__match_or_pattern, - sym_match_or_pattern, - ACTIONS(1683), 3, - sym_true, - sym_false, - sym_none, - STATE(1078), 4, - sym__match_pattern, - sym_match_as_pattern, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - STATE(968), 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, - [45181] = 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, + [47909] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(618), 1, - sym__string_start, - ACTIONS(1667), 1, + ACTIONS(1457), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1455), 29, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1671), 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, - ACTIONS(1673), 1, - sym_match_wildcard_pattern, - ACTIONS(1675), 1, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(1677), 1, - anon_sym_LBRACE, - ACTIONS(1679), 1, - sym_integer, - ACTIONS(1681), 1, - sym_float, - ACTIONS(1699), 1, - sym_identifier, - ACTIONS(1701), 1, - anon_sym_RPAREN, - STATE(886), 1, - sym_string, - STATE(942), 1, - sym_concatenated_string, - STATE(1166), 1, - sym_match_keyword_pattern, - STATE(1306), 1, - sym_match_positional_pattern, - STATE(1386), 1, - sym_pattern_class_name, - STATE(972), 2, - sym__match_or_pattern, - sym_match_or_pattern, - STATE(1339), 2, - sym__match_pattern, - sym_match_as_pattern, - ACTIONS(1683), 3, - sym_true, - sym_false, - sym_none, - STATE(968), 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, - [45253] = 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, + [47950] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(618), 1, - sym__string_start, - ACTIONS(1667), 1, + ACTIONS(867), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(865), 29, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1671), 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, - ACTIONS(1673), 1, - sym_match_wildcard_pattern, - ACTIONS(1675), 1, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(1677), 1, - anon_sym_LBRACE, - ACTIONS(1679), 1, - sym_integer, - ACTIONS(1681), 1, - sym_float, - ACTIONS(1699), 1, - sym_identifier, - ACTIONS(1703), 1, - anon_sym_RPAREN, - STATE(886), 1, - sym_string, - STATE(942), 1, - sym_concatenated_string, - STATE(1269), 1, - sym_match_positional_pattern, - STATE(1270), 1, - sym_match_keyword_pattern, - STATE(1386), 1, - sym_pattern_class_name, - STATE(972), 2, - sym__match_or_pattern, - sym_match_or_pattern, - STATE(1339), 2, - sym__match_pattern, - sym_match_as_pattern, - ACTIONS(1683), 3, - sym_true, - sym_false, - sym_none, - STATE(968), 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, - [45325] = 18, + 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, + [47991] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(618), 1, - sym__string_start, - ACTIONS(1665), 1, - sym_identifier, - ACTIONS(1667), 1, - anon_sym_LPAREN, - ACTIONS(1669), 1, + ACTIONS(1473), 4, anon_sym_STAR, - ACTIONS(1671), 1, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1471), 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(1673), 1, - sym_match_wildcard_pattern, - ACTIONS(1675), 1, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(1677), 1, - anon_sym_LBRACE, - ACTIONS(1679), 1, - sym_integer, - ACTIONS(1681), 1, - sym_float, - STATE(886), 1, - sym_string, - STATE(942), 1, - sym_concatenated_string, - STATE(1386), 1, - sym_pattern_class_name, - STATE(972), 2, - sym__match_or_pattern, - sym_match_or_pattern, - ACTIONS(1683), 3, - sym_true, - sym_false, - sym_none, - STATE(1078), 4, - sym__match_pattern, - sym_match_as_pattern, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - STATE(968), 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, - [45393] = 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, + [48032] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(618), 1, - sym__string_start, - ACTIONS(1667), 1, + ACTIONS(1505), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1503), 29, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1671), 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, - ACTIONS(1673), 1, - sym_match_wildcard_pattern, - ACTIONS(1675), 1, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(1677), 1, - anon_sym_LBRACE, - ACTIONS(1679), 1, - sym_integer, - ACTIONS(1681), 1, - sym_float, - ACTIONS(1699), 1, - sym_identifier, - ACTIONS(1705), 1, - anon_sym_RPAREN, - STATE(886), 1, - sym_string, - STATE(942), 1, - sym_concatenated_string, - STATE(1162), 1, - sym_match_keyword_pattern, - STATE(1306), 1, - sym_match_positional_pattern, - STATE(1386), 1, - sym_pattern_class_name, - STATE(972), 2, - sym__match_or_pattern, - sym_match_or_pattern, - STATE(1339), 2, - sym__match_pattern, - sym_match_as_pattern, - ACTIONS(1683), 3, - sym_true, - sym_false, - sym_none, - STATE(968), 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, - [45465] = 18, + 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, + [48073] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(618), 1, + ACTIONS(625), 1, sym__string_start, - ACTIONS(1665), 1, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(1695), 1, sym_identifier, - ACTIONS(1667), 1, + ACTIONS(1697), 1, anon_sym_LPAREN, - ACTIONS(1671), 1, + ACTIONS(1701), 1, anon_sym_DASH, - ACTIONS(1673), 1, + ACTIONS(1703), 1, sym_match_wildcard_pattern, - ACTIONS(1675), 1, + ACTIONS(1705), 1, anon_sym_LBRACK, - ACTIONS(1677), 1, + ACTIONS(1707), 1, anon_sym_LBRACE, - ACTIONS(1679), 1, + ACTIONS(1709), 1, sym_integer, - ACTIONS(1681), 1, + ACTIONS(1711), 1, sym_float, - STATE(886), 1, + STATE(891), 1, + sym_template_string, + STATE(892), 1, sym_string, - STATE(942), 1, - sym_concatenated_string, - STATE(1306), 1, + STATE(1332), 1, sym_match_positional_pattern, - STATE(1386), 1, + STATE(1419), 1, sym_pattern_class_name, - STATE(972), 2, + STATE(977), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1014), 2, sym__match_or_pattern, sym_match_or_pattern, - STATE(1339), 2, + STATE(1373), 2, sym__match_pattern, sym_match_as_pattern, - ACTIONS(1683), 3, + ACTIONS(1713), 3, sym_true, sym_false, sym_none, - STATE(968), 8, + STATE(980), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -62554,44 +63764,49 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [45531] = 17, + [48146] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(618), 1, + ACTIONS(625), 1, sym__string_start, - ACTIONS(1665), 1, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(1695), 1, sym_identifier, - ACTIONS(1667), 1, + ACTIONS(1697), 1, anon_sym_LPAREN, - ACTIONS(1671), 1, + ACTIONS(1701), 1, anon_sym_DASH, - ACTIONS(1673), 1, + ACTIONS(1703), 1, sym_match_wildcard_pattern, - ACTIONS(1675), 1, + ACTIONS(1705), 1, anon_sym_LBRACK, - ACTIONS(1677), 1, + ACTIONS(1707), 1, anon_sym_LBRACE, - ACTIONS(1679), 1, + ACTIONS(1709), 1, sym_integer, - ACTIONS(1681), 1, + ACTIONS(1711), 1, sym_float, - STATE(886), 1, + STATE(891), 1, + sym_template_string, + STATE(892), 1, sym_string, - STATE(942), 1, - sym_concatenated_string, - STATE(1386), 1, + STATE(1419), 1, sym_pattern_class_name, - STATE(972), 2, + STATE(977), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1014), 2, sym__match_or_pattern, sym_match_or_pattern, - STATE(1308), 2, + STATE(1384), 2, sym__match_pattern, sym_match_as_pattern, - ACTIONS(1683), 3, + ACTIONS(1713), 3, sym_true, sym_false, sym_none, - STATE(968), 8, + STATE(980), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -62600,44 +63815,49 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [45594] = 17, + [48216] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(618), 1, + ACTIONS(625), 1, sym__string_start, - ACTIONS(1665), 1, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(1695), 1, sym_identifier, - ACTIONS(1667), 1, + ACTIONS(1697), 1, anon_sym_LPAREN, - ACTIONS(1671), 1, + ACTIONS(1701), 1, anon_sym_DASH, - ACTIONS(1673), 1, + ACTIONS(1703), 1, sym_match_wildcard_pattern, - ACTIONS(1675), 1, + ACTIONS(1705), 1, anon_sym_LBRACK, - ACTIONS(1677), 1, + ACTIONS(1707), 1, anon_sym_LBRACE, - ACTIONS(1679), 1, + ACTIONS(1709), 1, sym_integer, - ACTIONS(1681), 1, + ACTIONS(1711), 1, sym_float, - STATE(886), 1, + STATE(891), 1, + sym_template_string, + STATE(892), 1, sym_string, - STATE(942), 1, - sym_concatenated_string, - STATE(1386), 1, + STATE(1419), 1, sym_pattern_class_name, - STATE(972), 2, + STATE(977), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1014), 2, sym__match_or_pattern, sym_match_or_pattern, - STATE(1344), 2, + STATE(1326), 2, sym__match_pattern, sym_match_as_pattern, - ACTIONS(1683), 3, + ACTIONS(1713), 3, sym_true, sym_false, sym_none, - STATE(968), 8, + STATE(980), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -62646,38 +63866,43 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [45657] = 15, + [48286] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(618), 1, + ACTIONS(625), 1, sym__string_start, - ACTIONS(1665), 1, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(1695), 1, sym_identifier, - ACTIONS(1667), 1, + ACTIONS(1697), 1, anon_sym_LPAREN, - ACTIONS(1671), 1, + ACTIONS(1701), 1, anon_sym_DASH, - ACTIONS(1675), 1, + ACTIONS(1705), 1, anon_sym_LBRACK, - ACTIONS(1677), 1, + ACTIONS(1707), 1, anon_sym_LBRACE, - ACTIONS(1679), 1, + ACTIONS(1709), 1, sym_integer, - ACTIONS(1681), 1, + ACTIONS(1711), 1, sym_float, - ACTIONS(1707), 1, + ACTIONS(1741), 1, sym_match_wildcard_pattern, - STATE(886), 1, + STATE(891), 1, + sym_template_string, + STATE(892), 1, sym_string, - STATE(942), 1, - sym_concatenated_string, - STATE(1386), 1, + STATE(1419), 1, sym_pattern_class_name, - ACTIONS(1683), 3, + STATE(977), 2, + sym_concatenated_string, + sym_concatenated_template_string, + ACTIONS(1713), 3, sym_true, sym_false, sym_none, - STATE(929), 8, + STATE(956), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -62686,38 +63911,43 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [45712] = 15, + [48348] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(618), 1, + ACTIONS(625), 1, sym__string_start, - ACTIONS(1665), 1, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(1695), 1, sym_identifier, - ACTIONS(1667), 1, + ACTIONS(1697), 1, anon_sym_LPAREN, - ACTIONS(1671), 1, + ACTIONS(1701), 1, anon_sym_DASH, - ACTIONS(1675), 1, + ACTIONS(1705), 1, anon_sym_LBRACK, - ACTIONS(1677), 1, + ACTIONS(1707), 1, anon_sym_LBRACE, - ACTIONS(1679), 1, + ACTIONS(1709), 1, sym_integer, - ACTIONS(1681), 1, + ACTIONS(1711), 1, sym_float, - ACTIONS(1709), 1, + ACTIONS(1743), 1, sym_match_wildcard_pattern, - STATE(886), 1, + STATE(891), 1, + sym_template_string, + STATE(892), 1, sym_string, - STATE(942), 1, - sym_concatenated_string, - STATE(1386), 1, + STATE(1419), 1, sym_pattern_class_name, - ACTIONS(1683), 3, + STATE(977), 2, + sym_concatenated_string, + sym_concatenated_template_string, + ACTIONS(1713), 3, sym_true, sym_false, sym_none, - STATE(915), 8, + STATE(939), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -62726,92 +63956,92 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [45767] = 8, + [48410] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1477), 1, + ACTIONS(1750), 1, + anon_sym_EQ, + ACTIONS(1752), 1, anon_sym_not, - ACTIONS(1485), 1, + ACTIONS(1758), 1, anon_sym_is, - ACTIONS(1713), 1, - anon_sym_as, - STATE(831), 1, + STATE(844), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1483), 2, + ACTIONS(1755), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1465), 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(1711), 10, + ACTIONS(1745), 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, - [45807] = 8, + sym_type_conversion, + [48450] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1720), 1, - anon_sym_EQ, - ACTIONS(1722), 1, + ACTIONS(1559), 1, anon_sym_not, - ACTIONS(1728), 1, + ACTIONS(1567), 1, anon_sym_is, - STATE(829), 1, + ACTIONS(1763), 1, + anon_sym_as, + STATE(847), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1725), 2, + ACTIONS(1565), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1717), 6, + ACTIONS(1549), 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(1715), 10, + ACTIONS(1761), 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, - [45847] = 8, + [48490] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1517), 1, + ACTIONS(1535), 1, anon_sym_not, - ACTIONS(1525), 1, + ACTIONS(1543), 1, anon_sym_is, - ACTIONS(1713), 1, + ACTIONS(1763), 1, anon_sym_EQ, - STATE(829), 1, + STATE(844), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1523), 2, + ACTIONS(1541), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1507), 6, + ACTIONS(1521), 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(1711), 10, + ACTIONS(1761), 10, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -62822,28 +64052,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, sym_type_conversion, - [45887] = 8, + [48530] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1720), 1, + ACTIONS(1750), 1, anon_sym_as, - ACTIONS(1734), 1, + ACTIONS(1768), 1, anon_sym_not, - ACTIONS(1740), 1, + ACTIONS(1774), 1, anon_sym_is, - STATE(831), 1, + STATE(847), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1737), 2, + ACTIONS(1771), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1731), 6, + ACTIONS(1765), 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(1715), 10, + ACTIONS(1745), 10, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -62854,14 +64084,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [45927] = 4, + [48570] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1745), 1, + ACTIONS(1779), 1, anon_sym_COMMA, - STATE(832), 1, + STATE(848), 1, aux_sym__patterns_repeat1, - ACTIONS(1743), 18, + ACTIONS(1777), 18, anon_sym_RPAREN, anon_sym_COLON, anon_sym_in, @@ -62880,10 +64110,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [45957] = 2, + [48600] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1079), 19, + ACTIONS(1782), 19, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -62903,10 +64133,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [45982] = 2, + [48625] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1652), 1, + anon_sym_not, + ACTIONS(1660), 1, + anon_sym_is, + ACTIONS(1763), 1, + anon_sym_EQ, + STATE(856), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1658), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1640), 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(1761), 7, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_if, + anon_sym_and, + anon_sym_or, + sym__semicolon, + [48662] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(1701), 1, + anon_sym_DASH, + ACTIONS(1709), 1, + sym_integer, + ACTIONS(1711), 1, + sym_float, + ACTIONS(1784), 1, + sym_identifier, + ACTIONS(1786), 1, + anon_sym_RBRACE, + ACTIONS(1788), 1, + anon_sym_STAR_STAR, + STATE(1119), 1, + sym_template_string, + STATE(1120), 1, + sym_string, + STATE(1273), 1, + sym_match_key_value_pattern, + STATE(1337), 1, + sym_match_double_star_pattern, + STATE(977), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1471), 2, + sym_match_literal_pattern, + sym_match_value_pattern, + ACTIONS(1713), 3, + sym_true, + sym_false, + sym_none, + [48715] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(265), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(825), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(298), 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, + [48744] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1748), 19, + ACTIONS(1149), 19, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -62926,39 +64247,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46007] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1720), 1, - anon_sym_EQ, - ACTIONS(1753), 1, - anon_sym_not, - ACTIONS(1759), 1, - anon_sym_is, - STATE(835), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(1756), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1750), 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(1715), 7, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_if, - anon_sym_and, - anon_sym_or, - sym__semicolon, - [46044] = 2, + [48769] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 19, + ACTIONS(1790), 19, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -62978,28 +64270,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46069] = 8, + [48794] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(1701), 1, + anon_sym_DASH, + ACTIONS(1709), 1, + sym_integer, + ACTIONS(1711), 1, + sym_float, + ACTIONS(1784), 1, + sym_identifier, + ACTIONS(1788), 1, + anon_sym_STAR_STAR, + ACTIONS(1792), 1, + anon_sym_RBRACE, + STATE(1119), 1, + sym_template_string, + STATE(1120), 1, + sym_string, + STATE(1339), 1, + sym_match_double_star_pattern, + STATE(1344), 1, + sym_match_key_value_pattern, + STATE(977), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1471), 2, + sym_match_literal_pattern, + sym_match_value_pattern, + ACTIONS(1713), 3, + sym_true, + sym_false, + sym_none, + [48847] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1618), 1, + ACTIONS(1750), 1, + anon_sym_EQ, + ACTIONS(1797), 1, anon_sym_not, - ACTIONS(1626), 1, + ACTIONS(1803), 1, anon_sym_is, - ACTIONS(1713), 1, - anon_sym_EQ, - STATE(835), 1, + STATE(856), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1624), 2, + ACTIONS(1800), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1606), 6, + ACTIONS(1794), 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(1711), 7, + ACTIONS(1745), 7, sym__newline, anon_sym_from, anon_sym_COMMA, @@ -63007,42 +64336,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, sym__semicolon, - [46106] = 4, + [48884] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(260), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(826), 3, + ACTIONS(1806), 19, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(293), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_PIPE, + 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, + [48909] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(1701), 1, anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, + ACTIONS(1709), 1, + sym_integer, + ACTIONS(1711), 1, + sym_float, + ACTIONS(1784), 1, + sym_identifier, + ACTIONS(1788), 1, anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [46135] = 4, + ACTIONS(1808), 1, + anon_sym_RBRACE, + STATE(1119), 1, + sym_template_string, + STATE(1120), 1, + sym_string, + STATE(1313), 1, + sym_match_double_star_pattern, + STATE(1344), 1, + sym_match_key_value_pattern, + STATE(977), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1471), 2, + sym_match_literal_pattern, + sym_match_value_pattern, + ACTIONS(1713), 3, + sym_true, + sym_false, + sym_none, + [48962] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1021), 2, + ACTIONS(1088), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1764), 3, + ACTIONS(1810), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(1016), 14, + ACTIONS(1083), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -63057,49 +64421,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [46164] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1766), 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, - [46189] = 7, + [48991] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 1, + ACTIONS(1815), 1, anon_sym_not, - ACTIONS(1777), 1, + ACTIONS(1821), 1, anon_sym_is, - STATE(841), 1, + STATE(860), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1774), 2, + ACTIONS(1818), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1768), 6, + ACTIONS(1812), 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(1715), 7, + ACTIONS(1745), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -63107,14 +64448,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_and, anon_sym_or, - [46223] = 4, + [49025] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1780), 1, + ACTIONS(1824), 1, anon_sym_COMMA, - STATE(832), 1, + STATE(848), 1, aux_sym__patterns_repeat1, - ACTIONS(1782), 16, + ACTIONS(1826), 16, anon_sym_COLON, anon_sym_in, anon_sym_EQ, @@ -63131,26 +64472,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46251] = 7, + [49053] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1511), 1, + anon_sym_DOT, + ACTIONS(1513), 1, + anon_sym_LPAREN, + ACTIONS(1523), 1, + anon_sym_PIPE, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_STAR_STAR, + ACTIONS(1537), 1, + anon_sym_AMP, + ACTIONS(1539), 1, + anon_sym_CARET, + ACTIONS(1517), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1519), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1525), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(642), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1533), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [49099] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1651), 1, + ACTIONS(1685), 1, anon_sym_not, - ACTIONS(1659), 1, + ACTIONS(1693), 1, anon_sym_is, - STATE(841), 1, + STATE(860), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1657), 2, + ACTIONS(1691), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1639), 6, + ACTIONS(1673), 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(1711), 7, + ACTIONS(1761), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -63158,113 +64532,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_and, anon_sym_or, - [46285] = 13, + [49133] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1453), 1, - anon_sym_DOT, - ACTIONS(1455), 1, + ACTIONS(1828), 1, + sym_identifier, + ACTIONS(1830), 1, anon_sym_LPAREN, - ACTIONS(1471), 1, - anon_sym_LBRACK, - ACTIONS(1509), 1, - anon_sym_PIPE, - ACTIONS(1513), 1, - anon_sym_STAR_STAR, - ACTIONS(1519), 1, - anon_sym_AMP, - ACTIONS(1521), 1, - anon_sym_CARET, - ACTIONS(1503), 2, + ACTIONS(1832), 1, anon_sym_STAR, + ACTIONS(1834), 1, + anon_sym_COLON, + ACTIONS(1836), 1, + anon_sym_STAR_STAR, + ACTIONS(1838), 1, anon_sym_SLASH, - ACTIONS(1505), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1511), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(593), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1515), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [46331] = 12, + STATE(1276), 1, + sym_parameter, + STATE(1448), 1, + sym_lambda_parameters, + STATE(1474), 1, + sym__parameters, + STATE(1331), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(1278), 6, + sym_tuple_pattern, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [49176] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1784), 1, + ACTIONS(1828), 1, sym_identifier, - ACTIONS(1786), 1, + ACTIONS(1830), 1, anon_sym_LPAREN, - ACTIONS(1788), 1, + ACTIONS(1832), 1, anon_sym_STAR, - ACTIONS(1790), 1, - anon_sym_COLON, - ACTIONS(1792), 1, + ACTIONS(1836), 1, anon_sym_STAR_STAR, - ACTIONS(1794), 1, + ACTIONS(1838), 1, anon_sym_SLASH, - STATE(1195), 1, + ACTIONS(1840), 1, + anon_sym_COLON, + STATE(1276), 1, sym_parameter, - STATE(1436), 1, + STATE(1435), 1, sym_lambda_parameters, - STATE(1476), 1, + STATE(1474), 1, sym__parameters, - STATE(1295), 2, + STATE(1331), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1204), 6, + STATE(1278), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [46374] = 12, + [49219] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1784), 1, + ACTIONS(1828), 1, sym_identifier, - ACTIONS(1786), 1, + ACTIONS(1830), 1, anon_sym_LPAREN, - ACTIONS(1788), 1, + ACTIONS(1832), 1, anon_sym_STAR, - ACTIONS(1792), 1, + ACTIONS(1836), 1, anon_sym_STAR_STAR, - ACTIONS(1794), 1, + ACTIONS(1838), 1, anon_sym_SLASH, - ACTIONS(1796), 1, + ACTIONS(1842), 1, anon_sym_COLON, - STATE(1195), 1, + STATE(1276), 1, sym_parameter, - STATE(1370), 1, + STATE(1423), 1, sym_lambda_parameters, - STATE(1476), 1, + STATE(1474), 1, sym__parameters, - STATE(1295), 2, + STATE(1331), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1204), 6, + STATE(1278), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [46417] = 6, + [49262] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1798), 1, + ACTIONS(1844), 1, anon_sym_COMMA, - ACTIONS(1800), 1, + ACTIONS(1846), 1, anon_sym_COLON, - ACTIONS(1802), 1, + ACTIONS(1848), 1, anon_sym_EQ, - STATE(842), 1, + STATE(861), 1, aux_sym__patterns_repeat1, - ACTIONS(1804), 13, + ACTIONS(1850), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -63278,232 +64650,190 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46448] = 12, + [49293] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1784), 1, + ACTIONS(1828), 1, sym_identifier, - ACTIONS(1786), 1, + ACTIONS(1830), 1, anon_sym_LPAREN, - ACTIONS(1788), 1, + ACTIONS(1832), 1, anon_sym_STAR, - ACTIONS(1792), 1, + ACTIONS(1836), 1, anon_sym_STAR_STAR, - ACTIONS(1794), 1, + ACTIONS(1838), 1, anon_sym_SLASH, - ACTIONS(1806), 1, + ACTIONS(1852), 1, anon_sym_COLON, - STATE(1195), 1, + STATE(1276), 1, sym_parameter, - STATE(1393), 1, + STATE(1397), 1, sym_lambda_parameters, - STATE(1476), 1, + STATE(1474), 1, sym__parameters, - STATE(1295), 2, + STATE(1331), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1204), 6, + STATE(1278), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [46491] = 12, + [49336] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1784), 1, + ACTIONS(1828), 1, sym_identifier, - ACTIONS(1786), 1, + ACTIONS(1830), 1, anon_sym_LPAREN, - ACTIONS(1788), 1, + ACTIONS(1832), 1, anon_sym_STAR, - ACTIONS(1792), 1, + ACTIONS(1836), 1, anon_sym_STAR_STAR, - ACTIONS(1794), 1, + ACTIONS(1838), 1, anon_sym_SLASH, - ACTIONS(1808), 1, + ACTIONS(1854), 1, anon_sym_COLON, - STATE(1195), 1, + STATE(1276), 1, sym_parameter, - STATE(1356), 1, + STATE(1472), 1, sym_lambda_parameters, - STATE(1476), 1, + STATE(1474), 1, sym__parameters, - STATE(1295), 2, + STATE(1331), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1204), 6, + STATE(1278), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [46534] = 12, + [49379] = 13, ACTIONS(3), 1, sym_comment, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(1701), 1, + anon_sym_DASH, + ACTIONS(1709), 1, + sym_integer, + ACTIONS(1711), 1, + sym_float, ACTIONS(1784), 1, sym_identifier, - ACTIONS(1786), 1, + STATE(1119), 1, + sym_template_string, + STATE(1120), 1, + sym_string, + STATE(1344), 1, + sym_match_key_value_pattern, + STATE(977), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1471), 2, + sym_match_literal_pattern, + sym_match_value_pattern, + ACTIONS(1713), 3, + sym_true, + sym_false, + sym_none, + [49423] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1830), 1, anon_sym_LPAREN, - ACTIONS(1788), 1, + ACTIONS(1832), 1, anon_sym_STAR, - ACTIONS(1792), 1, + ACTIONS(1836), 1, anon_sym_STAR_STAR, - ACTIONS(1794), 1, + ACTIONS(1838), 1, anon_sym_SLASH, - ACTIONS(1810), 1, - anon_sym_COLON, - STATE(1195), 1, + ACTIONS(1856), 1, + sym_identifier, + ACTIONS(1858), 1, + anon_sym_RPAREN, + STATE(1229), 1, sym_parameter, - STATE(1467), 1, - sym_lambda_parameters, - STATE(1476), 1, + STATE(1473), 1, sym__parameters, - STATE(1295), 2, + STATE(1222), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1204), 6, + STATE(1278), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [46577] = 11, + [49463] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1830), 1, anon_sym_LPAREN, - ACTIONS(1788), 1, + ACTIONS(1832), 1, anon_sym_STAR, - ACTIONS(1792), 1, + ACTIONS(1836), 1, anon_sym_STAR_STAR, - ACTIONS(1794), 1, + ACTIONS(1838), 1, anon_sym_SLASH, - ACTIONS(1812), 1, + ACTIONS(1856), 1, sym_identifier, - ACTIONS(1814), 1, + ACTIONS(1860), 1, anon_sym_RPAREN, - STATE(1248), 1, + STATE(1288), 1, sym_parameter, - STATE(1377), 1, - sym__parameters, - STATE(1255), 2, + STATE(1222), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1204), 6, + STATE(1278), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [46617] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(1671), 1, - anon_sym_DASH, - ACTIONS(1679), 1, - sym_integer, - ACTIONS(1681), 1, - sym_float, - ACTIONS(1816), 1, - sym_identifier, - ACTIONS(1818), 1, - anon_sym_RBRACE, - ACTIONS(1820), 1, - anon_sym_STAR_STAR, - STATE(942), 1, - sym_concatenated_string, - STATE(1101), 1, - sym_string, - STATE(1287), 1, - sym_match_double_star_pattern, - STATE(1336), 1, - sym_match_key_value_pattern, - STATE(1477), 2, - sym_match_literal_pattern, - sym_match_value_pattern, - ACTIONS(1683), 3, - sym_true, - sym_false, - sym_none, - [46663] = 14, + [49500] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(1671), 1, - anon_sym_DASH, - ACTIONS(1679), 1, - sym_integer, - ACTIONS(1681), 1, - sym_float, - ACTIONS(1816), 1, - sym_identifier, - ACTIONS(1820), 1, + ACTIONS(1830), 1, + anon_sym_LPAREN, + ACTIONS(1832), 1, + anon_sym_STAR, + ACTIONS(1836), 1, anon_sym_STAR_STAR, - ACTIONS(1822), 1, - anon_sym_RBRACE, - STATE(942), 1, - sym_concatenated_string, - STATE(1101), 1, - sym_string, - STATE(1232), 1, - sym_match_key_value_pattern, - STATE(1323), 1, - sym_match_double_star_pattern, - STATE(1477), 2, - sym_match_literal_pattern, - sym_match_value_pattern, - ACTIONS(1683), 3, - sym_true, - sym_false, - sym_none, - [46709] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(1671), 1, - anon_sym_DASH, - ACTIONS(1679), 1, - sym_integer, - ACTIONS(1681), 1, - sym_float, - ACTIONS(1816), 1, + ACTIONS(1838), 1, + anon_sym_SLASH, + ACTIONS(1856), 1, sym_identifier, - ACTIONS(1820), 1, - anon_sym_STAR_STAR, - ACTIONS(1824), 1, - anon_sym_RBRACE, - STATE(942), 1, - sym_concatenated_string, - STATE(1101), 1, - sym_string, - STATE(1336), 1, - sym_match_key_value_pattern, - STATE(1351), 1, - sym_match_double_star_pattern, - STATE(1477), 2, - sym_match_literal_pattern, - sym_match_value_pattern, - ACTIONS(1683), 3, - sym_true, - sym_false, - sym_none, - [46755] = 4, + ACTIONS(1862), 1, + anon_sym_RPAREN, + STATE(1288), 1, + sym_parameter, + STATE(1222), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(1278), 6, + sym_tuple_pattern, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [49537] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1800), 1, + ACTIONS(1846), 1, anon_sym_COLON, - ACTIONS(1802), 1, + ACTIONS(1848), 1, anon_sym_EQ, - ACTIONS(1804), 13, + ACTIONS(1850), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -63517,189 +64847,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46780] = 10, + [49562] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1784), 1, + ACTIONS(1828), 1, sym_identifier, - ACTIONS(1786), 1, + ACTIONS(1830), 1, anon_sym_LPAREN, - ACTIONS(1788), 1, + ACTIONS(1832), 1, anon_sym_STAR, - ACTIONS(1792), 1, + ACTIONS(1836), 1, anon_sym_STAR_STAR, - ACTIONS(1794), 1, + ACTIONS(1838), 1, anon_sym_SLASH, - ACTIONS(1826), 1, + ACTIONS(1862), 1, anon_sym_COLON, - STATE(1192), 1, - sym_parameter, - STATE(1295), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(1204), 6, - sym_tuple_pattern, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [46817] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1786), 1, - anon_sym_LPAREN, - ACTIONS(1788), 1, - anon_sym_STAR, - ACTIONS(1792), 1, - anon_sym_STAR_STAR, - ACTIONS(1794), 1, - anon_sym_SLASH, - ACTIONS(1812), 1, - sym_identifier, - ACTIONS(1826), 1, - anon_sym_RPAREN, - STATE(1192), 1, + STATE(1288), 1, sym_parameter, - STATE(1255), 2, + STATE(1331), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1204), 6, + STATE(1278), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [46854] = 10, + [49599] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1784), 1, - sym_identifier, - ACTIONS(1786), 1, - anon_sym_LPAREN, - ACTIONS(1788), 1, - anon_sym_STAR, - ACTIONS(1792), 1, - anon_sym_STAR_STAR, - ACTIONS(1794), 1, - anon_sym_SLASH, ACTIONS(1828), 1, - anon_sym_COLON, - STATE(1192), 1, - sym_parameter, - STATE(1295), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(1204), 6, - sym_tuple_pattern, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [46891] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1786), 1, + sym_identifier, + ACTIONS(1830), 1, anon_sym_LPAREN, - ACTIONS(1788), 1, + ACTIONS(1832), 1, anon_sym_STAR, - ACTIONS(1792), 1, + ACTIONS(1836), 1, anon_sym_STAR_STAR, - ACTIONS(1794), 1, + ACTIONS(1838), 1, anon_sym_SLASH, - ACTIONS(1812), 1, - sym_identifier, - ACTIONS(1828), 1, - anon_sym_RPAREN, - STATE(1192), 1, + ACTIONS(1860), 1, + anon_sym_COLON, + STATE(1288), 1, sym_parameter, - STATE(1255), 2, + STATE(1331), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1204), 6, + STATE(1278), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [46928] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1832), 1, - anon_sym_as, - ACTIONS(1830), 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, - [46950] = 9, + [49636] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1784), 1, + ACTIONS(1828), 1, sym_identifier, - ACTIONS(1786), 1, + ACTIONS(1830), 1, anon_sym_LPAREN, - ACTIONS(1788), 1, + ACTIONS(1832), 1, anon_sym_STAR, - ACTIONS(1792), 1, + ACTIONS(1836), 1, anon_sym_STAR_STAR, - ACTIONS(1794), 1, + ACTIONS(1838), 1, anon_sym_SLASH, - STATE(1192), 1, + STATE(1288), 1, sym_parameter, - STATE(1295), 2, + STATE(1331), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1204), 6, + STATE(1278), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [46984] = 9, + [49670] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1830), 1, anon_sym_LPAREN, - ACTIONS(1788), 1, + ACTIONS(1832), 1, anon_sym_STAR, - ACTIONS(1792), 1, + ACTIONS(1836), 1, anon_sym_STAR_STAR, - ACTIONS(1794), 1, + ACTIONS(1838), 1, anon_sym_SLASH, - ACTIONS(1812), 1, + ACTIONS(1856), 1, sym_identifier, - STATE(1192), 1, + STATE(1288), 1, sym_parameter, - STATE(1255), 2, + STATE(1222), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1204), 6, + STATE(1278), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [47018] = 3, + [49704] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, + ACTIONS(1866), 1, anon_sym_as, - ACTIONS(1457), 13, + ACTIONS(1864), 13, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -63713,40 +64970,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, sym_type_conversion, - [47040] = 11, + [49726] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(1671), 1, - anon_sym_DASH, - ACTIONS(1679), 1, - sym_integer, - ACTIONS(1681), 1, - sym_float, - ACTIONS(1816), 1, - sym_identifier, - STATE(942), 1, - sym_concatenated_string, - STATE(1101), 1, - sym_string, - STATE(1336), 1, - sym_match_key_value_pattern, - STATE(1477), 2, - sym_match_literal_pattern, - sym_match_value_pattern, - ACTIONS(1683), 3, - sym_true, - sym_false, - sym_none, - [47077] = 4, + ACTIONS(1531), 1, + anon_sym_as, + ACTIONS(1515), 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, + [49748] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1836), 1, + ACTIONS(1870), 1, anon_sym_DOT, - STATE(865), 1, + STATE(881), 1, aux_sym_match_value_pattern_repeat1, - ACTIONS(1834), 10, + ACTIONS(1868), 10, anon_sym_import, anon_sym_LPAREN, anon_sym_RPAREN, @@ -63757,12 +65007,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [47099] = 3, + [49770] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1873), 1, + anon_sym_DOT, + ACTIONS(1875), 1, + anon_sym_LPAREN, + STATE(902), 1, + aux_sym_match_value_pattern_repeat1, + ACTIONS(1877), 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, + [49793] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, + ACTIONS(1881), 1, anon_sym_and, - ACTIONS(1839), 10, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1879), 9, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -63771,123 +65041,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_EQ, - anon_sym_or, sym_type_conversion, - [47118] = 12, + [49814] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(1885), 1, + anon_sym_as, + ACTIONS(1887), 1, + anon_sym_and, + ACTIONS(1889), 1, + anon_sym_or, + ACTIONS(1879), 8, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(1845), 1, anon_sym_if, - ACTIONS(1847), 1, anon_sym_COLON, - ACTIONS(1849), 1, anon_sym_async, - ACTIONS(1851), 1, anon_sym_for, - ACTIONS(1853), 1, + anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(1855), 1, + [49837] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1881), 1, anon_sym_and, - ACTIONS(1857), 1, + ACTIONS(1883), 1, anon_sym_or, - STATE(916), 1, - sym_for_in_clause, - STATE(1061), 1, - aux_sym__collection_elements_repeat1, - STATE(1366), 1, - sym__comprehension_clauses, - [47155] = 12, + ACTIONS(1893), 1, + anon_sym_COMMA, + ACTIONS(1895), 1, + anon_sym_if, + STATE(982), 1, + aux_sym_expression_list_repeat1, + ACTIONS(1891), 6, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + [49864] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(1887), 1, + anon_sym_and, + ACTIONS(1889), 1, + anon_sym_or, + ACTIONS(1897), 1, anon_sym_COMMA, - ACTIONS(1845), 1, + ACTIONS(1899), 1, anon_sym_if, - ACTIONS(1847), 1, + ACTIONS(1901), 1, anon_sym_COLON, - ACTIONS(1849), 1, + ACTIONS(1903), 1, anon_sym_async, - ACTIONS(1851), 1, + ACTIONS(1905), 1, anon_sym_for, - ACTIONS(1853), 1, + ACTIONS(1907), 1, anon_sym_RBRACE, - ACTIONS(1855), 1, - anon_sym_and, - ACTIONS(1857), 1, - anon_sym_or, - STATE(916), 1, + STATE(936), 1, sym_for_in_clause, - STATE(1061), 1, + STATE(1079), 1, aux_sym__collection_elements_repeat1, - STATE(1439), 1, + STATE(1455), 1, sym__comprehension_clauses, - [47192] = 5, + [49901] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, - anon_sym_DOT, - ACTIONS(1861), 1, - anon_sym_LPAREN, - STATE(865), 1, - aux_sym_match_value_pattern_repeat1, - ACTIONS(1863), 8, - anon_sym_RPAREN, + ACTIONS(1887), 1, + anon_sym_and, + ACTIONS(1889), 1, + anon_sym_or, + ACTIONS(1897), 1, anon_sym_COMMA, - anon_sym_as, + ACTIONS(1899), 1, anon_sym_if, + ACTIONS(1901), 1, anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, + ACTIONS(1903), 1, + anon_sym_async, + ACTIONS(1905), 1, + anon_sym_for, + ACTIONS(1907), 1, anon_sym_RBRACE, - [47215] = 7, + STATE(936), 1, + sym_for_in_clause, + STATE(1079), 1, + aux_sym__collection_elements_repeat1, + STATE(1403), 1, + sym__comprehension_clauses, + [49938] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, + ACTIONS(1887), 1, anon_sym_and, - ACTIONS(1867), 1, - anon_sym_COMMA, - ACTIONS(1869), 1, - anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(1889), 1, anon_sym_or, - STATE(936), 1, - aux_sym_expression_list_repeat1, - ACTIONS(1865), 6, + ACTIONS(1899), 1, + anon_sym_if, + ACTIONS(1911), 1, + anon_sym_as, + ACTIONS(1909), 7, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [47242] = 4, + [49963] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, + ACTIONS(1881), 1, anon_sym_and, - ACTIONS(1871), 1, + ACTIONS(1883), 1, anon_sym_or, - ACTIONS(1873), 9, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(1913), 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, - [47263] = 5, + [49986] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, + ACTIONS(1881), 1, anon_sym_and, - ACTIONS(1869), 1, - anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(1883), 1, anon_sym_or, - ACTIONS(1875), 8, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(1915), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -63896,50 +65185,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_EQ, sym_type_conversion, - [47286] = 4, + [50009] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, - anon_sym_and, - ACTIONS(1871), 1, - anon_sym_or, - ACTIONS(1877), 9, + ACTIONS(627), 1, + sym__template_string_start, + STATE(689), 2, + sym_template_string, + aux_sym_concatenated_template_string_repeat1, + ACTIONS(1917), 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, - [47307] = 4, + [50030] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, - anon_sym_and, - ACTIONS(1871), 1, - anon_sym_or, - ACTIONS(1839), 9, + ACTIONS(625), 1, + sym__string_start, + STATE(691), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1917), 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, - [47328] = 5, + [50051] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1855), 1, + ACTIONS(1887), 1, anon_sym_and, - ACTIONS(1857), 1, + ACTIONS(1889), 1, anon_sym_or, - ACTIONS(1879), 1, + ACTIONS(1921), 1, anon_sym_as, - ACTIONS(1873), 8, + ACTIONS(1919), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -63948,16 +65237,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [47351] = 5, + [50074] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, - anon_sym_and, - ACTIONS(1869), 1, + ACTIONS(1868), 11, + anon_sym_import, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_if, - ACTIONS(1871), 1, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [50091] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, anon_sym_or, - ACTIONS(1881), 8, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(1909), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -63966,35 +65270,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_EQ, sym_type_conversion, - [47374] = 6, + [50114] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1845), 1, - anon_sym_if, - ACTIONS(1855), 1, + ACTIONS(1881), 1, anon_sym_and, - ACTIONS(1857), 1, - anon_sym_or, ACTIONS(1883), 1, - anon_sym_as, - ACTIONS(1875), 7, + anon_sym_or, + ACTIONS(1919), 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, - [47399] = 5, + anon_sym_EQ, + sym_type_conversion, + [50135] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1855), 1, + ACTIONS(1887), 1, anon_sym_and, - ACTIONS(1857), 1, - anon_sym_or, - ACTIONS(1885), 1, + ACTIONS(1925), 1, anon_sym_as, - ACTIONS(1877), 8, + ACTIONS(1923), 9, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -64003,32 +65303,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [47422] = 5, + anon_sym_or, + [50156] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, + ACTIONS(1887), 1, anon_sym_and, - ACTIONS(1869), 1, - anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(1889), 1, anon_sym_or, - ACTIONS(1887), 8, + ACTIONS(1899), 1, + anon_sym_if, + ACTIONS(1927), 1, + anon_sym_as, + ACTIONS(1915), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [47445] = 4, + [50181] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1855), 1, + ACTIONS(1887), 1, anon_sym_and, ACTIONS(1889), 1, + anon_sym_or, + ACTIONS(1925), 1, anon_sym_as, - ACTIONS(1839), 9, + ACTIONS(1923), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -64037,50 +65341,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_or, - [47466] = 5, + [50204] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1855), 1, + ACTIONS(1881), 1, anon_sym_and, - ACTIONS(1857), 1, - anon_sym_or, - ACTIONS(1889), 1, - anon_sym_as, - ACTIONS(1839), 8, + ACTIONS(1923), 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, - [47489] = 2, + anon_sym_EQ, + anon_sym_or, + sym_type_conversion, + [50223] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1834), 11, - anon_sym_import, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1923), 9, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_PIPE, + anon_sym_else, anon_sym_RBRACK, anon_sym_RBRACE, - [47506] = 5, + anon_sym_EQ, + sym_type_conversion, + [50244] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, + ACTIONS(1873), 1, anon_sym_DOT, - ACTIONS(1891), 1, + ACTIONS(1929), 1, anon_sym_LPAREN, - STATE(869), 1, + STATE(881), 1, aux_sym_match_value_pattern_repeat1, - ACTIONS(1893), 8, + ACTIONS(1931), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -64089,43 +65392,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [47529] = 12, + [50267] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1845), 1, + ACTIONS(1887), 1, + anon_sym_and, + ACTIONS(1889), 1, + anon_sym_or, + ACTIONS(1899), 1, anon_sym_if, - ACTIONS(1849), 1, + ACTIONS(1903), 1, anon_sym_async, - ACTIONS(1851), 1, + ACTIONS(1905), 1, anon_sym_for, - ACTIONS(1855), 1, - anon_sym_and, - ACTIONS(1857), 1, - anon_sym_or, - ACTIONS(1895), 1, + ACTIONS(1933), 1, anon_sym_RPAREN, - ACTIONS(1897), 1, + ACTIONS(1935), 1, anon_sym_COMMA, - ACTIONS(1900), 1, + ACTIONS(1938), 1, anon_sym_as, - STATE(916), 1, + STATE(936), 1, sym_for_in_clause, - STATE(1061), 1, + STATE(1079), 1, aux_sym__collection_elements_repeat1, - STATE(1362), 1, + STATE(1400), 1, sym__comprehension_clauses, - [47566] = 6, + [50304] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1845), 1, - anon_sym_if, - ACTIONS(1855), 1, + ACTIONS(1887), 1, anon_sym_and, - ACTIONS(1857), 1, + ACTIONS(1889), 1, anon_sym_or, - ACTIONS(1902), 1, + ACTIONS(1899), 1, + anon_sym_if, + ACTIONS(1940), 1, anon_sym_as, - ACTIONS(1881), 7, + ACTIONS(1913), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -64133,260 +65436,476 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [47591] = 4, + [50329] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(618), 1, - sym__string_start, - STATE(643), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1904), 8, - anon_sym_RPAREN, + ACTIONS(1887), 1, + anon_sym_and, + ACTIONS(1889), 1, + anon_sym_or, + ACTIONS(1897), 1, anon_sym_COMMA, - anon_sym_as, + ACTIONS(1899), 1, anon_sym_if, + ACTIONS(1901), 1, anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, + ACTIONS(1903), 1, + anon_sym_async, + ACTIONS(1905), 1, + anon_sym_for, + ACTIONS(1907), 1, anon_sym_RBRACE, - [47612] = 6, + STATE(936), 1, + sym_for_in_clause, + STATE(1079), 1, + aux_sym__collection_elements_repeat1, + STATE(1463), 1, + sym__comprehension_clauses, + [50366] = 9, + ACTIONS(1942), 1, + anon_sym_LBRACE2, + ACTIONS(1946), 1, + sym__not_escape_sequence, + ACTIONS(1948), 1, + sym_comment, + ACTIONS(1950), 1, + sym__string_end, + STATE(919), 1, + aux_sym_string_repeat1, + STATE(1037), 1, + aux_sym_string_content_repeat1, + STATE(1046), 1, + sym_string_content, + STATE(1054), 1, + sym_interpolation, + ACTIONS(1944), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [50396] = 9, + ACTIONS(1942), 1, + anon_sym_LBRACE2, + ACTIONS(1946), 1, + sym__not_escape_sequence, + ACTIONS(1948), 1, + sym_comment, + ACTIONS(1952), 1, + sym__string_end, + STATE(914), 1, + aux_sym_string_repeat1, + STATE(1037), 1, + aux_sym_string_content_repeat1, + STATE(1046), 1, + sym_string_content, + STATE(1054), 1, + sym_interpolation, + ACTIONS(1944), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [50426] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1887), 1, + anon_sym_and, + ACTIONS(1889), 1, + anon_sym_or, + ACTIONS(1897), 1, + anon_sym_COMMA, + ACTIONS(1899), 1, + anon_sym_if, + ACTIONS(1903), 1, + anon_sym_async, + ACTIONS(1905), 1, + anon_sym_for, + ACTIONS(1907), 1, + anon_sym_RBRACK, + STATE(936), 1, + sym_for_in_clause, + STATE(1079), 1, + aux_sym__collection_elements_repeat1, + STATE(1467), 1, + sym__comprehension_clauses, + [50460] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1845), 1, + ACTIONS(1887), 1, + anon_sym_and, + ACTIONS(1889), 1, + anon_sym_or, + ACTIONS(1899), 1, anon_sym_if, - ACTIONS(1855), 1, + ACTIONS(1903), 1, + anon_sym_async, + ACTIONS(1905), 1, + anon_sym_for, + ACTIONS(1954), 1, + anon_sym_RPAREN, + ACTIONS(1956), 1, + anon_sym_COMMA, + STATE(936), 1, + sym_for_in_clause, + STATE(1264), 1, + aux_sym_argument_list_repeat1, + STATE(1499), 1, + sym__comprehension_clauses, + [50494] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1881), 1, anon_sym_and, - ACTIONS(1857), 1, + ACTIONS(1883), 1, anon_sym_or, - ACTIONS(1906), 1, - anon_sym_as, - ACTIONS(1887), 7, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(1958), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [47637] = 12, + anon_sym_EQ, + sym_type_conversion, + [50516] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1887), 1, + anon_sym_and, + ACTIONS(1889), 1, + anon_sym_or, + ACTIONS(1899), 1, + anon_sym_if, + ACTIONS(1903), 1, + anon_sym_async, + ACTIONS(1905), 1, + anon_sym_for, + ACTIONS(1960), 1, + anon_sym_RPAREN, + ACTIONS(1962), 1, + anon_sym_COMMA, + STATE(936), 1, + sym_for_in_clause, + STATE(1286), 1, + aux_sym_argument_list_repeat1, + STATE(1426), 1, + sym__comprehension_clauses, + [50550] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(1887), 1, + anon_sym_and, + ACTIONS(1889), 1, + anon_sym_or, + ACTIONS(1897), 1, anon_sym_COMMA, - ACTIONS(1845), 1, + ACTIONS(1899), 1, anon_sym_if, - ACTIONS(1847), 1, - anon_sym_COLON, - ACTIONS(1849), 1, + ACTIONS(1903), 1, anon_sym_async, - ACTIONS(1851), 1, + ACTIONS(1905), 1, anon_sym_for, - ACTIONS(1853), 1, + ACTIONS(1907), 1, + anon_sym_RBRACK, + STATE(936), 1, + sym_for_in_clause, + STATE(1079), 1, + aux_sym__collection_elements_repeat1, + STATE(1441), 1, + sym__comprehension_clauses, + [50584] = 9, + ACTIONS(1942), 1, + anon_sym_LBRACE2, + ACTIONS(1946), 1, + sym__not_escape_sequence, + ACTIONS(1948), 1, + sym_comment, + ACTIONS(1964), 1, + sym__string_end, + STATE(922), 1, + aux_sym_string_repeat1, + STATE(1037), 1, + aux_sym_string_content_repeat1, + STATE(1046), 1, + sym_string_content, + STATE(1054), 1, + sym_interpolation, + ACTIONS(1944), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [50614] = 9, + ACTIONS(1942), 1, + anon_sym_LBRACE2, + ACTIONS(1946), 1, + sym__not_escape_sequence, + ACTIONS(1948), 1, + sym_comment, + ACTIONS(1966), 1, + sym__string_end, + STATE(918), 1, + aux_sym_string_repeat1, + STATE(1037), 1, + aux_sym_string_content_repeat1, + STATE(1046), 1, + sym_string_content, + STATE(1054), 1, + sym_interpolation, + ACTIONS(1944), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [50644] = 9, + ACTIONS(1942), 1, + anon_sym_LBRACE2, + ACTIONS(1946), 1, + sym__not_escape_sequence, + ACTIONS(1948), 1, + sym_comment, + ACTIONS(1968), 1, + sym__string_end, + STATE(920), 1, + aux_sym_string_repeat1, + STATE(1037), 1, + aux_sym_string_content_repeat1, + STATE(1046), 1, + sym_string_content, + STATE(1054), 1, + sym_interpolation, + ACTIONS(1944), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [50674] = 9, + ACTIONS(1942), 1, + anon_sym_LBRACE2, + ACTIONS(1946), 1, + sym__not_escape_sequence, + ACTIONS(1948), 1, + sym_comment, + ACTIONS(1970), 1, + sym__string_end, + STATE(923), 1, + aux_sym_string_repeat1, + STATE(1037), 1, + aux_sym_string_content_repeat1, + STATE(1046), 1, + sym_string_content, + STATE(1054), 1, + sym_interpolation, + ACTIONS(1944), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [50704] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1974), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1972), 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, - ACTIONS(1855), 1, + [50722] = 9, + ACTIONS(1948), 1, + sym_comment, + ACTIONS(1976), 1, + anon_sym_LBRACE2, + ACTIONS(1982), 1, + sym__not_escape_sequence, + ACTIONS(1985), 1, + sym__string_end, + STATE(918), 1, + aux_sym_string_repeat1, + STATE(1037), 1, + aux_sym_string_content_repeat1, + STATE(1046), 1, + sym_string_content, + STATE(1054), 1, + sym_interpolation, + ACTIONS(1979), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [50752] = 9, + ACTIONS(1942), 1, + anon_sym_LBRACE2, + ACTIONS(1946), 1, + sym__not_escape_sequence, + ACTIONS(1948), 1, + sym_comment, + ACTIONS(1987), 1, + sym__string_end, + STATE(918), 1, + aux_sym_string_repeat1, + STATE(1037), 1, + aux_sym_string_content_repeat1, + STATE(1046), 1, + sym_string_content, + STATE(1054), 1, + sym_interpolation, + ACTIONS(1944), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [50782] = 9, + ACTIONS(1942), 1, + anon_sym_LBRACE2, + ACTIONS(1946), 1, + sym__not_escape_sequence, + ACTIONS(1948), 1, + sym_comment, + ACTIONS(1989), 1, + sym__string_end, + STATE(918), 1, + aux_sym_string_repeat1, + STATE(1037), 1, + aux_sym_string_content_repeat1, + STATE(1046), 1, + sym_string_content, + STATE(1054), 1, + sym_interpolation, + ACTIONS(1944), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [50812] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1887), 1, anon_sym_and, - ACTIONS(1857), 1, + ACTIONS(1889), 1, anon_sym_or, - STATE(916), 1, + ACTIONS(1897), 1, + anon_sym_COMMA, + ACTIONS(1899), 1, + anon_sym_if, + ACTIONS(1903), 1, + anon_sym_async, + ACTIONS(1905), 1, + anon_sym_for, + ACTIONS(1933), 1, + anon_sym_RPAREN, + STATE(936), 1, sym_for_in_clause, - STATE(1061), 1, + STATE(1079), 1, aux_sym__collection_elements_repeat1, - STATE(1455), 1, + STATE(1400), 1, sym__comprehension_clauses, - [47674] = 9, - ACTIONS(1908), 1, + [50846] = 9, + ACTIONS(1942), 1, anon_sym_LBRACE2, - ACTIONS(1912), 1, + ACTIONS(1946), 1, sym__not_escape_sequence, - ACTIONS(1914), 1, + ACTIONS(1948), 1, sym_comment, - ACTIONS(1916), 1, + ACTIONS(1991), 1, sym__string_end, - STATE(912), 1, + STATE(918), 1, aux_sym_string_repeat1, - STATE(1009), 1, + STATE(1037), 1, aux_sym_string_content_repeat1, - STATE(1013), 1, + STATE(1046), 1, sym_string_content, - STATE(1020), 1, + STATE(1054), 1, sym_interpolation, - ACTIONS(1910), 3, + ACTIONS(1944), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [47704] = 9, - ACTIONS(1908), 1, + [50876] = 9, + ACTIONS(1942), 1, anon_sym_LBRACE2, - ACTIONS(1912), 1, + ACTIONS(1946), 1, sym__not_escape_sequence, - ACTIONS(1914), 1, + ACTIONS(1948), 1, sym_comment, - ACTIONS(1918), 1, + ACTIONS(1993), 1, sym__string_end, - STATE(912), 1, + STATE(918), 1, aux_sym_string_repeat1, - STATE(1009), 1, + STATE(1037), 1, aux_sym_string_content_repeat1, - STATE(1013), 1, + STATE(1046), 1, sym_string_content, - STATE(1020), 1, + STATE(1054), 1, sym_interpolation, - ACTIONS(1910), 3, + ACTIONS(1944), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [47734] = 9, - ACTIONS(1908), 1, + [50906] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1997), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1995), 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, + [50924] = 9, + ACTIONS(1942), 1, anon_sym_LBRACE2, - ACTIONS(1912), 1, + ACTIONS(1946), 1, sym__not_escape_sequence, - ACTIONS(1914), 1, + ACTIONS(1948), 1, sym_comment, - ACTIONS(1920), 1, + ACTIONS(1999), 1, sym__string_end, - STATE(890), 1, + STATE(918), 1, aux_sym_string_repeat1, - STATE(1009), 1, + STATE(1037), 1, aux_sym_string_content_repeat1, - STATE(1013), 1, + STATE(1046), 1, sym_string_content, - STATE(1020), 1, + STATE(1054), 1, sym_interpolation, - ACTIONS(1910), 3, + ACTIONS(1944), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [47764] = 9, - ACTIONS(1908), 1, + [50954] = 9, + ACTIONS(1942), 1, anon_sym_LBRACE2, - ACTIONS(1912), 1, + ACTIONS(1946), 1, sym__not_escape_sequence, - ACTIONS(1914), 1, + ACTIONS(1948), 1, sym_comment, - ACTIONS(1922), 1, + ACTIONS(2001), 1, sym__string_end, - STATE(889), 1, + STATE(929), 1, aux_sym_string_repeat1, - STATE(1009), 1, + STATE(1037), 1, aux_sym_string_content_repeat1, - STATE(1013), 1, + STATE(1046), 1, sym_string_content, - STATE(1020), 1, + STATE(1054), 1, sym_interpolation, - ACTIONS(1910), 3, + ACTIONS(1944), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [47794] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1843), 1, - anon_sym_COMMA, - ACTIONS(1845), 1, - anon_sym_if, - ACTIONS(1849), 1, - anon_sym_async, - ACTIONS(1851), 1, - anon_sym_for, - ACTIONS(1853), 1, - anon_sym_RBRACK, - ACTIONS(1855), 1, - anon_sym_and, - ACTIONS(1857), 1, - anon_sym_or, - STATE(916), 1, - sym_for_in_clause, - STATE(1061), 1, - aux_sym__collection_elements_repeat1, - STATE(1374), 1, - sym__comprehension_clauses, - [47828] = 11, + [50984] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, - anon_sym_COMMA, - ACTIONS(1845), 1, - anon_sym_if, - ACTIONS(1849), 1, - anon_sym_async, - ACTIONS(1851), 1, - anon_sym_for, - ACTIONS(1855), 1, - anon_sym_and, - ACTIONS(1857), 1, - anon_sym_or, - ACTIONS(1924), 1, - anon_sym_RPAREN, - STATE(916), 1, - sym_for_in_clause, - STATE(1061), 1, - aux_sym__collection_elements_repeat1, - STATE(1407), 1, - sym__comprehension_clauses, - [47862] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1845), 1, - anon_sym_if, - ACTIONS(1849), 1, - anon_sym_async, - ACTIONS(1851), 1, - anon_sym_for, - ACTIONS(1855), 1, + ACTIONS(1881), 1, anon_sym_and, - ACTIONS(1857), 1, + ACTIONS(1883), 1, anon_sym_or, - ACTIONS(1926), 1, - anon_sym_RPAREN, - ACTIONS(1928), 1, - anon_sym_COMMA, - STATE(916), 1, - sym_for_in_clause, - STATE(1170), 1, - aux_sym_argument_list_repeat1, - STATE(1407), 1, - sym__comprehension_clauses, - [47896] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1932), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1930), 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, - [47914] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1936), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1934), 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, - [47932] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1841), 1, - anon_sym_and, - ACTIONS(1869), 1, + ACTIONS(1895), 1, anon_sym_if, - ACTIONS(1871), 1, - anon_sym_or, - ACTIONS(1938), 7, + ACTIONS(2003), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -64394,79 +65913,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_EQ, sym_type_conversion, - [47954] = 5, + [51006] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, + ACTIONS(1887), 1, anon_sym_and, - ACTIONS(1869), 1, - anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(1889), 1, anon_sym_or, - ACTIONS(1940), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [47976] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1843), 1, + ACTIONS(1897), 1, anon_sym_COMMA, - ACTIONS(1845), 1, + ACTIONS(1899), 1, anon_sym_if, - ACTIONS(1849), 1, + ACTIONS(1903), 1, anon_sym_async, - ACTIONS(1851), 1, + ACTIONS(1905), 1, anon_sym_for, - ACTIONS(1855), 1, - anon_sym_and, - ACTIONS(1857), 1, - anon_sym_or, - ACTIONS(1942), 1, - anon_sym_RPAREN, - STATE(916), 1, + ACTIONS(1907), 1, + anon_sym_RBRACK, + STATE(936), 1, sym_for_in_clause, - STATE(1061), 1, + STATE(1079), 1, aux_sym__collection_elements_repeat1, - STATE(1448), 1, + STATE(1401), 1, sym__comprehension_clauses, - [48010] = 11, + [51040] = 9, + ACTIONS(1942), 1, + anon_sym_LBRACE2, + ACTIONS(1946), 1, + sym__not_escape_sequence, + ACTIONS(1948), 1, + sym_comment, + ACTIONS(2005), 1, + sym__string_end, + STATE(918), 1, + aux_sym_string_repeat1, + STATE(1037), 1, + aux_sym_string_content_repeat1, + STATE(1046), 1, + sym_string_content, + STATE(1054), 1, + sym_interpolation, + ACTIONS(1944), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [51070] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1845), 1, + ACTIONS(1887), 1, + anon_sym_and, + ACTIONS(1889), 1, + anon_sym_or, + ACTIONS(1897), 1, + anon_sym_COMMA, + ACTIONS(1899), 1, anon_sym_if, - ACTIONS(1849), 1, + ACTIONS(1903), 1, anon_sym_async, - ACTIONS(1851), 1, + ACTIONS(1905), 1, anon_sym_for, - ACTIONS(1855), 1, - anon_sym_and, - ACTIONS(1857), 1, - anon_sym_or, - ACTIONS(1944), 1, + ACTIONS(2007), 1, anon_sym_RPAREN, - ACTIONS(1946), 1, - anon_sym_COMMA, - STATE(916), 1, + STATE(936), 1, sym_for_in_clause, - STATE(1155), 1, - aux_sym_argument_list_repeat1, - STATE(1448), 1, + STATE(1079), 1, + aux_sym__collection_elements_repeat1, + STATE(1426), 1, sym__comprehension_clauses, - [48044] = 5, + [51104] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, + ACTIONS(1881), 1, anon_sym_and, - ACTIONS(1869), 1, - anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(1883), 1, anon_sym_or, - ACTIONS(1948), 7, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2009), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -64474,125 +65997,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_EQ, sym_type_conversion, - [48066] = 9, - ACTIONS(1908), 1, - anon_sym_LBRACE2, - ACTIONS(1912), 1, - sym__not_escape_sequence, - ACTIONS(1914), 1, - sym_comment, - ACTIONS(1950), 1, - sym__string_end, - STATE(904), 1, - aux_sym_string_repeat1, - STATE(1009), 1, - aux_sym_string_content_repeat1, - STATE(1013), 1, - sym_string_content, - STATE(1020), 1, - sym_interpolation, - ACTIONS(1910), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [48096] = 9, - ACTIONS(1908), 1, + [51126] = 9, + ACTIONS(1942), 1, anon_sym_LBRACE2, - ACTIONS(1912), 1, + ACTIONS(1946), 1, sym__not_escape_sequence, - ACTIONS(1914), 1, + ACTIONS(1948), 1, sym_comment, - ACTIONS(1952), 1, + ACTIONS(2011), 1, sym__string_end, - STATE(912), 1, + STATE(925), 1, aux_sym_string_repeat1, - STATE(1009), 1, + STATE(1037), 1, aux_sym_string_content_repeat1, - STATE(1013), 1, + STATE(1046), 1, sym_string_content, - STATE(1020), 1, + STATE(1054), 1, sym_interpolation, - ACTIONS(1910), 3, + ACTIONS(1944), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [48126] = 11, + [51156] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, - anon_sym_COMMA, - ACTIONS(1845), 1, - anon_sym_if, - ACTIONS(1849), 1, - anon_sym_async, - ACTIONS(1851), 1, - anon_sym_for, - ACTIONS(1855), 1, + ACTIONS(1887), 1, anon_sym_and, - ACTIONS(1857), 1, + ACTIONS(1889), 1, anon_sym_or, - ACTIONS(1895), 1, - anon_sym_RPAREN, - STATE(916), 1, - sym_for_in_clause, - STATE(1061), 1, - aux_sym__collection_elements_repeat1, - STATE(1362), 1, - sym__comprehension_clauses, - [48160] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1845), 1, + ACTIONS(1899), 1, anon_sym_if, - ACTIONS(1849), 1, + ACTIONS(1903), 1, anon_sym_async, - ACTIONS(1851), 1, + ACTIONS(1905), 1, anon_sym_for, - ACTIONS(1855), 1, - anon_sym_and, - ACTIONS(1857), 1, - anon_sym_or, - ACTIONS(1954), 1, + ACTIONS(2013), 1, anon_sym_RPAREN, - ACTIONS(1956), 1, + ACTIONS(2015), 1, anon_sym_COMMA, - STATE(916), 1, + STATE(936), 1, sym_for_in_clause, - STATE(1240), 1, + STATE(1188), 1, aux_sym_argument_list_repeat1, - STATE(1362), 1, + STATE(1400), 1, sym__comprehension_clauses, - [48194] = 9, - ACTIONS(1908), 1, - anon_sym_LBRACE2, - ACTIONS(1912), 1, - sym__not_escape_sequence, - ACTIONS(1914), 1, - sym_comment, - ACTIONS(1958), 1, - sym__string_end, - STATE(909), 1, - aux_sym_string_repeat1, - STATE(1009), 1, - aux_sym_string_content_repeat1, - STATE(1013), 1, - sym_string_content, - STATE(1020), 1, - sym_interpolation, - ACTIONS(1910), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [48224] = 5, + [51190] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, + ACTIONS(1881), 1, anon_sym_and, - ACTIONS(1869), 1, - anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(1883), 1, anon_sym_or, - ACTIONS(1960), 7, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2017), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -64600,102 +66058,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_EQ, sym_type_conversion, - [48246] = 9, - ACTIONS(1908), 1, - anon_sym_LBRACE2, - ACTIONS(1912), 1, - sym__not_escape_sequence, - ACTIONS(1914), 1, - sym_comment, - ACTIONS(1962), 1, - sym__string_end, - STATE(912), 1, - aux_sym_string_repeat1, - STATE(1009), 1, - aux_sym_string_content_repeat1, - STATE(1013), 1, - sym_string_content, - STATE(1020), 1, - sym_interpolation, - ACTIONS(1910), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [48276] = 11, + [51212] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(1887), 1, + anon_sym_and, + ACTIONS(1889), 1, + anon_sym_or, + ACTIONS(1897), 1, anon_sym_COMMA, - ACTIONS(1845), 1, + ACTIONS(1899), 1, anon_sym_if, - ACTIONS(1849), 1, + ACTIONS(1903), 1, anon_sym_async, - ACTIONS(1851), 1, + ACTIONS(1905), 1, anon_sym_for, - ACTIONS(1853), 1, - anon_sym_RBRACK, - ACTIONS(1855), 1, - anon_sym_and, - ACTIONS(1857), 1, - anon_sym_or, - STATE(916), 1, + ACTIONS(2019), 1, + anon_sym_RPAREN, + STATE(936), 1, sym_for_in_clause, - STATE(1061), 1, + STATE(1079), 1, aux_sym__collection_elements_repeat1, - STATE(1445), 1, + STATE(1499), 1, sym__comprehension_clauses, - [48310] = 11, + [51246] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, - anon_sym_COMMA, - ACTIONS(1845), 1, - anon_sym_if, - ACTIONS(1849), 1, + ACTIONS(1903), 1, anon_sym_async, - ACTIONS(1851), 1, + ACTIONS(1905), 1, anon_sym_for, - ACTIONS(1853), 1, + ACTIONS(2023), 1, + anon_sym_if, + ACTIONS(2021), 3, + anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(1855), 1, - anon_sym_and, - ACTIONS(1857), 1, - anon_sym_or, - STATE(916), 1, + anon_sym_RBRACE, + STATE(943), 3, sym_for_in_clause, - STATE(1061), 1, - aux_sym__collection_elements_repeat1, - STATE(1363), 1, - sym__comprehension_clauses, - [48344] = 9, - ACTIONS(1914), 1, - sym_comment, - ACTIONS(1964), 1, - anon_sym_LBRACE2, - ACTIONS(1970), 1, - sym__not_escape_sequence, - ACTIONS(1973), 1, - sym__string_end, - STATE(912), 1, - aux_sym_string_repeat1, - STATE(1009), 1, - aux_sym_string_content_repeat1, - STATE(1013), 1, - sym_string_content, - STATE(1020), 1, - sym_interpolation, - ACTIONS(1967), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [48374] = 4, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [51269] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1855), 1, + ACTIONS(1887), 1, anon_sym_and, - ACTIONS(1857), 1, + ACTIONS(1889), 1, anon_sym_or, - ACTIONS(1975), 7, + ACTIONS(2025), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -64703,14 +66113,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [48393] = 4, + [51288] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1979), 1, + ACTIONS(2029), 1, anon_sym_PIPE, - STATE(914), 1, + STATE(944), 1, aux_sym_match_or_pattern_repeat1, - ACTIONS(1977), 7, + ACTIONS(2027), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -64718,14 +66128,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, - [48412] = 4, + [51307] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1984), 1, + ACTIONS(2029), 1, anon_sym_PIPE, - STATE(917), 1, + STATE(938), 1, aux_sym_match_or_pattern_repeat1, - ACTIONS(1982), 7, + ACTIONS(2031), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -64733,96 +66143,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, - [48431] = 6, + [51326] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1849), 1, - anon_sym_async, - ACTIONS(1851), 1, - anon_sym_for, - ACTIONS(1988), 1, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1893), 1, + anon_sym_COMMA, + ACTIONS(1895), 1, anon_sym_if, - ACTIONS(1986), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, + STATE(982), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2033), 4, + anon_sym_COLON, anon_sym_RBRACE, - STATE(922), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [48454] = 4, + anon_sym_EQ, + sym_type_conversion, + [51351] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1984), 1, - anon_sym_PIPE, - STATE(914), 1, - aux_sym_match_or_pattern_repeat1, - ACTIONS(1990), 7, + ACTIONS(1887), 1, + anon_sym_and, + ACTIONS(1889), 1, + anon_sym_or, + ACTIONS(2025), 7, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [48473] = 7, + [51370] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, - anon_sym_and, - ACTIONS(1867), 1, - anon_sym_COMMA, - ACTIONS(1869), 1, + ACTIONS(2037), 1, anon_sym_if, - ACTIONS(1871), 1, - anon_sym_or, - STATE(936), 1, - aux_sym_expression_list_repeat1, - ACTIONS(1992), 4, - anon_sym_COLON, + ACTIONS(2040), 1, + anon_sym_async, + ACTIONS(2043), 1, + anon_sym_for, + ACTIONS(2035), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [48498] = 6, + STATE(942), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [51393] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1996), 1, - anon_sym_if, - ACTIONS(1999), 1, + ACTIONS(1903), 1, anon_sym_async, - ACTIONS(2002), 1, + ACTIONS(1905), 1, anon_sym_for, - ACTIONS(1994), 3, + ACTIONS(2023), 1, + anon_sym_if, + ACTIONS(2046), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - STATE(919), 3, + STATE(942), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [48521] = 4, + [51416] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1855), 1, - anon_sym_and, - ACTIONS(1857), 1, - anon_sym_or, - ACTIONS(1975), 7, + ACTIONS(2050), 1, + anon_sym_PIPE, + STATE(944), 1, + aux_sym_match_or_pattern_repeat1, + ACTIONS(2048), 7, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, - [48540] = 4, + [51435] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1855), 1, + ACTIONS(1887), 1, anon_sym_and, - ACTIONS(1857), 1, + ACTIONS(1889), 1, anon_sym_or, - ACTIONS(1975), 7, + ACTIONS(2025), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -64830,27 +66240,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [48559] = 6, + [51454] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1849), 1, - anon_sym_async, - ACTIONS(1851), 1, - anon_sym_for, - ACTIONS(1988), 1, - anon_sym_if, - ACTIONS(2005), 3, + ACTIONS(2053), 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, - STATE(919), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [48582] = 2, + [51468] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2007), 8, + ACTIONS(2055), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -64859,10 +66264,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [48596] = 2, + [51482] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2009), 8, + ACTIONS(2057), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -64871,24 +66276,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [48610] = 4, + [51496] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2013), 1, - anon_sym_COMMA, - STATE(925), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2011), 6, + ACTIONS(2059), 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, - [48628] = 2, + [51510] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2016), 8, + ACTIONS(2061), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -64897,36 +66300,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [48642] = 2, + [51524] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1830), 8, + ACTIONS(2063), 1, + anon_sym_and, + ACTIONS(2065), 1, + anon_sym_or, + ACTIONS(1879), 6, sym__newline, anon_sym_from, anon_sym_COMMA, anon_sym_if, anon_sym_EQ, - anon_sym_and, - anon_sym_or, sym__semicolon, - [48656] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2020), 1, - anon_sym_COMMA, - STATE(928), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(2018), 6, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - [48674] = 2, + [51542] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1977), 8, + ACTIONS(2067), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -64935,10 +66326,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [48688] = 2, + [51556] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2063), 1, + anon_sym_and, + ACTIONS(2065), 1, + anon_sym_or, + ACTIONS(2069), 1, + anon_sym_if, + ACTIONS(1913), 5, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_EQ, + sym__semicolon, + [51576] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2023), 8, + ACTIONS(2071), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -64947,55 +66353,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [48702] = 4, + [51590] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2027), 1, + ACTIONS(1515), 8, + sym__newline, + anon_sym_from, anon_sym_COMMA, - STATE(963), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(2025), 6, - anon_sym_RPAREN, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - [48720] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(67), 1, - anon_sym_AT, - ACTIONS(2029), 1, - anon_sym_async, - ACTIONS(2031), 1, - anon_sym_def, - ACTIONS(2033), 1, - anon_sym_class, - STATE(501), 2, - sym_function_definition, - sym_class_definition, - STATE(1019), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - [48744] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2037), 1, - anon_sym_COMMA, - STATE(925), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2035), 6, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, anon_sym_EQ, - sym_type_conversion, - [48762] = 2, + anon_sym_and, + anon_sym_or, + sym__semicolon, + [51604] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2039), 8, + ACTIONS(2048), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -65004,10 +66377,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [48776] = 2, + [51618] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2041), 8, + ACTIONS(2073), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -65016,24 +66389,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [48790] = 4, + [51632] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2043), 1, + ACTIONS(2077), 1, anon_sym_COMMA, - STATE(925), 1, + STATE(958), 1, aux_sym_expression_list_repeat1, - ACTIONS(2035), 6, + ACTIONS(2075), 6, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_EQ, sym_type_conversion, - [48808] = 2, + [51650] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2045), 8, + ACTIONS(2080), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -65042,64 +66415,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [48822] = 4, + [51664] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2049), 1, - anon_sym_COMMA, - STATE(928), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(2047), 6, + ACTIONS(67), 1, + anon_sym_AT, + ACTIONS(2082), 1, + anon_sym_async, + ACTIONS(2084), 1, + anon_sym_def, + ACTIONS(2086), 1, + anon_sym_class, + STATE(527), 2, + sym_function_definition, + sym_class_definition, + STATE(1045), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + [51688] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(67), 1, + anon_sym_AT, + ACTIONS(2088), 1, + anon_sym_async, + ACTIONS(2090), 1, + anon_sym_def, + ACTIONS(2092), 1, + anon_sym_class, + STATE(553), 2, + sym_function_definition, + sym_class_definition, + STATE(1045), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + [51712] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2094), 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, - [48840] = 4, + [51726] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2063), 1, anon_sym_and, - ACTIONS(2053), 1, + ACTIONS(2065), 1, anon_sym_or, - ACTIONS(1873), 6, + ACTIONS(2069), 1, + anon_sym_if, + ACTIONS(1909), 5, sym__newline, anon_sym_from, anon_sym_COMMA, - anon_sym_if, anon_sym_EQ, sym__semicolon, - [48858] = 2, + [51746] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1457), 8, - sym__newline, - anon_sym_from, + ACTIONS(2096), 8, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_EQ, - anon_sym_and, - anon_sym_or, - sym__semicolon, - [48872] = 4, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [51760] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1855), 1, - anon_sym_and, - ACTIONS(1857), 1, - anon_sym_or, - ACTIONS(2055), 6, + ACTIONS(2098), 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, - [48890] = 2, + [51774] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1904), 8, + ACTIONS(2100), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -65108,10 +66512,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [48904] = 2, + [51788] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2057), 8, + ACTIONS(1887), 1, + anon_sym_and, + ACTIONS(1889), 1, + anon_sym_or, + ACTIONS(2102), 6, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + [51806] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2104), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -65120,10 +66538,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [48918] = 2, + [51820] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2063), 1, + anon_sym_and, + ACTIONS(2065), 1, + anon_sym_or, + ACTIONS(1923), 6, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_if, + anon_sym_EQ, + sym__semicolon, + [51838] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2063), 1, + anon_sym_and, + ACTIONS(1923), 7, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_if, + anon_sym_EQ, + anon_sym_or, + sym__semicolon, + [51854] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2059), 8, + ACTIONS(2106), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -65132,39 +66577,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [48932] = 4, + [51868] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 1, + ACTIONS(1864), 8, + sym__newline, + anon_sym_from, anon_sym_COMMA, - STATE(938), 1, + anon_sym_if, + anon_sym_EQ, + anon_sym_and, + anon_sym_or, + sym__semicolon, + [51882] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2110), 1, + anon_sym_COMMA, + STATE(988), 1, aux_sym_for_in_clause_repeat1, - ACTIONS(2061), 6, + ACTIONS(2108), 6, anon_sym_RPAREN, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [48950] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2051), 1, - anon_sym_and, - ACTIONS(2053), 1, - anon_sym_or, - ACTIONS(2065), 1, - anon_sym_if, - ACTIONS(1875), 5, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_EQ, - sym__semicolon, - [48970] = 2, + [51900] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2067), 8, + ACTIONS(2112), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -65173,10 +66615,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [48984] = 2, + [51914] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2069), 8, + ACTIONS(2114), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -65185,22 +66627,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [48998] = 2, + [51928] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2071), 8, - anon_sym_RPAREN, + ACTIONS(2118), 1, anon_sym_COMMA, - anon_sym_as, + STATE(976), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(2116), 6, + anon_sym_RPAREN, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [49012] = 2, + [51946] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2073), 8, + ACTIONS(1917), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -65209,61 +66653,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [49026] = 2, + [51960] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2075), 8, - anon_sym_RPAREN, + ACTIONS(2123), 1, anon_sym_COMMA, - anon_sym_as, + STATE(976), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(2121), 6, + anon_sym_RPAREN, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [49040] = 5, + [51978] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2063), 1, anon_sym_and, - ACTIONS(2053), 1, - anon_sym_or, ACTIONS(2065), 1, + anon_sym_or, + ACTIONS(2069), 1, anon_sym_if, - ACTIONS(1887), 5, + ACTIONS(2017), 5, sym__newline, anon_sym_from, anon_sym_COMMA, anon_sym_EQ, sym__semicolon, - [49060] = 2, + [51998] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2077), 8, + ACTIONS(2127), 1, + anon_sym_PIPE, + ACTIONS(2125), 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, - [49074] = 2, + [52014] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2079), 8, + ACTIONS(1873), 1, + anon_sym_DOT, + ACTIONS(1875), 1, + anon_sym_LPAREN, + ACTIONS(2129), 1, + anon_sym_EQ, + STATE(902), 1, + aux_sym_match_value_pattern_repeat1, + ACTIONS(1877), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, anon_sym_PIPE, + [52036] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2133), 1, + anon_sym_COMMA, + STATE(958), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2131), 6, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, - [49088] = 2, + anon_sym_EQ, + sym_type_conversion, + [52054] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2081), 8, + ACTIONS(2135), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -65272,127 +66737,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [49102] = 8, + [52068] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2063), 1, anon_sym_and, - ACTIONS(2053), 1, - anon_sym_or, ACTIONS(2065), 1, - anon_sym_if, - ACTIONS(2083), 1, - anon_sym_from, - ACTIONS(2085), 1, - anon_sym_COMMA, - STATE(1079), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2087), 2, - sym__newline, - sym__semicolon, - [49128] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(67), 1, - anon_sym_AT, - ACTIONS(2089), 1, - anon_sym_async, - ACTIONS(2091), 1, - anon_sym_def, - ACTIONS(2093), 1, - anon_sym_class, - STATE(469), 2, - sym_function_definition, - sym_class_definition, - STATE(1019), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - [49152] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2051), 1, - anon_sym_and, - ACTIONS(2053), 1, anon_sym_or, - ACTIONS(1877), 6, + ACTIONS(1919), 6, sym__newline, anon_sym_from, anon_sym_COMMA, anon_sym_if, anon_sym_EQ, sym__semicolon, - [49170] = 5, + [52086] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2063), 1, anon_sym_and, - ACTIONS(2053), 1, - anon_sym_or, ACTIONS(2065), 1, - anon_sym_if, - ACTIONS(1881), 5, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_EQ, - sym__semicolon, - [49190] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2051), 1, - anon_sym_and, - ACTIONS(2053), 1, anon_sym_or, - ACTIONS(2065), 1, + ACTIONS(2069), 1, anon_sym_if, - ACTIONS(1960), 5, + ACTIONS(1915), 5, sym__newline, anon_sym_from, anon_sym_COMMA, anon_sym_EQ, sym__semicolon, - [49210] = 2, + [52106] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2095), 8, - anon_sym_RPAREN, + ACTIONS(2137), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, + STATE(958), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2131), 6, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [49224] = 2, + anon_sym_EQ, + sym_type_conversion, + [52124] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2097), 8, - anon_sym_RPAREN, + ACTIONS(2141), 1, anon_sym_COMMA, - anon_sym_as, + STATE(978), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(2139), 6, + anon_sym_RPAREN, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [49238] = 4, + [52142] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2101), 1, + ACTIONS(2145), 1, anon_sym_COMMA, - STATE(928), 1, + STATE(976), 1, aux_sym_for_in_clause_repeat1, - ACTIONS(2099), 6, + ACTIONS(2143), 6, anon_sym_RPAREN, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [49256] = 2, + [52160] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 8, + ACTIONS(2063), 1, + anon_sym_and, + ACTIONS(2065), 1, + anon_sym_or, + ACTIONS(2069), 1, + anon_sym_if, + ACTIONS(2147), 1, + anon_sym_from, + ACTIONS(2149), 1, + anon_sym_COMMA, + STATE(1082), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2151), 2, + sym__newline, + sym__semicolon, + [52186] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2153), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -65401,5803 +66838,5872 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [49270] = 6, + [52200] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, - anon_sym_DOT, - ACTIONS(1891), 1, - anon_sym_LPAREN, - ACTIONS(2105), 1, - anon_sym_EQ, - STATE(869), 1, - aux_sym_match_value_pattern_repeat1, - ACTIONS(1893), 4, + ACTIONS(2155), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_PIPE, - [49292] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2051), 1, - anon_sym_and, - ACTIONS(1839), 7, - sym__newline, - anon_sym_from, - anon_sym_COMMA, anon_sym_if, - anon_sym_EQ, - anon_sym_or, - sym__semicolon, - [49308] = 4, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [52214] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(1881), 1, anon_sym_and, - ACTIONS(2053), 1, + ACTIONS(1883), 1, anon_sym_or, - ACTIONS(1839), 6, - sym__newline, - anon_sym_from, - anon_sym_COMMA, + ACTIONS(1895), 1, anon_sym_if, - anon_sym_EQ, - sym__semicolon, - [49326] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2109), 1, - anon_sym_PIPE, - ACTIONS(2107), 7, + ACTIONS(2157), 4, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, - [49342] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2111), 1, - sym_identifier, - ACTIONS(2113), 1, - anon_sym_STAR, - ACTIONS(2115), 1, - anon_sym_STAR_STAR, - STATE(1277), 4, - sym_typevar_parameter, - sym_typevartuple_parameter, - sym_paramspec_parameter, - sym__type_parameter, - [49361] = 3, + [52233] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2117), 1, + ACTIONS(2159), 1, + anon_sym_if, + ACTIONS(2161), 1, anon_sym_and, - ACTIONS(1839), 6, + ACTIONS(2163), 1, + anon_sym_or, + ACTIONS(1915), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_if, anon_sym_COLON, - anon_sym_or, - [49376] = 4, + [52252] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2117), 1, + ACTIONS(2161), 1, anon_sym_and, - ACTIONS(2119), 1, + ACTIONS(2163), 1, anon_sym_or, - ACTIONS(1839), 5, + ACTIONS(1879), 5, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - [49393] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2123), 1, - anon_sym_as, - ACTIONS(2121), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - [49408] = 6, + [52269] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2125), 1, + ACTIONS(2165), 1, anon_sym_except, - ACTIONS(2127), 1, + ACTIONS(2167), 1, anon_sym_finally, - STATE(532), 1, + STATE(549), 1, sym_finally_clause, - STATE(231), 2, + STATE(239), 2, sym_except_group_clause, aux_sym_try_statement_repeat2, - STATE(232), 2, + STATE(259), 2, sym_except_clause, aux_sym_try_statement_repeat1, - [49429] = 7, + [52290] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(1515), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_and, - ACTIONS(2053), 1, anon_sym_or, - ACTIONS(2065), 1, - anon_sym_if, - ACTIONS(2085), 1, - anon_sym_COMMA, - STATE(1079), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2129), 2, - sym__newline, - sym__semicolon, - [49452] = 6, + [52303] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2125), 1, + ACTIONS(2169), 1, anon_sym_except, - ACTIONS(2127), 1, + ACTIONS(2171), 1, + anon_sym_finally, + STATE(478), 1, + sym_finally_clause, + STATE(255), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + STATE(257), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + [52324] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2165), 1, + anon_sym_except, + ACTIONS(2167), 1, anon_sym_finally, - STATE(544), 1, + STATE(469), 1, sym_finally_clause, - STATE(223), 2, + STATE(260), 2, sym_except_group_clause, aux_sym_try_statement_repeat2, - STATE(233), 2, + STATE(261), 2, sym_except_clause, aux_sym_try_statement_repeat1, - [49473] = 5, + [52345] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2117), 1, + ACTIONS(2159), 1, + anon_sym_if, + ACTIONS(2161), 1, anon_sym_and, - ACTIONS(2119), 1, + ACTIONS(2163), 1, anon_sym_or, - ACTIONS(2131), 1, - anon_sym_if, - ACTIONS(1881), 4, + ACTIONS(2175), 1, + anon_sym_as, + ACTIONS(2173), 3, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_COLON, - [49492] = 7, + [52366] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2159), 1, + anon_sym_if, + ACTIONS(2161), 1, anon_sym_and, - ACTIONS(2053), 1, + ACTIONS(2163), 1, anon_sym_or, - ACTIONS(2065), 1, - anon_sym_if, - ACTIONS(2133), 1, + ACTIONS(2177), 1, anon_sym_COMMA, - STATE(1098), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(2135), 2, - sym__newline, - sym__semicolon, - [49515] = 5, + ACTIONS(2179), 1, + anon_sym_as, + ACTIONS(2181), 1, + anon_sym_COLON, + STATE(1178), 1, + aux_sym_exception_list_repeat1, + [52391] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1891), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + [52404] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2063), 1, anon_sym_and, - ACTIONS(2053), 1, - anon_sym_or, ACTIONS(2065), 1, + anon_sym_or, + ACTIONS(2069), 1, anon_sym_if, - ACTIONS(1938), 4, + ACTIONS(2009), 4, sym__newline, anon_sym_from, anon_sym_COMMA, sym__semicolon, - [49534] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2137), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - [49547] = 7, + [52423] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2063), 1, anon_sym_and, - ACTIONS(2053), 1, - anon_sym_or, ACTIONS(2065), 1, + anon_sym_or, + ACTIONS(2069), 1, anon_sym_if, - ACTIONS(2133), 1, - anon_sym_COMMA, - STATE(1116), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(2139), 2, + ACTIONS(1958), 4, sym__newline, + anon_sym_from, + anon_sym_COMMA, sym__semicolon, - [49570] = 5, + [52442] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2111), 1, + ACTIONS(2183), 1, sym_identifier, - ACTIONS(2113), 1, + ACTIONS(2185), 1, anon_sym_STAR, - ACTIONS(2115), 1, + ACTIONS(2187), 1, anon_sym_STAR_STAR, - STATE(1347), 4, + STATE(1327), 4, sym_typevar_parameter, sym_typevartuple_parameter, sym_paramspec_parameter, sym__type_parameter, - [49589] = 2, + [52461] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1457), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, + ACTIONS(2063), 1, anon_sym_and, + ACTIONS(2065), 1, anon_sym_or, - [49602] = 5, + ACTIONS(2069), 1, + anon_sym_if, + ACTIONS(2149), 1, + anon_sym_COMMA, + STATE(1082), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2189), 2, + sym__newline, + sym__semicolon, + [52484] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2117), 1, - anon_sym_and, - ACTIONS(2119), 1, - anon_sym_or, - ACTIONS(2131), 1, - anon_sym_if, - ACTIONS(1887), 4, - anon_sym_RPAREN, + ACTIONS(1903), 1, + anon_sym_async, + ACTIONS(1905), 1, + anon_sym_for, + ACTIONS(2191), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_COLON, - [49621] = 5, + ACTIONS(2193), 1, + anon_sym_RBRACE, + STATE(936), 1, + sym_for_in_clause, + STATE(1207), 1, + aux_sym_dictionary_repeat1, + STATE(1404), 1, + sym__comprehension_clauses, + [52509] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1845), 1, - anon_sym_if, - ACTIONS(1855), 1, + ACTIONS(1887), 1, anon_sym_and, - ACTIONS(1857), 1, + ACTIONS(1889), 1, anon_sym_or, - ACTIONS(2141), 4, + ACTIONS(1899), 1, + anon_sym_if, + ACTIONS(2195), 4, anon_sym_COMMA, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [49640] = 5, + [52528] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, + ACTIONS(2063), 1, anon_sym_and, - ACTIONS(1869), 1, + ACTIONS(2065), 1, + anon_sym_or, + ACTIONS(2069), 1, anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(2197), 1, + anon_sym_COMMA, + STATE(1167), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(2199), 2, + sym__newline, + sym__semicolon, + [52551] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2063), 1, + anon_sym_and, + ACTIONS(2065), 1, anon_sym_or, - ACTIONS(2143), 4, - anon_sym_RPAREN, + ACTIONS(2069), 1, + anon_sym_if, + ACTIONS(2197), 1, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RBRACE, - [49659] = 2, + STATE(1134), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(2201), 2, + sym__newline, + sym__semicolon, + [52574] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2018), 7, + ACTIONS(2009), 7, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, - [49672] = 6, + anon_sym_EQ, + sym_type_conversion, + [52587] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2169), 1, + anon_sym_except, + ACTIONS(2171), 1, + anon_sym_finally, + STATE(551), 1, + sym_finally_clause, + STATE(250), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + STATE(252), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + [52608] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2117), 1, + ACTIONS(2063), 1, anon_sym_and, - ACTIONS(2119), 1, + ACTIONS(2065), 1, anon_sym_or, - ACTIONS(2131), 1, + ACTIONS(2069), 1, anon_sym_if, - ACTIONS(2147), 1, - anon_sym_as, - ACTIONS(2145), 3, - anon_sym_RPAREN, + ACTIONS(2203), 1, anon_sym_COMMA, - anon_sym_COLON, - [49693] = 6, - ACTIONS(1914), 1, + STATE(1130), 1, + aux_sym_print_statement_repeat1, + ACTIONS(2205), 2, + sym__newline, + sym__semicolon, + [52631] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(2149), 1, - anon_sym_LBRACE2, - ACTIONS(2154), 1, - sym__not_escape_sequence, - ACTIONS(2157), 1, - sym__string_end, - STATE(988), 1, - aux_sym_string_content_repeat1, - ACTIONS(2151), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [49714] = 2, + ACTIONS(2207), 1, + sym_identifier, + ACTIONS(2209), 1, + anon_sym_DOT, + ACTIONS(2211), 1, + anon_sym___future__, + STATE(1171), 1, + aux_sym_import_prefix_repeat1, + STATE(1219), 1, + sym_import_prefix, + STATE(1420), 2, + sym_relative_import, + sym_dotted_name, + [52654] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2159), 7, + ACTIONS(2215), 1, + anon_sym_as, + ACTIONS(2213), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, - [49727] = 8, + [52669] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2159), 1, + anon_sym_if, + ACTIONS(2161), 1, + anon_sym_and, + ACTIONS(2163), 1, + anon_sym_or, + ACTIONS(1909), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + [52688] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2183), 1, + sym_identifier, + ACTIONS(2185), 1, + anon_sym_STAR, + ACTIONS(2187), 1, + anon_sym_STAR_STAR, + STATE(1240), 4, + sym_typevar_parameter, + sym_typevartuple_parameter, + sym_paramspec_parameter, + sym__type_parameter, + [52707] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1849), 1, + ACTIONS(1903), 1, anon_sym_async, - ACTIONS(1851), 1, + ACTIONS(1905), 1, anon_sym_for, - ACTIONS(2161), 1, + ACTIONS(2217), 1, anon_sym_COMMA, - ACTIONS(2163), 1, + ACTIONS(2219), 1, anon_sym_RBRACE, - STATE(916), 1, + STATE(936), 1, sym_for_in_clause, - STATE(1265), 1, + STATE(1246), 1, aux_sym_dictionary_repeat1, - STATE(1457), 1, + STATE(1445), 1, sym__comprehension_clauses, - [49752] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2165), 1, - sym_identifier, - ACTIONS(2167), 1, - anon_sym_LPAREN, - ACTIONS(2169), 1, - anon_sym_STAR, - STATE(1055), 1, - sym_dotted_name, - STATE(1117), 1, - sym_aliased_import, - STATE(1293), 1, - sym__import_list, - STATE(1297), 1, - sym_wildcard_import, - [49777] = 6, + [52732] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2171), 1, - anon_sym_except, - ACTIONS(2173), 1, - anon_sym_finally, - STATE(460), 1, - sym_finally_clause, - STATE(229), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - STATE(234), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - [49798] = 7, + ACTIONS(2221), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + [52745] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(1864), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_and, - ACTIONS(2053), 1, anon_sym_or, - ACTIONS(2065), 1, - anon_sym_if, - ACTIONS(2085), 1, + [52758] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2116), 7, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1079), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2175), 2, - sym__newline, - sym__semicolon, - [49821] = 7, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + [52771] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2161), 1, anon_sym_and, - ACTIONS(2053), 1, + ACTIONS(2163), 1, anon_sym_or, - ACTIONS(2065), 1, - anon_sym_if, - ACTIONS(2085), 1, + ACTIONS(1919), 5, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1079), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2177), 2, - sym__newline, - sym__semicolon, - [49844] = 5, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + [52788] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, + ACTIONS(1881), 1, anon_sym_and, - ACTIONS(1869), 1, - anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(1883), 1, anon_sym_or, - ACTIONS(2179), 4, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2223), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [49863] = 8, + [52807] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1849), 1, + ACTIONS(2225), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, anon_sym_async, - ACTIONS(1851), 1, anon_sym_for, - ACTIONS(2181), 1, - anon_sym_COMMA, - ACTIONS(2183), 1, + anon_sym_RBRACK, anon_sym_RBRACE, - STATE(916), 1, - sym_for_in_clause, - STATE(1190), 1, - aux_sym_dictionary_repeat1, - STATE(1360), 1, - sym__comprehension_clauses, - [49888] = 7, + [52820] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2185), 1, - sym_identifier, - ACTIONS(2187), 1, - anon_sym_DOT, - ACTIONS(2189), 1, - anon_sym___future__, - STATE(1108), 1, - aux_sym_import_prefix_repeat1, - STATE(1173), 1, - sym_import_prefix, - STATE(1388), 2, - sym_relative_import, - sym_dotted_name, - [49911] = 5, + ACTIONS(2161), 1, + anon_sym_and, + ACTIONS(1923), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_or, + [52835] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym_and, - ACTIONS(2053), 1, - anon_sym_or, - ACTIONS(2065), 1, - anon_sym_if, - ACTIONS(1948), 4, - sym__newline, - anon_sym_from, + ACTIONS(1903), 1, + anon_sym_async, + ACTIONS(1905), 1, + anon_sym_for, + ACTIONS(2227), 1, anon_sym_COMMA, - sym__semicolon, - [49930] = 7, + ACTIONS(2229), 1, + anon_sym_RBRACE, + STATE(936), 1, + sym_for_in_clause, + STATE(1251), 1, + aux_sym_dictionary_repeat1, + STATE(1462), 1, + sym__comprehension_clauses, + [52860] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2063), 1, anon_sym_and, - ACTIONS(2053), 1, - anon_sym_or, ACTIONS(2065), 1, + anon_sym_or, + ACTIONS(2069), 1, anon_sym_if, - ACTIONS(2191), 1, + ACTIONS(2149), 1, anon_sym_COMMA, - STATE(1097), 1, - aux_sym_print_statement_repeat1, - ACTIONS(2193), 2, + STATE(1082), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2231), 2, sym__newline, sym__semicolon, - [49953] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1865), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [49966] = 4, + [52883] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2117), 1, + ACTIONS(2161), 1, anon_sym_and, - ACTIONS(2119), 1, + ACTIONS(2163), 1, anon_sym_or, - ACTIONS(1873), 5, + ACTIONS(1923), 5, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - [49983] = 6, + [52900] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2171), 1, - anon_sym_except, - ACTIONS(2173), 1, - anon_sym_finally, - STATE(475), 1, - sym_finally_clause, - STATE(226), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - STATE(227), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - [50004] = 2, + ACTIONS(2233), 1, + sym_identifier, + ACTIONS(2235), 1, + anon_sym_LPAREN, + ACTIONS(2237), 1, + anon_sym_STAR, + STATE(1105), 1, + sym_dotted_name, + STATE(1159), 1, + sym_aliased_import, + STATE(1335), 1, + sym_wildcard_import, + STATE(1338), 1, + sym__import_list, + [52925] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1830), 7, + ACTIONS(2159), 1, + anon_sym_if, + ACTIONS(2161), 1, + anon_sym_and, + ACTIONS(2163), 1, + anon_sym_or, + ACTIONS(1913), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_if, anon_sym_COLON, - anon_sym_and, - anon_sym_or, - [50017] = 7, + [52944] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2063), 1, anon_sym_and, - ACTIONS(2053), 1, - anon_sym_or, ACTIONS(2065), 1, + anon_sym_or, + ACTIONS(2069), 1, anon_sym_if, - ACTIONS(2085), 1, + ACTIONS(2149), 1, anon_sym_COMMA, - STATE(1079), 1, + STATE(1082), 1, aux_sym_expression_list_repeat1, - ACTIONS(2195), 2, + ACTIONS(1891), 2, sym__newline, sym__semicolon, - [50040] = 2, + [52967] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1948), 7, - anon_sym_RPAREN, + ACTIONS(2063), 1, + anon_sym_and, + ACTIONS(2065), 1, + anon_sym_or, + ACTIONS(2069), 1, + anon_sym_if, + ACTIONS(2149), 1, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [50053] = 5, + STATE(1082), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2239), 2, + sym__newline, + sym__semicolon, + [52990] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2117), 1, + ACTIONS(2063), 1, anon_sym_and, - ACTIONS(2119), 1, + ACTIONS(2065), 1, anon_sym_or, - ACTIONS(2131), 1, + ACTIONS(2069), 1, anon_sym_if, - ACTIONS(1875), 4, - anon_sym_RPAREN, + ACTIONS(2149), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_COLON, - [50072] = 4, + STATE(1082), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2241), 2, + sym__newline, + sym__semicolon, + [53013] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2117), 1, + ACTIONS(2159), 1, + anon_sym_if, + ACTIONS(2161), 1, anon_sym_and, - ACTIONS(2119), 1, + ACTIONS(2163), 1, anon_sym_or, - ACTIONS(1877), 5, - anon_sym_RPAREN, + ACTIONS(2177), 1, anon_sym_COMMA, + ACTIONS(2243), 1, anon_sym_as, - anon_sym_if, + ACTIONS(2245), 1, anon_sym_COLON, - [50089] = 7, + STATE(1178), 1, + aux_sym_exception_list_repeat1, + [53038] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2159), 1, + anon_sym_if, + ACTIONS(2161), 1, anon_sym_and, - ACTIONS(2053), 1, + ACTIONS(2163), 1, anon_sym_or, - ACTIONS(2065), 1, - anon_sym_if, - ACTIONS(2085), 1, + ACTIONS(2177), 1, anon_sym_COMMA, - STATE(1079), 1, - aux_sym_expression_list_repeat1, - ACTIONS(1865), 2, - sym__newline, - sym__semicolon, - [50112] = 6, - ACTIONS(1914), 1, + ACTIONS(2247), 1, + anon_sym_as, + ACTIONS(2249), 1, + anon_sym_COLON, + STATE(1178), 1, + aux_sym_exception_list_repeat1, + [53063] = 6, + ACTIONS(1948), 1, sym_comment, - ACTIONS(2197), 1, + ACTIONS(2251), 1, anon_sym_LBRACE2, - ACTIONS(2201), 1, + ACTIONS(2256), 1, sym__not_escape_sequence, - ACTIONS(2203), 1, + ACTIONS(2259), 1, sym__string_end, - STATE(988), 1, + STATE(1035), 1, aux_sym_string_content_repeat1, - ACTIONS(2199), 3, + ACTIONS(2253), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [50133] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1849), 1, - anon_sym_async, - ACTIONS(1851), 1, - anon_sym_for, - ACTIONS(2205), 1, - anon_sym_COMMA, - ACTIONS(2207), 1, - anon_sym_RBRACE, - STATE(916), 1, - sym_for_in_clause, - STATE(1230), 1, - aux_sym_dictionary_repeat1, - STATE(1367), 1, - sym__comprehension_clauses, - [50158] = 7, + [53084] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, - anon_sym_and, - ACTIONS(1867), 1, - anon_sym_COMMA, - ACTIONS(1869), 1, + ACTIONS(2159), 1, anon_sym_if, - ACTIONS(1871), 1, - anon_sym_or, - ACTIONS(2209), 1, - anon_sym_COLON, - STATE(936), 1, - aux_sym_expression_list_repeat1, - [50180] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2117), 1, + ACTIONS(2161), 1, anon_sym_and, - ACTIONS(2119), 1, + ACTIONS(2163), 1, anon_sym_or, - ACTIONS(2131), 1, - anon_sym_if, - ACTIONS(2213), 1, - anon_sym_COLON, - ACTIONS(2211), 2, + ACTIONS(2177), 1, anon_sym_COMMA, + ACTIONS(2261), 1, anon_sym_as, - [50200] = 3, - ACTIONS(1914), 1, + ACTIONS(2263), 1, + anon_sym_COLON, + STATE(1178), 1, + aux_sym_exception_list_repeat1, + [53109] = 6, + ACTIONS(1948), 1, sym_comment, - ACTIONS(2215), 2, + ACTIONS(2265), 1, anon_sym_LBRACE2, + ACTIONS(2269), 1, sym__not_escape_sequence, - ACTIONS(2217), 4, - sym__string_content, + ACTIONS(2271), 1, sym__string_end, + STATE(1035), 1, + aux_sym_string_content_repeat1, + ACTIONS(2267), 3, + sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [50214] = 7, + [53130] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, - anon_sym_and, - ACTIONS(1867), 1, + ACTIONS(2273), 1, + anon_sym_DOT, + STATE(1038), 1, + aux_sym_match_value_pattern_repeat1, + ACTIONS(1868), 4, + sym__newline, anon_sym_COMMA, - ACTIONS(1869), 1, - anon_sym_if, - ACTIONS(1871), 1, - anon_sym_or, - ACTIONS(2219), 1, - anon_sym_COLON, - STATE(936), 1, - aux_sym_expression_list_repeat1, - [50236] = 2, + anon_sym_as, + sym__semicolon, + [53146] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2221), 6, + ACTIONS(1873), 1, + anon_sym_DOT, + STATE(1051), 1, + aux_sym_match_value_pattern_repeat1, + ACTIONS(2276), 4, + anon_sym_import, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - [50248] = 5, + anon_sym_as, + [53162] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(1881), 1, anon_sym_and, - ACTIONS(2053), 1, + ACTIONS(1883), 1, anon_sym_or, - ACTIONS(2065), 1, - anon_sym_if, - ACTIONS(2223), 3, - sym__newline, + ACTIONS(1893), 1, anon_sym_COMMA, - sym__semicolon, - [50266] = 4, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2278), 1, + anon_sym_COLON, + STATE(982), 1, + aux_sym_expression_list_repeat1, + [53184] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2225), 1, + ACTIONS(2280), 1, anon_sym_DOT, - STATE(1029), 1, + STATE(1047), 1, aux_sym_match_value_pattern_repeat1, - ACTIONS(2227), 4, + ACTIONS(2276), 4, sym__newline, anon_sym_COMMA, anon_sym_as, sym__semicolon, - [50282] = 5, + [53200] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(1881), 1, anon_sym_and, - ACTIONS(2053), 1, + ACTIONS(1883), 1, anon_sym_or, - ACTIONS(2065), 1, + ACTIONS(1895), 1, anon_sym_if, - ACTIONS(2229), 3, - sym__newline, + ACTIONS(2284), 1, + anon_sym_COLON, + ACTIONS(2282), 2, anon_sym_COMMA, - sym__semicolon, - [50300] = 4, + anon_sym_RBRACK, + [53220] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2233), 1, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2286), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + [53238] = 3, + ACTIONS(1948), 1, + sym_comment, + ACTIONS(2288), 2, + anon_sym_LBRACE2, + sym__not_escape_sequence, + ACTIONS(2290), 4, + sym__string_content, + sym__string_end, + sym__escape_interpolation, + sym_escape_sequence, + [53252] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2294), 1, anon_sym_AT, - STATE(1019), 2, + STATE(1045), 2, sym_decorator, aux_sym_decorated_definition_repeat1, - ACTIONS(2231), 3, + ACTIONS(2292), 3, anon_sym_async, anon_sym_def, anon_sym_class, - [50316] = 3, - ACTIONS(1914), 1, + [53268] = 3, + ACTIONS(1948), 1, sym_comment, - ACTIONS(2236), 2, + ACTIONS(2297), 2, anon_sym_LBRACE2, sym__not_escape_sequence, - ACTIONS(2238), 4, + ACTIONS(2299), 4, sym__string_content, sym__string_end, sym__escape_interpolation, sym_escape_sequence, - [50330] = 5, + [53282] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, - anon_sym_and, - ACTIONS(1869), 1, - anon_sym_if, - ACTIONS(1871), 1, - anon_sym_or, - ACTIONS(2240), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - [50348] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1841), 1, - anon_sym_and, - ACTIONS(1867), 1, + ACTIONS(2280), 1, + anon_sym_DOT, + STATE(1038), 1, + aux_sym_match_value_pattern_repeat1, + ACTIONS(2301), 4, + sym__newline, anon_sym_COMMA, - ACTIONS(1869), 1, - anon_sym_if, - ACTIONS(1871), 1, - anon_sym_or, - ACTIONS(2242), 1, - anon_sym_COLON, - STATE(936), 1, - aux_sym_expression_list_repeat1, - [50370] = 3, - ACTIONS(1914), 1, + anon_sym_as, + sym__semicolon, + [53298] = 3, + ACTIONS(1948), 1, sym_comment, - ACTIONS(2244), 2, + ACTIONS(2303), 2, anon_sym_LBRACE2, sym__not_escape_sequence, - ACTIONS(2246), 4, + ACTIONS(2305), 4, sym__string_content, sym__string_end, sym__escape_interpolation, sym_escape_sequence, - [50384] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1841), 1, - anon_sym_and, - ACTIONS(1869), 1, - anon_sym_if, - ACTIONS(1871), 1, - anon_sym_or, - ACTIONS(2248), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ, - [50402] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2051), 1, - anon_sym_and, - ACTIONS(2053), 1, - anon_sym_or, - ACTIONS(2065), 1, - anon_sym_if, - ACTIONS(2179), 3, - sym__newline, - anon_sym_EQ, - sym__semicolon, - [50420] = 7, + [53312] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, + ACTIONS(1881), 1, anon_sym_and, - ACTIONS(1869), 1, - anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(1883), 1, anon_sym_or, - ACTIONS(1926), 1, - anon_sym_RPAREN, - ACTIONS(1928), 1, - anon_sym_COMMA, - STATE(1170), 1, - aux_sym_argument_list_repeat1, - [50442] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 6, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1895), 1, anon_sym_if, + ACTIONS(2309), 1, anon_sym_COLON, + ACTIONS(2307), 2, + anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_RBRACE, - [50454] = 6, + [53332] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2117), 1, + ACTIONS(1881), 1, anon_sym_and, - ACTIONS(2119), 1, + ACTIONS(1883), 1, anon_sym_or, - ACTIONS(2131), 1, - anon_sym_if, - ACTIONS(2252), 1, - anon_sym_COLON, - ACTIONS(2250), 2, - anon_sym_COMMA, - anon_sym_as, - [50474] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2254), 1, - anon_sym_DOT, - STATE(1029), 1, - aux_sym_match_value_pattern_repeat1, - ACTIONS(1834), 4, - sym__newline, - anon_sym_COMMA, - anon_sym_as, - sym__semicolon, - [50490] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1841), 1, - anon_sym_and, - ACTIONS(1867), 1, + ACTIONS(1893), 1, anon_sym_COMMA, - ACTIONS(1869), 1, + ACTIONS(1895), 1, anon_sym_if, - ACTIONS(1871), 1, - anon_sym_or, - ACTIONS(2257), 1, + ACTIONS(2311), 1, anon_sym_COLON, - STATE(936), 1, + STATE(982), 1, aux_sym_expression_list_repeat1, - [50512] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2261), 1, - anon_sym_COMMA, - STATE(1031), 1, - aux_sym_open_sequence_match_pattern_repeat1, - ACTIONS(2259), 4, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - [50528] = 4, + [53354] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, + ACTIONS(1873), 1, anon_sym_DOT, - STATE(1040), 1, + STATE(881), 1, aux_sym_match_value_pattern_repeat1, - ACTIONS(2264), 4, + ACTIONS(2301), 4, anon_sym_import, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - [50544] = 6, + [53370] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, + ACTIONS(1881), 1, anon_sym_and, - ACTIONS(1869), 1, - anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(1883), 1, anon_sym_or, - ACTIONS(2268), 1, - anon_sym_COLON, - ACTIONS(2266), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [50564] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2225), 1, - anon_sym_DOT, - STATE(1017), 1, - aux_sym_match_value_pattern_repeat1, - ACTIONS(2264), 4, - sym__newline, + ACTIONS(1893), 1, anon_sym_COMMA, - anon_sym_as, - sym__semicolon, - [50580] = 5, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2313), 1, + anon_sym_COLON, + STATE(982), 1, + aux_sym_expression_list_repeat1, + [53392] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2063), 1, anon_sym_and, - ACTIONS(2053), 1, - anon_sym_or, ACTIONS(2065), 1, + anon_sym_or, + ACTIONS(2069), 1, anon_sym_if, - ACTIONS(2270), 3, + ACTIONS(2315), 3, sym__newline, anon_sym_COMMA, sym__semicolon, - [50598] = 3, - ACTIONS(1914), 1, + [53410] = 3, + ACTIONS(1948), 1, sym_comment, - ACTIONS(2272), 2, + ACTIONS(2317), 2, anon_sym_LBRACE2, sym__not_escape_sequence, - ACTIONS(2274), 4, + ACTIONS(2319), 4, sym__string_content, sym__string_end, sym__escape_interpolation, sym_escape_sequence, - [50612] = 5, + [53424] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, + ACTIONS(1881), 1, anon_sym_and, - ACTIONS(1869), 1, - anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(1883), 1, anon_sym_or, - ACTIONS(2276), 3, - anon_sym_RPAREN, + ACTIONS(1893), 1, anon_sym_COMMA, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2321), 1, anon_sym_COLON, - [50630] = 6, + STATE(982), 1, + aux_sym_expression_list_repeat1, + [53446] = 3, + ACTIONS(1948), 1, + sym_comment, + ACTIONS(2323), 2, + anon_sym_LBRACE2, + sym__not_escape_sequence, + ACTIONS(2325), 4, + sym__string_content, + sym__string_end, + sym__escape_interpolation, + sym_escape_sequence, + [53460] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, - anon_sym_and, - ACTIONS(1869), 1, + ACTIONS(2329), 1, + anon_sym_COMMA, + STATE(1057), 1, + aux_sym_open_sequence_match_pattern_repeat1, + ACTIONS(2327), 4, + anon_sym_RPAREN, anon_sym_if, - ACTIONS(1871), 1, - anon_sym_or, - ACTIONS(2280), 1, anon_sym_COLON, - ACTIONS(2278), 2, - anon_sym_COMMA, anon_sym_RBRACK, - [50650] = 7, + [53476] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, + ACTIONS(1881), 1, anon_sym_and, - ACTIONS(1867), 1, - anon_sym_COMMA, - ACTIONS(1869), 1, - anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(1883), 1, anon_sym_or, - ACTIONS(2282), 1, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2332), 3, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, - STATE(936), 1, - aux_sym_expression_list_repeat1, - [50672] = 4, + [53494] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, - anon_sym_DOT, - STATE(865), 1, - aux_sym_match_value_pattern_repeat1, - ACTIONS(2227), 4, - anon_sym_import, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2334), 3, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - [50688] = 3, - ACTIONS(1914), 1, - sym_comment, - ACTIONS(2284), 2, - anon_sym_LBRACE2, - sym__not_escape_sequence, - ACTIONS(2286), 4, - sym__string_content, - sym__string_end, - sym__escape_interpolation, - sym_escape_sequence, - [50702] = 3, - ACTIONS(1914), 1, - sym_comment, - ACTIONS(2288), 2, - anon_sym_LBRACE2, - sym__not_escape_sequence, - ACTIONS(2290), 4, - sym__string_content, - sym__string_end, - sym__escape_interpolation, - sym_escape_sequence, - [50716] = 6, + anon_sym_COLON, + [53512] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, + ACTIONS(1881), 1, anon_sym_and, - ACTIONS(1869), 1, - anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(1883), 1, anon_sym_or, - ACTIONS(2294), 1, - anon_sym_COLON, - ACTIONS(2292), 2, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(1960), 1, + anon_sym_RPAREN, + ACTIONS(1962), 1, + anon_sym_COMMA, + STATE(1286), 1, + aux_sym_argument_list_repeat1, + [53534] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2336), 6, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, anon_sym_RBRACK, - [50736] = 6, + anon_sym_RBRACE, + [53546] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2298), 1, + ACTIONS(2340), 1, anon_sym_COLON, - ACTIONS(2300), 1, + ACTIONS(2342), 1, anon_sym_EQ, - STATE(1109), 1, + STATE(1176), 1, sym__type_bound, - STATE(1285), 1, + STATE(1364), 1, sym__type_param_default, - ACTIONS(2296), 2, + ACTIONS(2338), 2, anon_sym_COMMA, anon_sym_RBRACK, - [50756] = 7, + [53566] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, + ACTIONS(2063), 1, anon_sym_and, - ACTIONS(1867), 1, - anon_sym_COMMA, - ACTIONS(1869), 1, - anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(2065), 1, anon_sym_or, - ACTIONS(2302), 1, - anon_sym_COLON, - STATE(936), 1, - aux_sym_expression_list_repeat1, - [50778] = 6, + ACTIONS(2069), 1, + anon_sym_if, + ACTIONS(2223), 3, + sym__newline, + anon_sym_EQ, + sym__semicolon, + [53584] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2117), 1, + ACTIONS(2159), 1, + anon_sym_if, + ACTIONS(2161), 1, anon_sym_and, - ACTIONS(2119), 1, + ACTIONS(2163), 1, anon_sym_or, - ACTIONS(2131), 1, - anon_sym_if, - ACTIONS(2304), 1, + ACTIONS(2344), 3, + anon_sym_COMMA, anon_sym_as, - ACTIONS(2306), 1, anon_sym_COLON, - [50797] = 6, + [53602] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2117), 1, + ACTIONS(1881), 1, anon_sym_and, - ACTIONS(2119), 1, + ACTIONS(1883), 1, anon_sym_or, - ACTIONS(2131), 1, + ACTIONS(1893), 1, + anon_sym_COMMA, + ACTIONS(1895), 1, anon_sym_if, - ACTIONS(2308), 1, - anon_sym_as, - ACTIONS(2310), 1, + ACTIONS(2346), 1, anon_sym_COLON, - [50816] = 2, + STATE(982), 1, + aux_sym_expression_list_repeat1, + [53624] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2312), 5, - anon_sym_RPAREN, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1893), 1, anon_sym_COMMA, + ACTIONS(1895), 1, anon_sym_if, + ACTIONS(2348), 1, anon_sym_COLON, - anon_sym_RBRACK, - [50827] = 5, + STATE(982), 1, + aux_sym_expression_list_repeat1, + [53646] = 3, + ACTIONS(1948), 1, + sym_comment, + ACTIONS(2350), 2, + anon_sym_LBRACE2, + sym__not_escape_sequence, + ACTIONS(2352), 4, + sym__string_content, + sym__string_end, + sym__escape_interpolation, + sym_escape_sequence, + [53660] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2165), 1, - sym_identifier, - STATE(1124), 1, - sym_dotted_name, - STATE(1268), 1, - sym_aliased_import, - ACTIONS(2314), 2, + ACTIONS(2063), 1, + anon_sym_and, + ACTIONS(2065), 1, + anon_sym_or, + ACTIONS(2069), 1, + anon_sym_if, + ACTIONS(2354), 3, sym__newline, + anon_sym_COMMA, sym__semicolon, - [50844] = 5, + [53678] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2165), 1, - sym_identifier, - STATE(1124), 1, - sym_dotted_name, - STATE(1268), 1, - sym_aliased_import, - ACTIONS(2316), 2, + ACTIONS(2063), 1, + anon_sym_and, + ACTIONS(2065), 1, + anon_sym_or, + ACTIONS(2069), 1, + anon_sym_if, + ACTIONS(2356), 3, sym__newline, + anon_sym_COMMA, sym__semicolon, - [50861] = 4, + [53696] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2320), 1, - anon_sym_COMMA, - STATE(1051), 1, - aux_sym__collection_elements_repeat1, - ACTIONS(2318), 3, + ACTIONS(1877), 6, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, - [50876] = 5, + [53708] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, + ACTIONS(1881), 1, anon_sym_and, - ACTIONS(1869), 1, - anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(1883), 1, anon_sym_or, - ACTIONS(2323), 2, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2360), 1, + anon_sym_COLON, + ACTIONS(2358), 2, anon_sym_COMMA, anon_sym_RBRACK, - [50893] = 6, + [53728] = 6, + ACTIONS(1948), 1, + sym_comment, + ACTIONS(2362), 1, + anon_sym_RBRACE, + ACTIONS(2364), 1, + anon_sym_LBRACE2, + ACTIONS(2367), 1, + aux_sym_format_specifier_token1, + STATE(1072), 1, + aux_sym_format_specifier_repeat1, + STATE(1255), 1, + sym_interpolation, + [53747] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2325), 1, - anon_sym_LPAREN, - ACTIONS(2327), 1, - anon_sym_COLON, - ACTIONS(2329), 1, - anon_sym_LBRACK, - STATE(1198), 1, - sym_type_parameters, - STATE(1365), 1, - sym_argument_list, - [50912] = 6, + ACTIONS(2063), 1, + anon_sym_and, + ACTIONS(2065), 1, + anon_sym_or, + ACTIONS(2069), 1, + anon_sym_if, + ACTIONS(2003), 2, + sym__newline, + sym__semicolon, + [53764] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2165), 1, + ACTIONS(2233), 1, sym_identifier, - ACTIONS(2331), 1, + ACTIONS(2370), 1, anon_sym_LPAREN, - STATE(1055), 1, + STATE(1105), 1, sym_dotted_name, - STATE(1117), 1, + STATE(1159), 1, sym_aliased_import, - STATE(1294), 1, + STATE(1343), 1, sym__import_list, - [50931] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2333), 1, - anon_sym_COMMA, - ACTIONS(2335), 1, - anon_sym_as, - STATE(1107), 1, - aux_sym__import_list_repeat1, - ACTIONS(2337), 2, - sym__newline, - sym__semicolon, - [50948] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1841), 1, - anon_sym_and, - ACTIONS(1869), 1, - anon_sym_if, - ACTIONS(1871), 1, - anon_sym_or, - ACTIONS(2339), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [50965] = 5, + [53783] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, + ACTIONS(1881), 1, anon_sym_and, - ACTIONS(1869), 1, - anon_sym_if, - ACTIONS(1871), 1, - anon_sym_or, - ACTIONS(2341), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [50982] = 6, - ACTIONS(1914), 1, - sym_comment, - ACTIONS(2343), 1, - anon_sym_RBRACE, - ACTIONS(2345), 1, - anon_sym_LBRACE2, - ACTIONS(2347), 1, - aux_sym_format_specifier_token1, - STATE(1069), 1, - aux_sym_format_specifier_repeat1, - STATE(1219), 1, - sym_interpolation, - [51001] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2351), 1, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2372), 2, anon_sym_COMMA, - STATE(1051), 1, - aux_sym__collection_elements_repeat1, - ACTIONS(2349), 3, - anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_RBRACE, - [51016] = 6, + [53800] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2353), 1, + ACTIONS(2374), 1, anon_sym_COLON, - ACTIONS(2355), 1, + ACTIONS(2376), 1, anon_sym_RBRACE, - ACTIONS(2357), 1, + ACTIONS(2378), 1, anon_sym_EQ, - ACTIONS(2359), 1, + ACTIONS(2380), 1, sym_type_conversion, - STATE(1383), 1, + STATE(1460), 1, sym_format_specifier, - [51035] = 4, + [53819] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2361), 1, + ACTIONS(2384), 1, anon_sym_COMMA, - STATE(1051), 1, + STATE(1099), 1, aux_sym__collection_elements_repeat1, - ACTIONS(2349), 3, + ACTIONS(2382), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - [51050] = 2, + [53834] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1834), 5, - sym__newline, - anon_sym_DOT, + ACTIONS(2386), 1, anon_sym_COMMA, - anon_sym_as, + STATE(1096), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2131), 3, + sym__newline, + anon_sym_from, sym__semicolon, - [51061] = 5, + [53849] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, - anon_sym_and, - ACTIONS(1869), 1, - anon_sym_if, - ACTIONS(1871), 1, - anon_sym_or, - ACTIONS(2141), 2, + ACTIONS(2388), 1, anon_sym_COMMA, + STATE(1099), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(2382), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_RBRACE, - [51078] = 5, + [53864] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2233), 1, + sym_identifier, + STATE(1132), 1, + sym_dotted_name, + STATE(1289), 1, + sym_aliased_import, + ACTIONS(2390), 2, + sym__newline, + sym__semicolon, + [53881] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2063), 1, anon_sym_and, - ACTIONS(2053), 1, - anon_sym_or, ACTIONS(2065), 1, + anon_sym_or, + ACTIONS(2069), 1, anon_sym_if, - ACTIONS(2363), 2, + ACTIONS(2392), 2, sym__newline, sym__semicolon, - [51095] = 4, + [53898] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2365), 1, + ACTIONS(2394), 1, anon_sym_COMMA, - STATE(1075), 1, + STATE(1096), 1, aux_sym_expression_list_repeat1, - ACTIONS(2035), 3, + ACTIONS(2131), 3, sym__newline, anon_sym_from, sym__semicolon, - [51110] = 5, + [53913] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(1881), 1, anon_sym_and, - ACTIONS(2053), 1, + ACTIONS(1883), 1, anon_sym_or, - ACTIONS(2065), 1, + ACTIONS(1895), 1, anon_sym_if, - ACTIONS(2367), 2, - sym__newline, - sym__semicolon, - [51127] = 6, + ACTIONS(2195), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [53930] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2353), 1, + ACTIONS(2396), 1, + anon_sym_LPAREN, + ACTIONS(2398), 1, anon_sym_COLON, - ACTIONS(2369), 1, - anon_sym_RBRACE, - ACTIONS(2371), 1, - anon_sym_EQ, - ACTIONS(2373), 1, - sym_type_conversion, - STATE(1392), 1, - sym_format_specifier, - [51146] = 5, + ACTIONS(2400), 1, + anon_sym_LBRACK, + STATE(1210), 1, + sym_type_parameters, + STATE(1402), 1, + sym_argument_list, + [53949] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(1881), 1, anon_sym_and, - ACTIONS(2053), 1, + ACTIONS(1883), 1, anon_sym_or, - ACTIONS(2065), 1, + ACTIONS(1895), 1, anon_sym_if, - ACTIONS(2375), 2, - sym__newline, - sym__semicolon, - [51163] = 6, - ACTIONS(1914), 1, + ACTIONS(2402), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [53966] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(2345), 1, - anon_sym_LBRACE2, - ACTIONS(2377), 1, - anon_sym_RBRACE, - ACTIONS(2379), 1, - aux_sym_format_specifier_token1, - STATE(1080), 1, - aux_sym_format_specifier_repeat1, - STATE(1219), 1, - sym_interpolation, - [51182] = 5, + ACTIONS(2404), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + [53977] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, + ACTIONS(1881), 1, anon_sym_and, - ACTIONS(1869), 1, - anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(1883), 1, anon_sym_or, - ACTIONS(2381), 2, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2406), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [53994] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2374), 1, + anon_sym_COLON, + ACTIONS(2408), 1, + anon_sym_RBRACE, + ACTIONS(2410), 1, + anon_sym_EQ, + ACTIONS(2412), 1, + sym_type_conversion, + STATE(1470), 1, + sym_format_specifier, + [54013] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2327), 5, anon_sym_RPAREN, anon_sym_COMMA, - [51199] = 5, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + [54024] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, + ACTIONS(1881), 1, anon_sym_and, - ACTIONS(1869), 1, - anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(1883), 1, anon_sym_or, - ACTIONS(2383), 2, - anon_sym_RPAREN, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2414), 2, anon_sym_COMMA, - [51216] = 5, + anon_sym_RBRACK, + [54041] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2063), 1, anon_sym_and, - ACTIONS(2053), 1, - anon_sym_or, ACTIONS(2065), 1, + anon_sym_or, + ACTIONS(2069), 1, anon_sym_if, - ACTIONS(1940), 2, + ACTIONS(2416), 2, sym__newline, sym__semicolon, - [51233] = 5, + [54058] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, + ACTIONS(1881), 1, anon_sym_and, - ACTIONS(1869), 1, - anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(1883), 1, anon_sym_or, - ACTIONS(2385), 2, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2418), 2, anon_sym_RPAREN, anon_sym_COMMA, - [51250] = 5, + [54075] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2165), 1, - sym_identifier, - STATE(1124), 1, - sym_dotted_name, - STATE(1268), 1, - sym_aliased_import, - ACTIONS(2314), 2, + ACTIONS(2063), 1, + anon_sym_and, + ACTIONS(2065), 1, + anon_sym_or, + ACTIONS(2069), 1, + anon_sym_if, + ACTIONS(2420), 2, sym__newline, sym__semicolon, - [51267] = 4, + [54092] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2387), 1, - anon_sym_COMMA, - STATE(1075), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2011), 3, + ACTIONS(2063), 1, + anon_sym_and, + ACTIONS(2065), 1, + anon_sym_or, + ACTIONS(2069), 1, + anon_sym_if, + ACTIONS(2422), 2, sym__newline, - anon_sym_from, sym__semicolon, - [51282] = 5, + [54109] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, - anon_sym_and, - ACTIONS(1869), 1, - anon_sym_if, - ACTIONS(1871), 1, - anon_sym_or, - ACTIONS(2390), 2, + ACTIONS(1897), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [51299] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2325), 1, - anon_sym_LPAREN, - ACTIONS(2329), 1, - anon_sym_LBRACK, - ACTIONS(2392), 1, - anon_sym_COLON, - STATE(1260), 1, - sym_type_parameters, - STATE(1414), 1, - sym_argument_list, - [51318] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2259), 5, + STATE(1077), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(1907), 3, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, anon_sym_RBRACK, - [51329] = 4, + anon_sym_RBRACE, + [54124] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2394), 1, + ACTIONS(2424), 1, anon_sym_COMMA, - STATE(1075), 1, + STATE(1096), 1, aux_sym_expression_list_repeat1, - ACTIONS(2035), 3, + ACTIONS(2075), 3, sym__newline, anon_sym_from, sym__semicolon, - [51344] = 6, - ACTIONS(1914), 1, + [54139] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2233), 1, + sym_identifier, + STATE(1132), 1, + sym_dotted_name, + STATE(1289), 1, + sym_aliased_import, + ACTIONS(2427), 2, + sym__newline, + sym__semicolon, + [54156] = 6, + ACTIONS(1948), 1, sym_comment, - ACTIONS(2396), 1, + ACTIONS(2429), 1, anon_sym_RBRACE, - ACTIONS(2398), 1, + ACTIONS(2431), 1, anon_sym_LBRACE2, - ACTIONS(2401), 1, + ACTIONS(2433), 1, aux_sym_format_specifier_token1, - STATE(1080), 1, + STATE(1104), 1, aux_sym_format_specifier_repeat1, - STATE(1219), 1, + STATE(1255), 1, sym_interpolation, - [51363] = 4, + [54175] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2437), 1, anon_sym_COMMA, - STATE(1059), 1, + STATE(1099), 1, aux_sym__collection_elements_repeat1, - ACTIONS(1853), 3, + ACTIONS(2435), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - [51378] = 5, + [54190] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, + ACTIONS(1881), 1, anon_sym_and, - ACTIONS(1869), 1, - anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(1883), 1, anon_sym_or, - ACTIONS(2404), 2, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2440), 2, anon_sym_COMMA, anon_sym_RBRACK, - [51395] = 5, + [54207] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym_and, - ACTIONS(2053), 1, - anon_sym_or, - ACTIONS(2065), 1, - anon_sym_if, - ACTIONS(2406), 2, + ACTIONS(2233), 1, + sym_identifier, + STATE(1132), 1, + sym_dotted_name, + STATE(1289), 1, + sym_aliased_import, + ACTIONS(2427), 2, sym__newline, sym__semicolon, - [51412] = 4, + [54224] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2300), 1, - anon_sym_EQ, - STATE(1312), 1, - sym__type_param_default, - ACTIONS(2408), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [51426] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1841), 1, - anon_sym_and, - ACTIONS(1869), 1, - anon_sym_if, - ACTIONS(1871), 1, - anon_sym_or, - ACTIONS(2410), 1, - anon_sym_COLON, - [51442] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2412), 1, - anon_sym_case, - STATE(558), 1, - sym_cases, - STATE(332), 2, - sym_case_block, - aux_sym_cases_repeat1, - [51456] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2412), 1, - anon_sym_case, - STATE(463), 1, - sym_cases, - STATE(332), 2, - sym_case_block, - aux_sym_cases_repeat1, - [51470] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2353), 1, - anon_sym_COLON, - ACTIONS(2414), 1, - anon_sym_RBRACE, - ACTIONS(2416), 1, - sym_type_conversion, - STATE(1424), 1, - sym_format_specifier, - [51486] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1841), 1, + ACTIONS(1881), 1, anon_sym_and, - ACTIONS(1869), 1, - anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(1883), 1, anon_sym_or, - ACTIONS(2418), 1, - anon_sym_COLON, - [51502] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1841), 1, - anon_sym_and, - ACTIONS(1869), 1, + ACTIONS(1895), 1, anon_sym_if, - ACTIONS(1871), 1, - anon_sym_or, - ACTIONS(2420), 1, - anon_sym_else, - [51518] = 5, + ACTIONS(2442), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [54241] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2353), 1, + ACTIONS(2396), 1, + anon_sym_LPAREN, + ACTIONS(2400), 1, + anon_sym_LBRACK, + ACTIONS(2444), 1, anon_sym_COLON, - ACTIONS(2422), 1, + STATE(1239), 1, + sym_type_parameters, + STATE(1444), 1, + sym_argument_list, + [54260] = 6, + ACTIONS(1948), 1, + sym_comment, + ACTIONS(2431), 1, + anon_sym_LBRACE2, + ACTIONS(2446), 1, anon_sym_RBRACE, - ACTIONS(2424), 1, - sym_type_conversion, - STATE(1413), 1, - sym_format_specifier, - [51534] = 4, + ACTIONS(2448), 1, + aux_sym_format_specifier_token1, + STATE(1072), 1, + aux_sym_format_specifier_repeat1, + STATE(1255), 1, + sym_interpolation, + [54279] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2426), 1, + ACTIONS(2450), 1, anon_sym_COMMA, - STATE(1092), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(2223), 2, + ACTIONS(2452), 1, + anon_sym_as, + STATE(1145), 1, + aux_sym__import_list_repeat1, + ACTIONS(2454), 2, sym__newline, sym__semicolon, - [51548] = 2, + [54296] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2143), 4, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2456), 2, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RBRACE, - [51558] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2429), 1, - sym_identifier, - STATE(1110), 1, - sym_dotted_name, - STATE(1163), 1, - sym_aliased_import, - STATE(1478), 1, - sym__import_list, - [51574] = 4, + [54313] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2431), 1, - anon_sym_COMMA, - STATE(1127), 1, - aux_sym_print_statement_repeat1, - ACTIONS(2433), 2, + ACTIONS(1868), 5, sym__newline, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, sym__semicolon, - [51588] = 5, + [54324] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, - anon_sym_and, - ACTIONS(1869), 1, - anon_sym_if, - ACTIONS(1871), 1, - anon_sym_or, - ACTIONS(2435), 1, - anon_sym_COLON, - [51604] = 4, + ACTIONS(2400), 1, + anon_sym_LBRACK, + ACTIONS(2458), 1, + anon_sym_LPAREN, + STATE(1359), 1, + sym_parameters, + STATE(1367), 1, + sym_type_parameters, + [54340] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2437), 1, + ACTIONS(2460), 1, anon_sym_COMMA, - STATE(1127), 1, + STATE(1124), 1, aux_sym_print_statement_repeat1, - ACTIONS(2439), 2, + ACTIONS(2462), 2, sym__newline, sym__semicolon, - [51618] = 4, + [54354] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2133), 1, + ACTIONS(2464), 1, anon_sym_COMMA, - STATE(1092), 1, + STATE(1110), 1, aux_sym_assert_statement_repeat1, - ACTIONS(2441), 2, + ACTIONS(2354), 2, sym__newline, sym__semicolon, - [51632] = 4, + [54368] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2443), 1, + ACTIONS(2467), 1, anon_sym_COMMA, STATE(1111), 1, - aux_sym_global_statement_repeat1, - ACTIONS(2445), 2, + aux_sym_print_statement_repeat1, + ACTIONS(2470), 2, sym__newline, sym__semicolon, - [51646] = 5, + [54382] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2329), 1, - anon_sym_LBRACK, - ACTIONS(2447), 1, - anon_sym_LPAREN, - STATE(1302), 1, - sym_parameters, - STATE(1303), 1, - sym_type_parameters, - [51662] = 4, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2472), 1, + anon_sym_COLON, + [54398] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(305), 1, - sym__string_start, - ACTIONS(1904), 1, - anon_sym_COLON, - STATE(566), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - [51676] = 4, + ACTIONS(2233), 1, + sym_identifier, + STATE(1105), 1, + sym_dotted_name, + STATE(1159), 1, + sym_aliased_import, + STATE(1352), 1, + sym__import_list, + [54414] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2476), 1, + anon_sym_DOT, + STATE(1114), 1, + aux_sym_import_prefix_repeat1, + ACTIONS(2474), 2, + anon_sym_import, + sym_identifier, + [54428] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2451), 1, + ACTIONS(2481), 1, anon_sym_COMMA, - STATE(1102), 1, + STATE(1115), 1, aux_sym_with_clause_repeat1, - ACTIONS(2449), 2, + ACTIONS(2479), 2, anon_sym_RPAREN, anon_sym_COLON, - [51690] = 4, + [54442] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2300), 1, - anon_sym_EQ, - STATE(1313), 1, - sym__type_param_default, - ACTIONS(2454), 2, + ACTIONS(2486), 1, anon_sym_COMMA, + STATE(848), 1, + aux_sym__patterns_repeat1, + ACTIONS(2484), 2, + anon_sym_RPAREN, anon_sym_RBRACK, - [51704] = 5, + [54456] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, - anon_sym_and, - ACTIONS(1869), 1, - anon_sym_if, - ACTIONS(1871), 1, - anon_sym_or, - ACTIONS(2456), 1, + ACTIONS(2223), 4, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, - [51720] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2458), 1, - anon_sym_case, - STATE(485), 1, - sym_cases, - STATE(315), 2, - sym_case_block, - aux_sym_cases_repeat1, - [51734] = 4, + anon_sym_EQ, + [54466] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2458), 1, - anon_sym_case, - STATE(530), 1, - sym_cases, - STATE(315), 2, - sym_case_block, - aux_sym_cases_repeat1, - [51748] = 4, + ACTIONS(2157), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RBRACE, + [54476] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2460), 1, - anon_sym_COMMA, - STATE(1126), 1, - aux_sym__import_list_repeat1, - ACTIONS(2462), 2, - sym__newline, - sym__semicolon, - [51762] = 4, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(1917), 1, + anon_sym_COLON, + STATE(572), 2, + sym_template_string, + aux_sym_concatenated_template_string_repeat1, + [54490] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2466), 1, - anon_sym_DOT, - STATE(1138), 1, - aux_sym_import_prefix_repeat1, - ACTIONS(2464), 2, - anon_sym_import, - sym_identifier, - [51776] = 4, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(1917), 1, + anon_sym_COLON, + STATE(573), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + [54504] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2300), 1, + ACTIONS(2490), 1, anon_sym_EQ, - STATE(1345), 1, - sym__type_param_default, - ACTIONS(2468), 2, + ACTIONS(2488), 3, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [51790] = 5, + anon_sym_COLON, + [54516] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2492), 4, anon_sym_RPAREN, - ACTIONS(2470), 1, anon_sym_COMMA, - ACTIONS(2472), 1, - anon_sym_as, - STATE(1164), 1, - aux_sym__import_list_repeat1, - [51806] = 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + [54526] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2443), 1, + ACTIONS(2494), 4, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1144), 1, - aux_sym_global_statement_repeat1, - ACTIONS(2474), 2, - sym__newline, - sym__semicolon, - [51820] = 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + [54536] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2443), 1, + ACTIONS(2496), 1, anon_sym_COMMA, - STATE(1144), 1, - aux_sym_global_statement_repeat1, - ACTIONS(2476), 2, + STATE(1111), 1, + aux_sym_print_statement_repeat1, + ACTIONS(2498), 2, sym__newline, sym__semicolon, - [51834] = 2, + [54550] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2478), 4, - anon_sym_async, - anon_sym_def, - anon_sym_class, - anon_sym_AT, - [51844] = 2, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2500), 1, + anon_sym_COLON, + [54566] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2179), 4, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2502), 1, anon_sym_COLON, - anon_sym_EQ, - [51854] = 5, + [54582] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2504), 1, + sym_identifier, + STATE(1172), 1, + sym_dotted_name, + STATE(1182), 1, + sym_aliased_import, + STATE(1447), 1, + sym__import_list, + [54598] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, + ACTIONS(1881), 1, anon_sym_and, - ACTIONS(1869), 1, - anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(1883), 1, anon_sym_or, - ACTIONS(2480), 1, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2506), 1, anon_sym_COLON, - [51870] = 4, + [54614] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2133), 1, + ACTIONS(2504), 1, + sym_identifier, + STATE(1172), 1, + sym_dotted_name, + STATE(1182), 1, + sym_aliased_import, + STATE(1386), 1, + sym__import_list, + [54630] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2508), 1, anon_sym_COMMA, - STATE(1092), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(2482), 2, + STATE(1111), 1, + aux_sym_print_statement_repeat1, + ACTIONS(2510), 2, sym__newline, sym__semicolon, - [51884] = 4, + [54644] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2512), 1, anon_sym_COMMA, - STATE(1133), 1, + STATE(1131), 1, aux_sym__import_list_repeat1, - ACTIONS(2337), 2, + ACTIONS(2515), 2, sym__newline, sym__semicolon, - [51898] = 2, + [54658] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2484), 4, - anon_sym_RPAREN, + ACTIONS(2452), 1, + anon_sym_as, + ACTIONS(2517), 3, + sym__newline, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RBRACE, - [51908] = 2, + sym__semicolon, + [54670] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2486), 4, - anon_sym_RPAREN, + ACTIONS(2519), 1, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RBRACE, - [51918] = 4, + STATE(1131), 1, + aux_sym__import_list_repeat1, + ACTIONS(2521), 2, + sym__newline, + sym__semicolon, + [54684] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2490), 1, + ACTIONS(2197), 1, anon_sym_COMMA, - STATE(1151), 1, - aux_sym__patterns_repeat1, - ACTIONS(2488), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [51932] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2051), 1, - anon_sym_and, - ACTIONS(2053), 1, - anon_sym_or, - ACTIONS(2065), 1, - anon_sym_if, - ACTIONS(2492), 1, + STATE(1110), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(2523), 2, sym__newline, - [51948] = 4, + sym__semicolon, + [54698] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2443), 1, + ACTIONS(2525), 1, anon_sym_COMMA, - STATE(1112), 1, + STATE(1135), 1, aux_sym_global_statement_repeat1, - ACTIONS(2494), 2, + ACTIONS(2528), 2, sym__newline, sym__semicolon, - [51962] = 5, + [54712] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2400), 1, + anon_sym_LBRACK, + ACTIONS(2458), 1, + anon_sym_LPAREN, + STATE(1322), 1, + sym_type_parameters, + STATE(1355), 1, + sym_parameters, + [54728] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2530), 1, + anon_sym_case, + STATE(541), 1, + sym_cases, + STATE(414), 2, + sym_case_block, + aux_sym_cases_repeat1, + [54742] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, + ACTIONS(2530), 1, + anon_sym_case, + STATE(484), 1, + sym_cases, + STATE(414), 2, + sym_case_block, + aux_sym_cases_repeat1, + [54756] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2374), 1, + anon_sym_COLON, + ACTIONS(2532), 1, + anon_sym_RBRACE, + ACTIONS(2534), 1, + sym_type_conversion, + STATE(1410), 1, + sym_format_specifier, + [54772] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2063), 1, anon_sym_and, - ACTIONS(1869), 1, - anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(2065), 1, anon_sym_or, - ACTIONS(2496), 1, - anon_sym_COLON, - [51978] = 3, + ACTIONS(2069), 1, + anon_sym_if, + ACTIONS(2536), 1, + sym__newline, + [54788] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2335), 1, - anon_sym_as, - ACTIONS(2498), 3, - sym__newline, + ACTIONS(2538), 1, anon_sym_COMMA, - sym__semicolon, - [51990] = 5, + STATE(1057), 1, + aux_sym_open_sequence_match_pattern_repeat1, + ACTIONS(1723), 2, + anon_sym_if, + anon_sym_COLON, + [54802] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, + ACTIONS(1881), 1, anon_sym_and, - ACTIONS(1869), 1, - anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(1883), 1, anon_sym_or, - ACTIONS(2500), 1, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2540), 1, anon_sym_else, - [52006] = 4, + [54818] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2502), 1, + ACTIONS(2542), 1, anon_sym_COMMA, - STATE(1126), 1, - aux_sym__import_list_repeat1, - ACTIONS(2505), 2, + STATE(1156), 1, + aux_sym_global_statement_repeat1, + ACTIONS(2544), 2, sym__newline, sym__semicolon, - [52020] = 4, + [54832] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2507), 1, + ACTIONS(2542), 1, anon_sym_COMMA, - STATE(1127), 1, - aux_sym_print_statement_repeat1, - ACTIONS(2510), 2, + STATE(1155), 1, + aux_sym_global_statement_repeat1, + ACTIONS(2546), 2, sym__newline, sym__semicolon, - [52034] = 2, + [54846] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1948), 4, - sym__newline, - anon_sym_from, + ACTIONS(2548), 1, anon_sym_COMMA, + STATE(1131), 1, + aux_sym__import_list_repeat1, + ACTIONS(2521), 2, + sym__newline, sym__semicolon, - [52044] = 5, + [54860] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2314), 1, + ACTIONS(2390), 1, anon_sym_RPAREN, - ACTIONS(2429), 1, + ACTIONS(2504), 1, sym_identifier, - STATE(1185), 1, + STATE(1226), 1, sym_dotted_name, - STATE(1322), 1, + STATE(1358), 1, sym_aliased_import, - [52060] = 5, + [54876] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2329), 1, + ACTIONS(2550), 1, + anon_sym_case, + STATE(530), 1, + sym_cases, + STATE(390), 2, + sym_case_block, + aux_sym_cases_repeat1, + [54890] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2550), 1, + anon_sym_case, + STATE(529), 1, + sym_cases, + STATE(390), 2, + sym_case_block, + aux_sym_cases_repeat1, + [54904] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(2458), 1, anon_sym_LPAREN, - STATE(1288), 1, - sym_parameters, - STATE(1289), 1, + STATE(1317), 1, sym_type_parameters, - [52076] = 5, + STATE(1349), 1, + sym_parameters, + [54920] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 1, - sym_identifier, - STATE(1110), 1, - sym_dotted_name, - STATE(1163), 1, - sym_aliased_import, - STATE(1454), 1, - sym__import_list, - [52092] = 5, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2552), 1, + anon_sym_COLON, + [54936] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, + ACTIONS(1881), 1, anon_sym_and, - ACTIONS(1869), 1, - anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(1883), 1, anon_sym_or, - ACTIONS(2512), 1, - anon_sym_else, - [52108] = 4, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2554), 1, + anon_sym_COLON, + [54952] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2514), 1, + ACTIONS(2556), 1, anon_sym_COMMA, - STATE(1126), 1, - aux_sym__import_list_repeat1, - ACTIONS(2462), 2, - sym__newline, - sym__semicolon, - [52122] = 5, + STATE(1152), 1, + aux_sym_exception_list_repeat1, + ACTIONS(2559), 2, + anon_sym_as, + anon_sym_COLON, + [54966] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, - anon_sym_and, - ACTIONS(1869), 1, - anon_sym_if, - ACTIONS(1871), 1, - anon_sym_or, - ACTIONS(2516), 1, - anon_sym_COLON, - [52138] = 5, + ACTIONS(2400), 1, + anon_sym_LBRACK, + ACTIONS(2458), 1, + anon_sym_LPAREN, + STATE(1319), 1, + sym_type_parameters, + STATE(1350), 1, + sym_parameters, + [54982] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, + ACTIONS(1881), 1, anon_sym_and, - ACTIONS(1869), 1, - anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(1883), 1, anon_sym_or, - ACTIONS(2518), 1, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2561), 1, anon_sym_COLON, - [52154] = 4, + [54998] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2542), 1, + anon_sym_COMMA, + STATE(1135), 1, + aux_sym_global_statement_repeat1, + ACTIONS(2563), 2, + sym__newline, + sym__semicolon, + [55012] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2542), 1, + anon_sym_COMMA, + STATE(1135), 1, + aux_sym_global_statement_repeat1, + ACTIONS(2565), 2, + sym__newline, + sym__semicolon, + [55026] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2522), 1, + ACTIONS(2569), 1, anon_sym_COLON, - ACTIONS(2524), 1, + ACTIONS(2571), 1, anon_sym_EQ, - ACTIONS(2520), 2, + ACTIONS(2567), 2, anon_sym_RPAREN, anon_sym_COMMA, - [52168] = 5, + [55040] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2314), 1, - anon_sym_RPAREN, - ACTIONS(2429), 1, - sym_identifier, - STATE(1185), 1, - sym_dotted_name, - STATE(1322), 1, - sym_aliased_import, - [52184] = 4, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2573), 1, + anon_sym_COLON, + [55056] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2528), 1, - anon_sym_DOT, - STATE(1138), 1, - aux_sym_import_prefix_repeat1, - ACTIONS(2526), 2, - anon_sym_import, - sym_identifier, - [52198] = 4, + ACTIONS(2450), 1, + anon_sym_COMMA, + STATE(1133), 1, + aux_sym__import_list_repeat1, + ACTIONS(2454), 2, + sym__newline, + sym__semicolon, + [55070] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2531), 1, - anon_sym_COMMA, - STATE(1031), 1, - aux_sym_open_sequence_match_pattern_repeat1, - ACTIONS(1687), 2, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1895), 1, anon_sym_if, - anon_sym_COLON, - [52212] = 5, + ACTIONS(2575), 1, + anon_sym_else, + [55086] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, + ACTIONS(1881), 1, anon_sym_and, - ACTIONS(1869), 1, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1895), 1, anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(2577), 1, + anon_sym_COLON, + [55102] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, anon_sym_or, - ACTIONS(2533), 1, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2579), 1, anon_sym_COLON, - [52228] = 3, + [55118] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2537), 1, - anon_sym_EQ, - ACTIONS(2535), 3, + ACTIONS(2427), 1, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - [52240] = 5, + ACTIONS(2504), 1, + sym_identifier, + STATE(1226), 1, + sym_dotted_name, + STATE(1358), 1, + sym_aliased_import, + [55134] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, + ACTIONS(1881), 1, anon_sym_and, - ACTIONS(1869), 1, - anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(1883), 1, anon_sym_or, - ACTIONS(2539), 1, - anon_sym_COLON, - [52256] = 5, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2581), 1, + anon_sym_else, + [55150] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2427), 1, + anon_sym_RPAREN, + ACTIONS(2504), 1, + sym_identifier, + STATE(1226), 1, + sym_dotted_name, + STATE(1358), 1, + sym_aliased_import, + [55166] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, + ACTIONS(1881), 1, anon_sym_and, - ACTIONS(1869), 1, - anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(1883), 1, anon_sym_or, - ACTIONS(2541), 1, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2583), 1, anon_sym_COLON, - [52272] = 4, + [55182] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2543), 1, + ACTIONS(2197), 1, anon_sym_COMMA, - STATE(1144), 1, - aux_sym_global_statement_repeat1, - ACTIONS(2546), 2, + STATE(1110), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(2585), 2, sym__newline, sym__semicolon, - [52286] = 5, + [55196] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2329), 1, - anon_sym_LBRACK, - ACTIONS(2447), 1, - anon_sym_LPAREN, - STATE(1328), 1, - sym_parameters, - STATE(1346), 1, - sym_type_parameters, - [52302] = 5, + ACTIONS(2009), 4, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + sym__semicolon, + [55206] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2329), 1, - anon_sym_LBRACK, - ACTIONS(2447), 1, - anon_sym_LPAREN, - STATE(1329), 1, - sym_parameters, - STATE(1348), 1, - sym_type_parameters, - [52318] = 5, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2587), 1, + anon_sym_COLON, + [55222] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, + ACTIONS(1881), 1, anon_sym_and, - ACTIONS(1869), 1, - anon_sym_if, - ACTIONS(1871), 1, + ACTIONS(1883), 1, anon_sym_or, - ACTIONS(2548), 1, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2589), 1, anon_sym_else, - [52334] = 5, + [55238] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, - anon_sym_and, - ACTIONS(1869), 1, - anon_sym_if, - ACTIONS(1871), 1, - anon_sym_or, - ACTIONS(2550), 1, - anon_sym_COLON, - [52350] = 4, + ACTIONS(2593), 1, + anon_sym_DOT, + STATE(1114), 1, + aux_sym_import_prefix_repeat1, + ACTIONS(2591), 2, + anon_sym_import, + sym_identifier, + [55252] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2552), 1, + ACTIONS(2454), 1, + anon_sym_RPAREN, + ACTIONS(2595), 1, anon_sym_COMMA, - STATE(1095), 1, - aux_sym_print_statement_repeat1, - ACTIONS(2554), 2, - sym__newline, - sym__semicolon, - [52364] = 5, + ACTIONS(2597), 1, + anon_sym_as, + STATE(1305), 1, + aux_sym__import_list_repeat1, + [55268] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2316), 1, - anon_sym_RPAREN, - ACTIONS(2429), 1, - sym_identifier, - STATE(1185), 1, - sym_dotted_name, - STATE(1322), 1, - sym_aliased_import, - [52380] = 4, + ACTIONS(2599), 4, + anon_sym_async, + anon_sym_def, + anon_sym_class, + anon_sym_AT, + [55278] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2342), 1, + anon_sym_EQ, + STATE(1321), 1, + sym__type_param_default, + ACTIONS(2601), 2, anon_sym_COMMA, - STATE(832), 1, - aux_sym__patterns_repeat1, - ACTIONS(2556), 2, - anon_sym_RPAREN, anon_sym_RBRACK, - [52394] = 5, + [55292] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2165), 1, - sym_identifier, - STATE(1055), 1, - sym_dotted_name, - STATE(1117), 1, - sym_aliased_import, - STATE(1350), 1, - sym__import_list, - [52410] = 3, + ACTIONS(2342), 1, + anon_sym_EQ, + STATE(1323), 1, + sym__type_param_default, + ACTIONS(2603), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [55306] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2560), 1, + ACTIONS(2342), 1, anon_sym_EQ, - ACTIONS(2562), 2, - sym__newline, - sym__semicolon, - [52421] = 2, + STATE(1325), 1, + sym__type_param_default, + ACTIONS(2605), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [55320] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2564), 3, - anon_sym_RPAREN, + ACTIONS(2609), 1, anon_sym_COMMA, - anon_sym_COLON, - [52430] = 4, + STATE(1116), 1, + aux_sym__patterns_repeat1, + ACTIONS(2607), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [55334] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2566), 1, - anon_sym_RPAREN, - ACTIONS(2568), 1, + ACTIONS(2177), 1, anon_sym_COMMA, - STATE(1246), 1, - aux_sym_argument_list_repeat1, - [52443] = 4, + STATE(1152), 1, + aux_sym_exception_list_repeat1, + ACTIONS(2611), 2, + anon_sym_as, + anon_sym_COLON, + [55348] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, - anon_sym_COMMA, - ACTIONS(1942), 1, - anon_sym_RPAREN, - STATE(1274), 1, - aux_sym__collection_elements_repeat1, - [52456] = 4, + ACTIONS(2374), 1, + anon_sym_COLON, + ACTIONS(2613), 1, + anon_sym_RBRACE, + ACTIONS(2615), 1, + sym_type_conversion, + STATE(1458), 1, + sym_format_specifier, + [55364] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2462), 1, - anon_sym_RPAREN, - ACTIONS(2570), 1, + ACTIONS(2617), 1, anon_sym_COMMA, - STATE(1194), 1, - aux_sym__import_list_repeat1, - [52469] = 4, + ACTIONS(2620), 1, + anon_sym_RBRACE, + STATE(1180), 1, + aux_sym_dictionary_repeat1, + [55377] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2572), 1, + ACTIONS(2622), 1, sym__semicolon, - ACTIONS(2574), 1, + ACTIONS(2624), 1, sym__newline, - STATE(1243), 1, + STATE(1299), 1, aux_sym__simple_statements_repeat1, - [52482] = 4, + [55390] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1944), 1, + ACTIONS(2454), 1, anon_sym_RPAREN, - ACTIONS(1946), 1, + ACTIONS(2595), 1, anon_sym_COMMA, - STATE(1245), 1, - aux_sym_argument_list_repeat1, - [52495] = 4, + STATE(1267), 1, + aux_sym__import_list_repeat1, + [55403] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2576), 1, - anon_sym_RPAREN, - ACTIONS(2578), 1, - anon_sym_COMMA, - STATE(1215), 1, - aux_sym_match_class_pattern_repeat2, - [52508] = 2, + ACTIONS(2626), 1, + anon_sym_if, + ACTIONS(2628), 1, + anon_sym_COLON, + STATE(1506), 1, + sym_guard, + [55416] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2580), 3, - anon_sym_RPAREN, + ACTIONS(2630), 1, anon_sym_COMMA, + ACTIONS(2632), 2, + anon_sym_if, anon_sym_COLON, - [52517] = 4, + [55427] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2576), 1, - anon_sym_RPAREN, - ACTIONS(2578), 1, - anon_sym_COMMA, - STATE(1207), 1, - aux_sym_match_class_pattern_repeat2, - [52530] = 4, + ACTIONS(2223), 3, + sym__newline, + anon_sym_EQ, + sym__semicolon, + [55436] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, - anon_sym_RPAREN, - ACTIONS(2470), 1, - anon_sym_COMMA, - STATE(1157), 1, - aux_sym__import_list_repeat1, - [52543] = 4, + ACTIONS(2634), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_EQ, + [55445] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2462), 1, - anon_sym_RPAREN, - ACTIONS(2582), 1, + ACTIONS(2636), 1, anon_sym_COMMA, - STATE(1194), 1, - aux_sym__import_list_repeat1, - [52556] = 4, + ACTIONS(2638), 1, + anon_sym_RBRACK, + STATE(1248), 1, + aux_sym_type_parameters_repeat1, + [55458] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2584), 1, + ACTIONS(2640), 1, anon_sym_RPAREN, - ACTIONS(2586), 1, + ACTIONS(2642), 1, anon_sym_COMMA, - STATE(1165), 1, - aux_sym__parameters_repeat1, - [52569] = 4, + STATE(1194), 1, + aux_sym_argument_list_repeat1, + [55471] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1705), 1, + ACTIONS(2644), 1, anon_sym_RPAREN, - ACTIONS(2589), 1, + ACTIONS(2646), 1, anon_sym_COMMA, - STATE(1160), 1, - aux_sym_match_class_pattern_repeat2, - [52582] = 4, + STATE(1194), 1, + aux_sym_argument_list_repeat1, + [55484] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2591), 1, - anon_sym_RPAREN, - ACTIONS(2593), 1, - anon_sym_COMMA, - STATE(1246), 1, - aux_sym_argument_list_repeat1, - [52595] = 3, + ACTIONS(2504), 1, + sym_identifier, + STATE(1226), 1, + sym_dotted_name, + STATE(1358), 1, + sym_aliased_import, + [55497] = 3, + ACTIONS(1948), 1, + sym_comment, + ACTIONS(2288), 1, + anon_sym_RBRACE, + ACTIONS(2290), 2, + anon_sym_LBRACE2, + aux_sym_format_specifier_token1, + [55508] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2524), 1, - anon_sym_EQ, - ACTIONS(2520), 2, + ACTIONS(2648), 1, + anon_sym_RPAREN, + ACTIONS(2650), 1, anon_sym_COMMA, - anon_sym_COLON, - [52606] = 4, + STATE(1295), 1, + aux_sym_match_class_pattern_repeat2, + [55521] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2595), 1, + ACTIONS(2652), 1, anon_sym_RPAREN, - ACTIONS(2597), 1, + ACTIONS(2654), 1, anon_sym_COMMA, - STATE(1246), 1, + STATE(1194), 1, aux_sym_argument_list_repeat1, - [52619] = 4, + [55534] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2599), 1, + ACTIONS(2656), 1, anon_sym_RPAREN, - ACTIONS(2601), 1, + ACTIONS(2658), 1, anon_sym_COMMA, - STATE(1246), 1, + STATE(1194), 1, aux_sym_argument_list_repeat1, - [52632] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2353), 1, - anon_sym_COLON, - ACTIONS(2603), 1, - anon_sym_RBRACE, - STATE(1466), 1, - sym_format_specifier, - [52645] = 4, + [55547] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1798), 1, - anon_sym_COMMA, - ACTIONS(2605), 1, + ACTIONS(1425), 3, + sym__newline, anon_sym_in, - STATE(842), 1, - aux_sym__patterns_repeat1, - [52658] = 4, + sym__semicolon, + [55556] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2185), 1, - sym_identifier, - ACTIONS(2607), 1, - anon_sym_import, - STATE(1369), 1, - sym_dotted_name, - [52671] = 4, + ACTIONS(2661), 1, + sym__semicolon, + ACTIONS(2664), 1, + sym__newline, + STATE(1196), 1, + aux_sym__simple_statements_repeat1, + [55569] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2609), 1, + ACTIONS(1897), 1, anon_sym_COMMA, - ACTIONS(2612), 1, - anon_sym_RBRACE, - STATE(1174), 1, - aux_sym_match_mapping_pattern_repeat1, - [52684] = 3, - ACTIONS(1914), 1, - sym_comment, - ACTIONS(2244), 1, - anon_sym_RBRACE, - ACTIONS(2246), 2, - anon_sym_LBRACE2, - aux_sym_format_specifier_token1, - [52695] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2429), 1, - sym_identifier, - STATE(1185), 1, - sym_dotted_name, - STATE(1322), 1, - sym_aliased_import, - [52708] = 4, + ACTIONS(2019), 1, + anon_sym_RPAREN, + STATE(1293), 1, + aux_sym__collection_elements_repeat1, + [55582] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1798), 1, + ACTIONS(1862), 1, + anon_sym_COLON, + ACTIONS(2666), 1, anon_sym_COMMA, - ACTIONS(2614), 1, - anon_sym_in, - STATE(842), 1, - aux_sym__patterns_repeat1, - [52721] = 2, + STATE(1284), 1, + aux_sym__parameters_repeat1, + [55595] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2546), 3, + ACTIONS(1417), 3, sym__newline, - anon_sym_COMMA, + anon_sym_in, sym__semicolon, - [52730] = 4, + [55604] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2616), 1, + ACTIONS(2648), 1, anon_sym_RPAREN, - ACTIONS(2618), 1, + ACTIONS(2668), 1, anon_sym_COMMA, - STATE(1257), 1, - aux_sym_with_clause_repeat1, - [52743] = 3, - ACTIONS(1914), 1, - sym_comment, - ACTIONS(2272), 1, - anon_sym_RBRACE, - ACTIONS(2274), 2, - anon_sym_LBRACE2, - aux_sym_format_specifier_token1, - [52754] = 4, + STATE(1275), 1, + aux_sym_match_class_pattern_repeat1, + [55617] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2620), 1, + ACTIONS(2670), 1, anon_sym_COMMA, - ACTIONS(2622), 1, - anon_sym_COLON, - STATE(1102), 1, - aux_sym_with_clause_repeat1, - [52767] = 2, + ACTIONS(2673), 1, + anon_sym_RBRACK, + STATE(1201), 1, + aux_sym_index_expression_list_repeat1, + [55630] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1381), 3, - sym__newline, - anon_sym_in, - sym__semicolon, - [52776] = 4, + ACTIONS(2675), 1, + anon_sym_COMMA, + ACTIONS(2678), 1, + anon_sym_RBRACE, + STATE(1202), 1, + aux_sym_match_mapping_pattern_repeat1, + [55643] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1701), 1, - anon_sym_RPAREN, - ACTIONS(2624), 1, + ACTIONS(2680), 1, anon_sym_COMMA, - STATE(1186), 1, - aux_sym_match_class_pattern_repeat1, - [52789] = 4, + ACTIONS(2682), 1, + anon_sym_RBRACK, + STATE(1257), 1, + aux_sym_index_expression_list_repeat1, + [55656] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1701), 1, + ACTIONS(2684), 1, anon_sym_RPAREN, - ACTIONS(2626), 1, - sym_identifier, - STATE(1325), 1, - sym_match_keyword_pattern, - [52802] = 3, + ACTIONS(2686), 1, + anon_sym_COMMA, + STATE(1189), 1, + aux_sym_argument_list_repeat1, + [55669] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2472), 1, - anon_sym_as, - ACTIONS(2498), 2, + ACTIONS(2013), 1, anon_sym_RPAREN, + ACTIONS(2015), 1, anon_sym_COMMA, - [52813] = 4, + STATE(1193), 1, + aux_sym_argument_list_repeat1, + [55682] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2628), 1, - anon_sym_RPAREN, - ACTIONS(2630), 1, + ACTIONS(2688), 1, anon_sym_COMMA, - STATE(1186), 1, - aux_sym_match_class_pattern_repeat1, - [52826] = 4, + ACTIONS(2690), 1, + anon_sym_RBRACK, + STATE(1232), 1, + aux_sym_open_sequence_match_pattern_repeat1, + [55695] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2633), 1, + ACTIONS(2692), 1, anon_sym_COMMA, - ACTIONS(2635), 1, - anon_sym_RBRACK, - STATE(1214), 1, - aux_sym_index_expression_list_repeat1, - [52839] = 4, + ACTIONS(2694), 1, + anon_sym_RBRACE, + STATE(1180), 1, + aux_sym_dictionary_repeat1, + [55708] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2637), 1, + ACTIONS(2696), 1, anon_sym_COMMA, - ACTIONS(2639), 1, + ACTIONS(2698), 1, anon_sym_RBRACE, - STATE(1197), 1, + STATE(1180), 1, aux_sym_dictionary_repeat1, - [52852] = 4, + [55721] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1175), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + [55730] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2353), 1, + ACTIONS(2396), 1, + anon_sym_LPAREN, + ACTIONS(2700), 1, anon_sym_COLON, - ACTIONS(2414), 1, - anon_sym_RBRACE, - STATE(1424), 1, - sym_format_specifier, - [52865] = 4, + STATE(1413), 1, + sym_argument_list, + [55743] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(556), 1, + sym__newline, + ACTIONS(2702), 1, + sym__semicolon, + STATE(1196), 1, + aux_sym__simple_statements_repeat1, + [55756] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2704), 1, + sym__semicolon, + ACTIONS(2706), 1, + sym__newline, + STATE(1231), 1, + aux_sym__simple_statements_repeat1, + [55769] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1739), 1, + anon_sym_RPAREN, + ACTIONS(2708), 1, + anon_sym_COMMA, + STATE(1249), 1, + aux_sym_match_class_pattern_repeat2, + [55782] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2710), 1, + sym_identifier, + ACTIONS(2712), 1, + sym_match_wildcard_pattern, + STATE(1086), 1, + sym_match_capture_pattern, + [55795] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2641), 1, + ACTIONS(2191), 1, anon_sym_COMMA, - ACTIONS(2643), 1, + ACTIONS(2193), 1, anon_sym_RBRACE, - STATE(1197), 1, + STATE(1208), 1, aux_sym_dictionary_repeat1, - [52878] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2645), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_EQ, - [52887] = 2, + [55808] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2584), 3, + ACTIONS(2515), 1, anon_sym_RPAREN, + ACTIONS(2714), 1, anon_sym_COMMA, - anon_sym_COLON, - [52896] = 2, + STATE(1216), 1, + aux_sym__import_list_repeat1, + [55821] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1393), 3, + ACTIONS(2717), 1, + anon_sym_EQ, + ACTIONS(2719), 2, sym__newline, - anon_sym_in, sym__semicolon, - [52905] = 4, + [55832] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2505), 1, - anon_sym_RPAREN, - ACTIONS(2647), 1, + ACTIONS(1897), 1, anon_sym_COMMA, - STATE(1194), 1, - aux_sym__import_list_repeat1, - [52918] = 4, + ACTIONS(2007), 1, + anon_sym_RPAREN, + STATE(1293), 1, + aux_sym__collection_elements_repeat1, + [55845] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2650), 1, + ACTIONS(2207), 1, + sym_identifier, + ACTIONS(2721), 1, + anon_sym_import, + STATE(1489), 1, + sym_dotted_name, + [55858] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1897), 1, anon_sym_COMMA, - ACTIONS(2652), 1, - anon_sym_COLON, - STATE(1231), 1, - aux_sym__parameters_repeat1, - [52931] = 4, + ACTIONS(1933), 1, + anon_sym_RPAREN, + STATE(1293), 1, + aux_sym__collection_elements_repeat1, + [55871] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2654), 1, + ACTIONS(2723), 1, + sym_identifier, + ACTIONS(2725), 1, + anon_sym_RPAREN, + STATE(1333), 1, + sym_match_keyword_pattern, + [55884] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2727), 1, + anon_sym_COLON, + ACTIONS(2567), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2656), 1, - anon_sym_RBRACK, - STATE(1237), 1, - aux_sym_type_parameters_repeat1, - [52944] = 4, + [55895] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2658), 1, + ACTIONS(1954), 1, + anon_sym_RPAREN, + ACTIONS(1956), 1, anon_sym_COMMA, - ACTIONS(2661), 1, - anon_sym_RBRACE, - STATE(1197), 1, - aux_sym_dictionary_repeat1, - [52957] = 4, + STATE(1296), 1, + aux_sym_argument_list_repeat1, + [55908] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2325), 1, - anon_sym_LPAREN, - ACTIONS(2663), 1, + ACTIONS(1873), 1, + anon_sym_DOT, + ACTIONS(1931), 1, anon_sym_COLON, - STATE(1357), 1, - sym_argument_list, - [52970] = 4, + STATE(881), 1, + aux_sym_match_value_pattern_repeat1, + [55921] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1798), 1, + ACTIONS(2227), 1, anon_sym_COMMA, - ACTIONS(2665), 1, - anon_sym_in, - STATE(842), 1, - aux_sym__patterns_repeat1, - [52983] = 2, + ACTIONS(2229), 1, + anon_sym_RBRACE, + STATE(1247), 1, + aux_sym_dictionary_repeat1, + [55934] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1154), 3, + ACTIONS(2597), 1, + anon_sym_as, + ACTIONS(2517), 2, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - [52992] = 4, + [55945] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2667), 1, - anon_sym_COMMA, - ACTIONS(2669), 1, - anon_sym_RBRACK, + ACTIONS(2729), 1, + sym__semicolon, + ACTIONS(2731), 1, + sym__newline, STATE(1211), 1, - aux_sym_open_sequence_match_pattern_repeat1, - [53005] = 4, + aux_sym__simple_statements_repeat1, + [55958] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2671), 1, - anon_sym_RPAREN, - ACTIONS(2673), 1, - anon_sym_COMMA, - STATE(1273), 1, - aux_sym_argument_list_repeat1, - [53018] = 4, + ACTIONS(2147), 1, + anon_sym_from, + ACTIONS(2151), 2, + sym__newline, + sym__semicolon, + [55969] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2584), 1, - anon_sym_COLON, - ACTIONS(2675), 1, + ACTIONS(2733), 1, + anon_sym_RPAREN, + ACTIONS(2735), 1, anon_sym_COMMA, - STATE(1203), 1, + STATE(1253), 1, aux_sym__parameters_repeat1, - [53031] = 2, + [55982] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2520), 3, + ACTIONS(2737), 1, anon_sym_RPAREN, + ACTIONS(2739), 1, anon_sym_COMMA, - anon_sym_COLON, - [53040] = 4, + STATE(1265), 1, + aux_sym_argument_list_repeat1, + [55995] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2626), 1, - sym_identifier, - ACTIONS(2678), 1, - anon_sym_RPAREN, - STATE(1325), 1, - sym_match_keyword_pattern, - [53053] = 4, + ACTIONS(562), 1, + sym__newline, + ACTIONS(2741), 1, + sym__semicolon, + STATE(1196), 1, + aux_sym__simple_statements_repeat1, + [56008] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2620), 1, + ACTIONS(1727), 1, + anon_sym_RBRACK, + ACTIONS(2743), 1, anon_sym_COMMA, - ACTIONS(2680), 1, - anon_sym_COLON, - STATE(1181), 1, - aux_sym_with_clause_repeat1, - [53066] = 4, + STATE(1057), 1, + aux_sym_open_sequence_match_pattern_repeat1, + [56021] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2678), 1, - anon_sym_RPAREN, - ACTIONS(2682), 1, + ACTIONS(1844), 1, anon_sym_COMMA, - STATE(1215), 1, - aux_sym_match_class_pattern_repeat2, - [53079] = 4, + ACTIONS(2745), 1, + anon_sym_in, + STATE(861), 1, + aux_sym__patterns_repeat1, + [56034] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1701), 1, + ACTIONS(1727), 1, anon_sym_RPAREN, - ACTIONS(2684), 1, + ACTIONS(2747), 1, anon_sym_COMMA, - STATE(1215), 1, - aux_sym_match_class_pattern_repeat2, - [53092] = 2, + STATE(1057), 1, + aux_sym_open_sequence_match_pattern_repeat1, + [56047] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2535), 3, + ACTIONS(2749), 1, anon_sym_RPAREN, + ACTIONS(2751), 1, anon_sym_COMMA, - anon_sym_COLON, - [53101] = 4, + STATE(1302), 1, + aux_sym_match_class_pattern_repeat2, + [56060] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1697), 1, + ACTIONS(2723), 1, + sym_identifier, + ACTIONS(2749), 1, anon_sym_RPAREN, - ACTIONS(2686), 1, - anon_sym_COMMA, - STATE(1031), 1, - aux_sym_open_sequence_match_pattern_repeat1, - [53114] = 4, + STATE(1333), 1, + sym_match_keyword_pattern, + [56073] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1697), 1, - anon_sym_RBRACK, - ACTIONS(2688), 1, + ACTIONS(1844), 1, anon_sym_COMMA, - STATE(1031), 1, - aux_sym_open_sequence_match_pattern_repeat1, - [53127] = 4, + ACTIONS(2753), 1, + anon_sym_in, + STATE(861), 1, + aux_sym__patterns_repeat1, + [56086] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, - anon_sym_DOT, - ACTIONS(1863), 1, + ACTIONS(2755), 1, + anon_sym_COMMA, + ACTIONS(2757), 1, anon_sym_COLON, - STATE(865), 1, - aux_sym_match_value_pattern_repeat1, - [53140] = 4, + STATE(1272), 1, + aux_sym_with_clause_repeat1, + [56099] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1705), 1, - anon_sym_RPAREN, - ACTIONS(2626), 1, - sym_identifier, - STATE(1325), 1, - sym_match_keyword_pattern, - [53153] = 4, + ACTIONS(2396), 1, + anon_sym_LPAREN, + ACTIONS(2759), 1, + anon_sym_COLON, + STATE(1451), 1, + sym_argument_list, + [56112] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2690), 1, + ACTIONS(2636), 1, anon_sym_COMMA, - ACTIONS(2692), 1, + ACTIONS(2761), 1, anon_sym_RBRACK, - STATE(1267), 1, - aux_sym_index_expression_list_repeat1, - [53166] = 4, + STATE(1187), 1, + aux_sym_type_parameters_repeat1, + [56125] = 3, + ACTIONS(1948), 1, + sym_comment, + ACTIONS(2323), 1, + anon_sym_RBRACE, + ACTIONS(2325), 2, + anon_sym_LBRACE2, + aux_sym_format_specifier_token1, + [56136] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2694), 1, + ACTIONS(2763), 1, anon_sym_RPAREN, - ACTIONS(2696), 1, + ACTIONS(2765), 1, anon_sym_COMMA, - STATE(1215), 1, + STATE(1235), 1, aux_sym_match_class_pattern_repeat2, - [53179] = 4, + [56149] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1818), 1, - anon_sym_RBRACE, - ACTIONS(2699), 1, + ACTIONS(2680), 1, anon_sym_COMMA, - STATE(1174), 1, - aux_sym_match_mapping_pattern_repeat1, - [53192] = 3, - ACTIONS(1914), 1, + ACTIONS(2767), 1, + anon_sym_RBRACK, + STATE(1257), 1, + aux_sym_index_expression_list_repeat1, + [56162] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(2288), 1, + ACTIONS(2233), 1, + sym_identifier, + STATE(1132), 1, + sym_dotted_name, + STATE(1289), 1, + sym_aliased_import, + [56175] = 3, + ACTIONS(1948), 1, + sym_comment, + ACTIONS(2303), 1, anon_sym_RBRACE, - ACTIONS(2290), 2, + ACTIONS(2305), 2, anon_sym_LBRACE2, aux_sym_format_specifier_token1, - [53203] = 4, + [56186] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2349), 1, - anon_sym_RPAREN, - ACTIONS(2701), 1, + ACTIONS(2769), 1, anon_sym_COMMA, - STATE(1051), 1, - aux_sym__collection_elements_repeat1, - [53216] = 3, - ACTIONS(1914), 1, - sym_comment, - ACTIONS(2703), 1, + ACTIONS(2771), 1, anon_sym_RBRACE, - ACTIONS(2705), 2, - anon_sym_LBRACE2, - aux_sym_format_specifier_token1, - [53227] = 4, + STATE(1180), 1, + aux_sym_dictionary_repeat1, + [56199] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2707), 1, - sym__semicolon, - ACTIONS(2709), 1, - sym__newline, - STATE(1227), 1, - aux_sym__simple_statements_repeat1, - [53240] = 4, + ACTIONS(2773), 1, + anon_sym_COMMA, + ACTIONS(2775), 1, + anon_sym_RBRACE, + STATE(1180), 1, + aux_sym_dictionary_repeat1, + [56212] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, + ACTIONS(2777), 1, anon_sym_COMMA, - ACTIONS(1895), 1, - anon_sym_RPAREN, - STATE(1274), 1, - aux_sym__collection_elements_repeat1, - [53253] = 4, + ACTIONS(2780), 1, + anon_sym_RBRACK, + STATE(1248), 1, + aux_sym_type_parameters_repeat1, + [56225] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, - anon_sym_COMMA, - ACTIONS(2711), 1, + ACTIONS(2763), 1, anon_sym_RPAREN, - STATE(1059), 1, - aux_sym__collection_elements_repeat1, - [53266] = 4, + ACTIONS(2765), 1, + anon_sym_COMMA, + STATE(1302), 1, + aux_sym_match_class_pattern_repeat2, + [56238] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, - anon_sym_COMMA, - ACTIONS(2713), 1, + ACTIONS(2723), 1, + sym_identifier, + ACTIONS(2763), 1, anon_sym_RPAREN, - STATE(1218), 1, - aux_sym__collection_elements_repeat1, - [53279] = 4, + STATE(1333), 1, + sym_match_keyword_pattern, + [56251] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2205), 1, + ACTIONS(2782), 1, anon_sym_COMMA, - ACTIONS(2207), 1, + ACTIONS(2784), 1, anon_sym_RBRACE, - STATE(1229), 1, + STATE(1180), 1, aux_sym_dictionary_repeat1, - [53292] = 4, + [56264] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2353), 1, + ACTIONS(2374), 1, anon_sym_COLON, - ACTIONS(2422), 1, + ACTIONS(2786), 1, anon_sym_RBRACE, - STATE(1413), 1, + STATE(1408), 1, sym_format_specifier, - [53305] = 4, + [56277] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2715), 1, - sym_identifier, - ACTIONS(2717), 1, - sym_match_wildcard_pattern, - STATE(1048), 1, - sym_match_capture_pattern, - [53318] = 4, - ACTIONS(3), 1, + ACTIONS(1862), 1, + anon_sym_RPAREN, + ACTIONS(2788), 1, + anon_sym_COMMA, + STATE(1281), 1, + aux_sym__parameters_repeat1, + [56290] = 3, + ACTIONS(1948), 1, sym_comment, - ACTIONS(551), 1, - sym__newline, - ACTIONS(2719), 1, - sym__semicolon, - STATE(1241), 1, - aux_sym__simple_statements_repeat1, - [53331] = 4, - ACTIONS(3), 1, + ACTIONS(2350), 1, + anon_sym_RBRACE, + ACTIONS(2352), 2, + anon_sym_LBRACE2, + aux_sym_format_specifier_token1, + [56301] = 3, + ACTIONS(1948), 1, sym_comment, - ACTIONS(2721), 1, - sym__semicolon, - ACTIONS(2723), 1, - sym__newline, - STATE(1251), 1, - aux_sym__simple_statements_repeat1, - [53344] = 4, + ACTIONS(2790), 1, + anon_sym_RBRACE, + ACTIONS(2792), 2, + anon_sym_LBRACE2, + aux_sym_format_specifier_token1, + [56312] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2725), 1, - anon_sym_COMMA, - ACTIONS(2727), 1, - anon_sym_RBRACE, - STATE(1197), 1, - aux_sym_dictionary_repeat1, - [53357] = 4, + ACTIONS(2794), 1, + anon_sym_in, + ACTIONS(2796), 2, + sym__newline, + sym__semicolon, + [56323] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2729), 1, + ACTIONS(2798), 1, anon_sym_COMMA, - ACTIONS(2731), 1, - anon_sym_RBRACE, - STATE(1197), 1, - aux_sym_dictionary_repeat1, - [53370] = 4, + ACTIONS(2800), 1, + anon_sym_RBRACK, + STATE(1201), 1, + aux_sym_index_expression_list_repeat1, + [56336] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1826), 1, - anon_sym_COLON, - ACTIONS(2733), 1, - anon_sym_COMMA, - STATE(1203), 1, - aux_sym__parameters_repeat1, - [53383] = 4, + ACTIONS(2400), 1, + anon_sym_LBRACK, + ACTIONS(2802), 1, + anon_sym_EQ, + STATE(1392), 1, + sym_type_parameters, + [56349] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2735), 1, + ACTIONS(2217), 1, anon_sym_COMMA, - ACTIONS(2737), 1, + ACTIONS(2219), 1, anon_sym_RBRACE, - STATE(1216), 1, - aux_sym_match_mapping_pattern_repeat1, - [53396] = 4, + STATE(1269), 1, + aux_sym_dictionary_repeat1, + [56362] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1954), 1, + ACTIONS(1960), 1, anon_sym_RPAREN, - ACTIONS(1956), 1, + ACTIONS(1962), 1, anon_sym_COMMA, - STATE(1238), 1, + STATE(1283), 1, aux_sym_argument_list_repeat1, - [53409] = 4, + [56375] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2739), 1, + ACTIONS(2804), 1, anon_sym_RPAREN, - ACTIONS(2741), 1, + ACTIONS(2806), 1, anon_sym_COMMA, - STATE(1239), 1, + STATE(1285), 1, aux_sym_argument_list_repeat1, - [53422] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2743), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_EQ, - [53431] = 4, + [56388] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2633), 1, + ACTIONS(2528), 3, + sym__newline, anon_sym_COMMA, - ACTIONS(2745), 1, - anon_sym_RBRACK, - STATE(1214), 1, - aux_sym_index_expression_list_repeat1, - [53444] = 4, + sym__semicolon, + [56397] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2747), 1, + ACTIONS(2680), 1, anon_sym_COMMA, - ACTIONS(2750), 1, + ACTIONS(2808), 1, anon_sym_RBRACK, - STATE(1237), 1, - aux_sym_type_parameters_repeat1, - [53457] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2752), 1, - anon_sym_RPAREN, - ACTIONS(2754), 1, - anon_sym_COMMA, - STATE(1246), 1, - aux_sym_argument_list_repeat1, - [53470] = 4, + STATE(1257), 1, + aux_sym_index_expression_list_repeat1, + [56410] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2756), 1, + ACTIONS(2810), 1, anon_sym_RPAREN, - ACTIONS(2758), 1, + ACTIONS(2812), 1, anon_sym_COMMA, - STATE(1246), 1, + STATE(1194), 1, aux_sym_argument_list_repeat1, - [53483] = 4, + [56423] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2760), 1, + ACTIONS(2814), 1, anon_sym_RPAREN, - ACTIONS(2762), 1, + ACTIONS(2816), 1, anon_sym_COMMA, - STATE(1246), 1, + STATE(1194), 1, aux_sym_argument_list_repeat1, - [53496] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2764), 1, - sym__semicolon, - ACTIONS(2767), 1, - sym__newline, - STATE(1241), 1, - aux_sym__simple_statements_repeat1, - [53509] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1843), 1, - anon_sym_COMMA, - ACTIONS(1924), 1, - anon_sym_RPAREN, - STATE(1274), 1, - aux_sym__collection_elements_repeat1, - [53522] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(557), 1, - sym__newline, - ACTIONS(2769), 1, - sym__semicolon, - STATE(1241), 1, - aux_sym__simple_statements_repeat1, - [53535] = 2, + [56436] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2771), 3, - sym__newline, - anon_sym_COMMA, - sym__semicolon, - [53544] = 4, + ACTIONS(2374), 1, + anon_sym_COLON, + ACTIONS(2532), 1, + anon_sym_RBRACE, + STATE(1410), 1, + sym_format_specifier, + [56449] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2773), 1, + ACTIONS(2521), 1, anon_sym_RPAREN, - ACTIONS(2775), 1, + ACTIONS(2818), 1, anon_sym_COMMA, - STATE(1246), 1, - aux_sym_argument_list_repeat1, - [53557] = 4, + STATE(1216), 1, + aux_sym__import_list_repeat1, + [56462] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2777), 1, + ACTIONS(2820), 3, anon_sym_RPAREN, - ACTIONS(2779), 1, anon_sym_COMMA, - STATE(1246), 1, - aux_sym_argument_list_repeat1, - [53570] = 4, + anon_sym_COLON, + [56471] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2161), 1, + ACTIONS(2822), 1, anon_sym_COMMA, - ACTIONS(2163), 1, + ACTIONS(2824), 1, anon_sym_RBRACE, - STATE(1263), 1, + STATE(1180), 1, aux_sym_dictionary_repeat1, - [53583] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2652), 1, - anon_sym_RPAREN, - ACTIONS(2782), 1, - anon_sym_COMMA, - STATE(1266), 1, - aux_sym__parameters_repeat1, - [53596] = 4, + [56484] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2353), 1, + ACTIONS(2374), 1, anon_sym_COLON, - ACTIONS(2784), 1, + ACTIONS(2613), 1, anon_sym_RBRACE, - STATE(1440), 1, + STATE(1458), 1, sym_format_specifier, - [53609] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2786), 1, - anon_sym_if, - ACTIONS(2788), 1, - anon_sym_COLON, - STATE(1441), 1, - sym_guard, - [53622] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(549), 1, - sym__newline, - ACTIONS(2790), 1, - sym__semicolon, - STATE(1241), 1, - aux_sym__simple_statements_repeat1, - [53635] = 4, + [56497] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2329), 1, - anon_sym_LBRACK, - ACTIONS(2792), 1, + ACTIONS(2571), 1, anon_sym_EQ, - STATE(1452), 1, - sym_type_parameters, - [53648] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2083), 1, - anon_sym_from, - ACTIONS(2087), 2, - sym__newline, - sym__semicolon, - [53659] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2794), 1, + ACTIONS(2567), 2, anon_sym_COMMA, - ACTIONS(2796), 2, - anon_sym_if, anon_sym_COLON, - [53670] = 3, + [56508] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2798), 1, - anon_sym_COLON, - ACTIONS(2520), 2, - anon_sym_RPAREN, + ACTIONS(2755), 1, anon_sym_COMMA, - [53681] = 2, + ACTIONS(2826), 1, + anon_sym_COLON, + STATE(1115), 1, + aux_sym_with_clause_repeat1, + [56521] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2449), 3, - anon_sym_RPAREN, + ACTIONS(2828), 1, anon_sym_COMMA, - anon_sym_COLON, - [53690] = 4, + ACTIONS(2830), 1, + anon_sym_RBRACE, + STATE(1301), 1, + aux_sym_match_mapping_pattern_repeat1, + [56534] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(989), 1, + ACTIONS(2832), 1, anon_sym_RPAREN, - ACTIONS(2800), 1, + ACTIONS(2834), 1, anon_sym_COMMA, - STATE(1102), 1, + STATE(1294), 1, aux_sym_with_clause_repeat1, - [53703] = 2, + [56547] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2179), 3, - sym__newline, - anon_sym_EQ, - sym__semicolon, - [53712] = 3, - ACTIONS(1914), 1, - sym_comment, - ACTIONS(2284), 1, - anon_sym_RBRACE, - ACTIONS(2286), 2, - anon_sym_LBRACE2, - aux_sym_format_specifier_token1, - [53723] = 4, + ACTIONS(1737), 1, + anon_sym_RPAREN, + ACTIONS(2836), 1, + anon_sym_COMMA, + STATE(1309), 1, + aux_sym_match_class_pattern_repeat1, + [56560] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2325), 1, - anon_sym_LPAREN, - ACTIONS(2802), 1, + ACTIONS(2733), 1, anon_sym_COLON, - STATE(1421), 1, - sym_argument_list, - [53736] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2181), 1, + ACTIONS(2838), 1, anon_sym_COMMA, - ACTIONS(2183), 1, - anon_sym_RBRACE, - STATE(1188), 1, - aux_sym_dictionary_repeat1, - [53749] = 4, + STATE(1198), 1, + aux_sym__parameters_repeat1, + [56573] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2786), 1, + ACTIONS(2626), 1, anon_sym_if, - ACTIONS(2804), 1, + ACTIONS(2840), 1, anon_sym_COLON, - STATE(1432), 1, + STATE(1464), 1, sym_guard, - [53762] = 4, + [56586] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2806), 1, + ACTIONS(2567), 3, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2808), 1, - anon_sym_RBRACE, - STATE(1197), 1, - aux_sym_dictionary_repeat1, - [53775] = 3, + anon_sym_COLON, + [56595] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2810), 1, + ACTIONS(1844), 1, + anon_sym_COMMA, + ACTIONS(2842), 1, anon_sym_in, - ACTIONS(2812), 2, - sym__newline, - sym__semicolon, - [53786] = 4, + STATE(861), 1, + aux_sym__patterns_repeat1, + [56608] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2814), 1, + ACTIONS(1844), 1, anon_sym_COMMA, - ACTIONS(2816), 1, - anon_sym_RBRACE, - STATE(1197), 1, - aux_sym_dictionary_repeat1, - [53799] = 4, + ACTIONS(2844), 1, + anon_sym_in, + STATE(861), 1, + aux_sym__patterns_repeat1, + [56621] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1826), 1, + ACTIONS(2846), 1, anon_sym_RPAREN, - ACTIONS(2818), 1, + ACTIONS(2848), 1, anon_sym_COMMA, - STATE(1165), 1, + STATE(1281), 1, aux_sym__parameters_repeat1, - [53812] = 4, + [56634] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2820), 1, + ACTIONS(2488), 3, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2823), 1, - anon_sym_RBRACK, - STATE(1267), 1, - aux_sym_index_expression_list_repeat1, - [53825] = 2, + anon_sym_COLON, + [56643] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2498), 3, - sym__newline, + ACTIONS(2851), 1, + anon_sym_RPAREN, + ACTIONS(2853), 1, anon_sym_COMMA, - sym__semicolon, - [53834] = 4, + STATE(1194), 1, + aux_sym_argument_list_repeat1, + [56656] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2825), 1, + ACTIONS(2846), 1, + anon_sym_COLON, + ACTIONS(2855), 1, + anon_sym_COMMA, + STATE(1284), 1, + aux_sym__parameters_repeat1, + [56669] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2858), 1, anon_sym_RPAREN, - ACTIONS(2827), 1, + ACTIONS(2860), 1, anon_sym_COMMA, - STATE(1183), 1, - aux_sym_match_class_pattern_repeat1, - [53847] = 4, + STATE(1194), 1, + aux_sym_argument_list_repeat1, + [56682] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2862), 1, + anon_sym_RPAREN, + ACTIONS(2864), 1, + anon_sym_COMMA, + STATE(1194), 1, + aux_sym_argument_list_repeat1, + [56695] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2374), 1, + anon_sym_COLON, + ACTIONS(2866), 1, + anon_sym_RBRACE, + STATE(1497), 1, + sym_format_specifier, + [56708] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2825), 1, + ACTIONS(2846), 3, anon_sym_RPAREN, - ACTIONS(2829), 1, anon_sym_COMMA, - STATE(1208), 1, - aux_sym_match_class_pattern_repeat2, - [53860] = 4, + anon_sym_COLON, + [56717] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2517), 3, + sym__newline, + anon_sym_COMMA, + sym__semicolon, + [56726] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2165), 1, - sym_identifier, - STATE(1124), 1, - sym_dotted_name, - STATE(1268), 1, - sym_aliased_import, - [53873] = 4, + ACTIONS(2868), 3, + sym__newline, + anon_sym_COMMA, + sym__semicolon, + [56735] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1798), 1, + ACTIONS(1844), 1, anon_sym_COMMA, - ACTIONS(2831), 1, + ACTIONS(2870), 1, anon_sym_in, - STATE(842), 1, + STATE(861), 1, aux_sym__patterns_repeat1, - [53886] = 4, + [56748] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2833), 1, - anon_sym_RPAREN, - ACTIONS(2835), 1, - anon_sym_COMMA, - STATE(1246), 1, - aux_sym_argument_list_repeat1, - [53899] = 4, + ACTIONS(2872), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_EQ, + [56757] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2349), 1, + ACTIONS(2382), 1, anon_sym_RPAREN, - ACTIONS(2837), 1, + ACTIONS(2874), 1, anon_sym_COMMA, - STATE(1051), 1, + STATE(1099), 1, aux_sym__collection_elements_repeat1, - [53912] = 4, + [56770] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1926), 1, + ACTIONS(923), 1, anon_sym_RPAREN, - ACTIONS(1928), 1, + ACTIONS(2876), 1, anon_sym_COMMA, - STATE(1167), 1, - aux_sym_argument_list_repeat1, - [53925] = 4, + STATE(1115), 1, + aux_sym_with_clause_repeat1, + [56783] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2839), 1, + ACTIONS(1737), 1, anon_sym_RPAREN, - ACTIONS(2841), 1, + ACTIONS(2878), 1, anon_sym_COMMA, - STATE(1169), 1, - aux_sym_argument_list_repeat1, - [53938] = 4, + STATE(1302), 1, + aux_sym_match_class_pattern_repeat2, + [56796] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2654), 1, + ACTIONS(2880), 1, + anon_sym_RPAREN, + ACTIONS(2882), 1, anon_sym_COMMA, - ACTIONS(2843), 1, - anon_sym_RBRACK, - STATE(1196), 1, - aux_sym_type_parameters_repeat1, - [53951] = 4, + STATE(1194), 1, + aux_sym_argument_list_repeat1, + [56809] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1798), 1, + ACTIONS(2382), 1, + anon_sym_RPAREN, + ACTIONS(2884), 1, anon_sym_COMMA, - ACTIONS(2845), 1, - anon_sym_in, - STATE(842), 1, - aux_sym__patterns_repeat1, - [53964] = 4, + STATE(1099), 1, + aux_sym__collection_elements_repeat1, + [56822] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1798), 1, + ACTIONS(2479), 3, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2847), 1, - anon_sym_in, - STATE(842), 1, - aux_sym__patterns_repeat1, - [53977] = 4, + anon_sym_COLON, + [56831] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2849), 1, - anon_sym_RBRACK, - STATE(1214), 1, - aux_sym_index_expression_list_repeat1, - [53990] = 4, + ACTIONS(558), 1, + sym__newline, + ACTIONS(2886), 1, + sym__semicolon, + STATE(1196), 1, + aux_sym__simple_statements_repeat1, + [56844] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2576), 1, + ACTIONS(1737), 1, anon_sym_RPAREN, - ACTIONS(2626), 1, + ACTIONS(2723), 1, sym_identifier, - STATE(1325), 1, + STATE(1333), 1, sym_match_keyword_pattern, - [54003] = 4, + [56857] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2626), 1, - sym_identifier, - ACTIONS(2851), 1, - anon_sym_RPAREN, - STATE(1325), 1, - sym_match_keyword_pattern, - [54016] = 3, + ACTIONS(1792), 1, + anon_sym_RBRACE, + ACTIONS(2888), 1, + anon_sym_COMMA, + STATE(1202), 1, + aux_sym_match_mapping_pattern_repeat1, + [56870] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2085), 1, + ACTIONS(2890), 1, + anon_sym_RPAREN, + ACTIONS(2892), 1, anon_sym_COMMA, - STATE(1065), 1, - aux_sym_expression_list_repeat1, - [54026] = 3, + STATE(1302), 1, + aux_sym_match_class_pattern_repeat2, + [56883] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1897), 1, anon_sym_COMMA, - STATE(933), 1, - aux_sym_expression_list_repeat1, - [54036] = 2, + ACTIONS(2895), 1, + anon_sym_RPAREN, + STATE(1297), 1, + aux_sym__collection_elements_repeat1, + [56896] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2853), 2, + ACTIONS(1897), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [54044] = 2, + ACTIONS(2897), 1, + anon_sym_RPAREN, + STATE(1077), 1, + aux_sym__collection_elements_repeat1, + [56909] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(888), 2, - anon_sym_except, - anon_sym_finally, - [54052] = 3, + ACTIONS(2521), 1, + anon_sym_RPAREN, + ACTIONS(2899), 1, + anon_sym_COMMA, + STATE(1216), 1, + aux_sym__import_list_repeat1, + [56922] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1824), 1, - anon_sym_RBRACE, - ACTIONS(2855), 1, + ACTIONS(1844), 1, anon_sym_COMMA, - [54062] = 3, + ACTIONS(2901), 1, + anon_sym_in, + STATE(861), 1, + aux_sym__patterns_repeat1, + [56935] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2857), 1, + ACTIONS(2903), 3, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, - ACTIONS(2859), 1, - anon_sym_DASH_GT, - [54072] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2447), 1, - anon_sym_LPAREN, - STATE(1299), 1, - sym_parameters, - [54082] = 3, + [56944] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2861), 1, - sym_integer, - ACTIONS(2863), 1, - sym_float, - [54092] = 2, + ACTIONS(1739), 1, + anon_sym_RPAREN, + ACTIONS(2723), 1, + sym_identifier, + STATE(1333), 1, + sym_match_keyword_pattern, + [56957] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2865), 2, - sym__newline, - sym__semicolon, - [54100] = 2, + ACTIONS(2905), 1, + anon_sym_RPAREN, + ACTIONS(2907), 1, + anon_sym_COMMA, + STATE(1309), 1, + aux_sym_match_class_pattern_repeat1, + [56970] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2867), 2, - sym__newline, - sym__semicolon, - [54108] = 2, + ACTIONS(2442), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [56978] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2869), 2, + ACTIONS(2910), 2, sym__newline, sym__semicolon, - [54116] = 2, + [56986] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2871), 2, - sym__newline, - sym__semicolon, - [54124] = 2, + ACTIONS(992), 2, + anon_sym_except, + anon_sym_finally, + [56994] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2520), 2, + ACTIONS(2912), 1, anon_sym_COMMA, - anon_sym_COLON, - [54132] = 3, + ACTIONS(2914), 1, + anon_sym_RBRACE, + [57004] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2873), 1, - sym_integer, - ACTIONS(2875), 1, - sym_float, - [54142] = 2, + ACTIONS(2916), 2, + sym__newline, + sym__semicolon, + [57012] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2877), 2, + ACTIONS(2918), 2, sym__newline, sym__semicolon, - [54150] = 2, + [57020] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2177), 2, + ACTIONS(2920), 2, sym__newline, sym__semicolon, - [54158] = 3, + [57028] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2879), 1, - anon_sym_COLON, - ACTIONS(2881), 1, - anon_sym_DASH_GT, - [54168] = 2, + ACTIONS(2458), 1, + anon_sym_LPAREN, + STATE(1347), 1, + sym_parameters, + [57038] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2883), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [54176] = 2, + ACTIONS(964), 2, + anon_sym_except, + anon_sym_finally, + [57046] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2885), 2, - sym__newline, - sym__semicolon, - [54184] = 3, + ACTIONS(2458), 1, + anon_sym_LPAREN, + STATE(1348), 1, + sym_parameters, + [57056] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2887), 1, + ACTIONS(2922), 1, anon_sym_COLON, - ACTIONS(2889), 1, + ACTIONS(2924), 1, anon_sym_DASH_GT, - [54194] = 3, + [57066] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2926), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [57074] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2447), 1, + ACTIONS(2458), 1, anon_sym_LPAREN, - STATE(1324), 1, + STATE(1353), 1, sym_parameters, - [54204] = 2, + [57084] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2891), 2, - sym__newline, - sym__semicolon, - [54212] = 2, + ACTIONS(2928), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [57092] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2893), 2, - sym__newline, - sym__semicolon, - [54220] = 2, + ACTIONS(2372), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [57100] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2628), 2, - anon_sym_RPAREN, + ACTIONS(2930), 2, anon_sym_COMMA, - [54228] = 2, + anon_sym_RBRACK, + [57108] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2895), 2, - anon_sym_COLON, - anon_sym_DASH_GT, - [54236] = 2, + ACTIONS(2932), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [57116] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2897), 2, + ACTIONS(2934), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [54244] = 3, + anon_sym_RBRACK, + [57124] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2794), 1, + ACTIONS(2149), 1, anon_sym_COMMA, - ACTIONS(2899), 1, - anon_sym_RPAREN, - [54254] = 3, + STATE(1078), 1, + aux_sym_expression_list_repeat1, + [57134] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2901), 1, - anon_sym_COMMA, - STATE(1210), 1, - aux_sym_open_sequence_match_pattern_repeat1, - [54264] = 2, + ACTIONS(2241), 2, + sym__newline, + sym__semicolon, + [57142] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(910), 2, - anon_sym_except, - anon_sym_finally, - [54272] = 2, + ACTIONS(1891), 2, + sym__newline, + sym__semicolon, + [57150] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2903), 2, + ACTIONS(2567), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [54280] = 2, + anon_sym_COLON, + [57158] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2905), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [54288] = 2, + [57166] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2385), 2, + ACTIONS(2890), 2, anon_sym_RPAREN, anon_sym_COMMA, - [54296] = 2, + [57174] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 2, - sym__newline, - sym__semicolon, - [54304] = 2, + ACTIONS(2936), 2, + anon_sym_COLON, + anon_sym_DASH_GT, + [57182] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2767), 2, + ACTIONS(2938), 2, sym__newline, sym__semicolon, - [54312] = 3, + [57190] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2907), 1, - anon_sym_COMMA, - STATE(1139), 1, - aux_sym_open_sequence_match_pattern_repeat1, - [54322] = 2, + ACTIONS(2940), 1, + sym_integer, + ACTIONS(2942), 1, + sym_float, + [57200] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2909), 2, - anon_sym_RPAREN, + ACTIONS(2830), 1, + anon_sym_RBRACE, + ACTIONS(2944), 1, anon_sym_COMMA, - [54330] = 3, + [57210] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2911), 1, - sym_integer, - ACTIONS(2913), 1, - sym_float, - [54340] = 2, + ACTIONS(2946), 2, + sym__newline, + sym__semicolon, + [57218] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2323), 2, + ACTIONS(1808), 1, + anon_sym_RBRACE, + ACTIONS(2948), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [54348] = 2, + [57228] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(914), 2, - anon_sym_except, - anon_sym_finally, - [54356] = 2, + ACTIONS(2950), 2, + sym__newline, + sym__semicolon, + [57236] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2498), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [54364] = 3, + ACTIONS(1873), 1, + anon_sym_DOT, + STATE(1224), 1, + aux_sym_match_value_pattern_repeat1, + [57246] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2737), 1, - anon_sym_RBRACE, - ACTIONS(2915), 1, - anon_sym_COMMA, - [54374] = 3, + ACTIONS(2952), 1, + sym_identifier, + STATE(1370), 1, + sym_match_capture_pattern, + [57256] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2917), 1, - anon_sym_COLON, - ACTIONS(2919), 1, - anon_sym_DASH_GT, - [54384] = 2, + ACTIONS(2954), 2, + sym__newline, + sym__semicolon, + [57264] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2694), 2, - anon_sym_RPAREN, + ACTIONS(2678), 2, anon_sym_COMMA, - [54392] = 2, + anon_sym_RBRACE, + [57272] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2771), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [54400] = 2, + ACTIONS(2243), 1, + anon_sym_as, + ACTIONS(2245), 1, + anon_sym_COLON, + [57282] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 2, - sym__newline, - sym__semicolon, - [54408] = 3, + ACTIONS(2247), 1, + anon_sym_as, + ACTIONS(2249), 1, + anon_sym_COLON, + [57292] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2921), 1, + ACTIONS(2956), 1, anon_sym_COLON, - ACTIONS(2923), 1, + ACTIONS(2958), 1, anon_sym_DASH_GT, - [54418] = 3, + [57302] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2925), 1, + ACTIONS(2960), 1, anon_sym_COLON, - ACTIONS(2927), 1, + ACTIONS(2962), 1, anon_sym_DASH_GT, - [54428] = 3, + [57312] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2929), 1, + ACTIONS(2964), 1, anon_sym_COLON, - ACTIONS(2931), 1, + ACTIONS(2966), 1, anon_sym_DASH_GT, - [54438] = 3, + [57322] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2933), 1, + ACTIONS(2968), 1, anon_sym_COLON, - ACTIONS(2935), 1, + ACTIONS(2970), 1, anon_sym_DASH_GT, - [54448] = 2, + [57332] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2937), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [54456] = 2, + ACTIONS(2723), 1, + sym_identifier, + STATE(1333), 1, + sym_match_keyword_pattern, + [57342] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(925), 2, - anon_sym_except, - anon_sym_finally, - [54464] = 2, + ACTIONS(2972), 2, + sym__newline, + sym__semicolon, + [57350] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2939), 2, + ACTIONS(2974), 1, anon_sym_COLON, + ACTIONS(2976), 1, anon_sym_DASH_GT, - [54472] = 2, + [57360] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2941), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [54480] = 2, + ACTIONS(2179), 1, + anon_sym_as, + ACTIONS(2181), 1, + anon_sym_COLON, + [57370] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2612), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [54488] = 2, + ACTIONS(2978), 1, + anon_sym_COLON, + ACTIONS(2980), 1, + anon_sym_DASH_GT, + [57380] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2943), 2, + ACTIONS(2982), 2, sym__newline, sym__semicolon, - [54496] = 2, + [57388] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2945), 2, + ACTIONS(2984), 2, sym__newline, sym__semicolon, - [54504] = 2, + [57396] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2947), 2, + ACTIONS(2517), 2, anon_sym_RPAREN, anon_sym_COMMA, - [54512] = 2, + [57404] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2129), 2, - sym__newline, - sym__semicolon, - [54520] = 2, + ACTIONS(2986), 1, + anon_sym_COLON, + ACTIONS(2988), 1, + anon_sym_DASH_GT, + [57414] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2949), 2, - sym__newline, - sym__semicolon, - [54528] = 2, + ACTIONS(960), 2, + anon_sym_except, + anon_sym_finally, + [57422] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2951), 2, - sym__newline, - sym__semicolon, - [54536] = 3, + ACTIONS(2990), 1, + sym_integer, + ACTIONS(2992), 1, + sym_float, + [57432] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2953), 1, - sym_identifier, - STATE(1300), 1, - sym_match_capture_pattern, - [54546] = 2, + ACTIONS(2994), 1, + anon_sym_COMMA, + STATE(1141), 1, + aux_sym_open_sequence_match_pattern_repeat1, + [57442] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2955), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [54554] = 2, + ACTIONS(2996), 2, + anon_sym_COLON, + anon_sym_DASH_GT, + [57450] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2957), 2, + ACTIONS(2998), 2, anon_sym_COMMA, anon_sym_RBRACK, - [54562] = 3, + [57458] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2447), 1, - anon_sym_LPAREN, - STATE(1330), 1, - sym_parameters, - [54572] = 2, + ACTIONS(3000), 2, + sym__newline, + sym__semicolon, + [57466] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2959), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [54580] = 3, + ACTIONS(3002), 1, + sym_integer, + ACTIONS(3004), 1, + sym_float, + [57476] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2447), 1, + ACTIONS(2458), 1, anon_sym_LPAREN, - STATE(1331), 1, + STATE(1320), 1, sym_parameters, - [54590] = 2, + [57486] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(906), 2, - anon_sym_except, - anon_sym_finally, - [54598] = 2, + ACTIONS(3006), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [57494] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2961), 2, + ACTIONS(2664), 2, sym__newline, sym__semicolon, - [54606] = 3, + [57502] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2963), 1, + ACTIONS(3008), 2, anon_sym_COMMA, - ACTIONS(2965), 1, anon_sym_RBRACE, - [54616] = 3, + [57510] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, - anon_sym_DOT, - STATE(1212), 1, - aux_sym_match_value_pattern_repeat1, - [54626] = 3, + ACTIONS(3010), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [57518] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2626), 1, - sym_identifier, - STATE(1325), 1, - sym_match_keyword_pattern, - [54636] = 2, + ACTIONS(956), 2, + anon_sym_except, + anon_sym_finally, + [57526] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2967), 1, - anon_sym_COLON, - [54643] = 2, + ACTIONS(3012), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [57534] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2969), 1, - anon_sym_RBRACE, - [54650] = 2, + ACTIONS(2868), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [57542] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2971), 1, - anon_sym_COLON, - [54657] = 2, + ACTIONS(1893), 1, + anon_sym_COMMA, + STATE(986), 1, + aux_sym_expression_list_repeat1, + [57552] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2973), 1, - anon_sym_COLON, - [54664] = 2, + ACTIONS(2630), 1, + anon_sym_COMMA, + ACTIONS(3014), 1, + anon_sym_RPAREN, + [57562] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2975), 1, - anon_sym_COLON, - [54671] = 2, + ACTIONS(2239), 2, + sym__newline, + sym__semicolon, + [57570] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2977), 1, - sym_identifier, - [54678] = 2, + ACTIONS(3016), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [57578] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2979), 1, - anon_sym_RBRACE, - [54685] = 2, + ACTIONS(2261), 1, + anon_sym_as, + ACTIONS(2263), 1, + anon_sym_COLON, + [57588] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2981), 1, - anon_sym_in, - [54692] = 2, + ACTIONS(2189), 2, + sym__newline, + sym__semicolon, + [57596] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2983), 1, - anon_sym_RPAREN, - [54699] = 2, + ACTIONS(3018), 2, + sym__newline, + sym__semicolon, + [57604] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2985), 1, - anon_sym_RBRACK, - [54706] = 2, + ACTIONS(3020), 1, + anon_sym_COMMA, + STATE(1234), 1, + aux_sym_open_sequence_match_pattern_repeat1, + [57614] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2987), 1, - anon_sym_RPAREN, - [54713] = 2, + ACTIONS(986), 2, + anon_sym_except, + anon_sym_finally, + [57622] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3022), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [57630] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2989), 1, + ACTIONS(3024), 1, anon_sym_COLON, - [54720] = 2, + [57637] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2991), 1, - anon_sym_RBRACE, - [54727] = 2, + ACTIONS(3026), 1, + anon_sym_RPAREN, + [57644] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2993), 1, + ACTIONS(3028), 1, anon_sym_RBRACE, - [54734] = 2, + [57651] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2995), 1, + ACTIONS(1792), 1, anon_sym_RBRACE, - [54741] = 2, + [57658] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2997), 1, - anon_sym_import, - [54748] = 2, + ACTIONS(3030), 1, + anon_sym_RBRACE, + [57665] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2999), 1, - anon_sym_COLON, - [54755] = 2, + ACTIONS(3032), 1, + anon_sym_RBRACK, + [57672] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3001), 1, + ACTIONS(3034), 1, anon_sym_RPAREN, - [54762] = 2, + [57679] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3003), 1, - anon_sym_import, - [54769] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3005), 1, - sym_identifier, - [54776] = 2, + ACTIONS(3036), 1, + anon_sym_EQ, + [57686] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3007), 1, + ACTIONS(3038), 1, anon_sym_RBRACK, - [54783] = 2, + [57693] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2849), 1, - anon_sym_RBRACK, - [54790] = 2, + ACTIONS(3040), 1, + anon_sym_RBRACE, + [57700] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2745), 1, - anon_sym_RBRACK, - [54797] = 2, + ACTIONS(3042), 1, + anon_sym_COLON, + [57707] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3009), 1, - anon_sym_RPAREN, - [54804] = 2, + ACTIONS(3044), 1, + anon_sym_RBRACE, + [57714] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3011), 1, - anon_sym_RPAREN, - [54811] = 2, + ACTIONS(3046), 1, + anon_sym_COLON, + [57721] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3013), 1, + ACTIONS(3048), 1, sym_identifier, - [54818] = 2, + [57728] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3015), 1, - sym_identifier, - [54825] = 2, + ACTIONS(3050), 1, + anon_sym_in, + [57735] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1002), 1, - anon_sym_STAR, - [54832] = 2, + ACTIONS(3052), 1, + anon_sym_RPAREN, + [57742] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3054), 1, + anon_sym_RBRACK, + [57749] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3017), 1, + ACTIONS(3056), 1, anon_sym_COLON, - [54839] = 2, + [57756] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(3058), 1, anon_sym_RBRACE, - [54846] = 2, + [57763] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3019), 1, - anon_sym_COLON, - [54853] = 2, + ACTIONS(3060), 1, + anon_sym_RBRACE, + [57770] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3062), 1, + anon_sym_RPAREN, + [57777] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3021), 1, + ACTIONS(3064), 1, anon_sym_COLON, - [54860] = 2, + [57784] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3023), 1, - anon_sym_LPAREN, - [54867] = 2, + ACTIONS(2682), 1, + anon_sym_RBRACK, + [57791] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2965), 1, + ACTIONS(3066), 1, anon_sym_RBRACE, - [54874] = 2, + [57798] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3025), 1, - anon_sym_import, - [54881] = 2, + ACTIONS(3068), 1, + anon_sym_RPAREN, + [57805] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2635), 1, - anon_sym_RBRACK, - [54888] = 2, + ACTIONS(2866), 1, + anon_sym_RBRACE, + [57812] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3027), 1, - ts_builtin_sym_end, - [54895] = 2, + ACTIONS(3070), 1, + sym_identifier, + [57819] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3029), 1, - anon_sym_COLON, - [54902] = 2, + ACTIONS(3072), 1, + sym_identifier, + [57826] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2414), 1, - anon_sym_RBRACE, - [54909] = 2, + ACTIONS(3074), 1, + anon_sym_COLON, + [57833] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3031), 1, - anon_sym_COLON, - [54916] = 2, + ACTIONS(3076), 1, + sym_identifier, + [57840] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3033), 1, - anon_sym_in, - [54923] = 2, + ACTIONS(3078), 1, + anon_sym_COLON, + [57847] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3035), 1, + ACTIONS(3080), 1, anon_sym_RPAREN, - [54930] = 2, + [57854] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3037), 1, + ACTIONS(3082), 1, anon_sym_in, - [54937] = 2, + [57861] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3039), 1, + ACTIONS(3084), 1, sym_identifier, - [54944] = 2, + [57868] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2105), 1, - anon_sym_EQ, - [54951] = 2, + ACTIONS(3086), 1, + anon_sym_LPAREN, + [57875] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3041), 1, - anon_sym_RBRACE, - [54958] = 2, + ACTIONS(3088), 1, + anon_sym_import, + [57882] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3043), 1, + ACTIONS(3090), 1, sym_identifier, - [54965] = 2, + [57889] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3045), 1, - anon_sym_RBRACE, - [54972] = 2, + ACTIONS(2745), 1, + anon_sym_in, + [57896] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3047), 1, + ACTIONS(3092), 1, anon_sym_COLON, - [54979] = 2, + [57903] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3049), 1, - anon_sym_COLON, - [54986] = 2, + ACTIONS(3094), 1, + anon_sym_in, + [57910] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2257), 1, + ACTIONS(3096), 1, anon_sym_COLON, - [54993] = 2, + [57917] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3051), 1, - sym_identifier, - [55000] = 2, + ACTIONS(3098), 1, + anon_sym_RPAREN, + [57924] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2831), 1, - anon_sym_in, - [55007] = 2, + ACTIONS(3100), 1, + anon_sym_import, + [57931] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3053), 1, - anon_sym_RPAREN, - [55014] = 2, + ACTIONS(2844), 1, + anon_sym_in, + [57938] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3055), 1, - anon_sym_COLON, - [55021] = 2, + ACTIONS(891), 1, + anon_sym_STAR, + [57945] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3057), 1, - sym_identifier, - [55028] = 2, + ACTIONS(3102), 1, + anon_sym_COLON, + [57952] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3059), 1, + ACTIONS(3104), 1, anon_sym_COLON, - [55035] = 2, + [57959] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3061), 1, + ACTIONS(3106), 1, anon_sym_COLON, - [55042] = 2, + [57966] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3063), 1, + ACTIONS(3108), 1, anon_sym_COLON, - [55049] = 2, + [57973] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2603), 1, - anon_sym_RBRACE, - [55056] = 2, + ACTIONS(3110), 1, + anon_sym_RBRACK, + [57980] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3065), 1, + ACTIONS(3112), 1, anon_sym_COLON, - [55063] = 2, + [57987] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3067), 1, - sym_identifier, - [55070] = 2, + ACTIONS(3114), 1, + anon_sym_RPAREN, + [57994] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2209), 1, + ACTIONS(2311), 1, anon_sym_COLON, - [55077] = 2, + [58001] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3069), 1, + ACTIONS(3116), 1, anon_sym_RBRACK, - [55084] = 2, + [58008] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3071), 1, - sym_identifier, - [55091] = 2, + ACTIONS(3118), 1, + anon_sym_COLON, + [58015] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3073), 1, + ACTIONS(3120), 1, anon_sym_COLON, - [55098] = 2, + [58022] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3075), 1, - anon_sym_RPAREN, - [55105] = 2, + ACTIONS(3122), 1, + anon_sym_RBRACK, + [58029] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3077), 1, - anon_sym_COLON, - [55112] = 2, + ACTIONS(3124), 1, + anon_sym_RBRACE, + [58036] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3079), 1, - anon_sym_COLON, - [55119] = 2, + ACTIONS(2753), 1, + anon_sym_in, + [58043] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2302), 1, + ACTIONS(3126), 1, anon_sym_COLON, - [55126] = 2, + [58050] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2784), 1, + ACTIONS(3128), 1, anon_sym_RBRACE, - [55133] = 2, + [58057] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3081), 1, - anon_sym_for, - [55140] = 2, + ACTIONS(2278), 1, + anon_sym_COLON, + [58064] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3083), 1, - anon_sym_RBRACK, - [55147] = 2, + ACTIONS(3130), 1, + anon_sym_RPAREN, + [58071] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1818), 1, - anon_sym_RBRACE, - [55154] = 2, + ACTIONS(3132), 1, + anon_sym_COLON, + [58078] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3085), 1, + ACTIONS(3134), 1, anon_sym_COLON, - [55161] = 2, + [58085] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2605), 1, - anon_sym_in, - [55168] = 2, + ACTIONS(3136), 1, + anon_sym_COLON, + [58092] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3087), 1, + ACTIONS(3138), 1, anon_sym_COLON, - [55175] = 2, + [58099] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3089), 1, + ACTIONS(3140), 1, anon_sym_COLON, - [55182] = 2, + [58106] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3091), 1, + ACTIONS(2321), 1, anon_sym_COLON, - [55189] = 2, + [58113] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3093), 1, - anon_sym_COLON, - [55196] = 2, + ACTIONS(2767), 1, + anon_sym_RBRACK, + [58120] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3095), 1, - anon_sym_COLON, - [55203] = 2, + ACTIONS(3142), 1, + anon_sym_RBRACE, + [58127] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3097), 1, - anon_sym_COLON, - [55210] = 2, + ACTIONS(3144), 1, + anon_sym_RBRACE, + [58134] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3146), 1, + anon_sym_RBRACE, + [58141] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2786), 1, + anon_sym_RBRACE, + [58148] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3099), 1, + ACTIONS(3148), 1, anon_sym_COLON, - [55217] = 2, + [58155] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2614), 1, - anon_sym_in, - [55224] = 2, + ACTIONS(2613), 1, + anon_sym_RBRACE, + [58162] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3101), 1, + ACTIONS(3150), 1, anon_sym_COLON, - [55231] = 2, + [58169] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3103), 1, + ACTIONS(3152), 1, anon_sym_RBRACE, - [55238] = 2, + [58176] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3105), 1, + ACTIONS(3154), 1, anon_sym_RBRACE, - [55245] = 2, + [58183] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3107), 1, + ACTIONS(3156), 1, anon_sym_COLON, - [55252] = 2, + [58190] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3109), 1, - sym_identifier, - [55259] = 2, + ACTIONS(3158), 1, + anon_sym_COLON, + [58197] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3160), 1, + anon_sym_COLON, + [58204] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3111), 1, + ACTIONS(3162), 1, anon_sym_RBRACK, - [55266] = 2, + [58211] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3113), 1, - anon_sym_COLON, - [55273] = 2, + ACTIONS(3164), 1, + anon_sym_RPAREN, + [58218] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3115), 1, + ACTIONS(2808), 1, anon_sym_RBRACK, - [55280] = 2, + [58225] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2665), 1, - anon_sym_in, - [55287] = 2, + ACTIONS(2532), 1, + anon_sym_RBRACE, + [58232] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3166), 1, + anon_sym_COLON, + [58239] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3117), 1, + ACTIONS(3168), 1, anon_sym_COLON, - [55294] = 2, + [58246] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3119), 1, + ACTIONS(3170), 1, anon_sym_RPAREN, - [55301] = 2, + [58253] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2282), 1, + ACTIONS(3172), 1, anon_sym_COLON, - [55308] = 2, + [58260] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3121), 1, - sym_identifier, - [55315] = 2, + ACTIONS(2129), 1, + anon_sym_EQ, + [58267] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(2901), 1, anon_sym_in, - [55322] = 2, + [58274] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3125), 1, - anon_sym_EQ, - [55329] = 2, + ACTIONS(3174), 1, + sym_identifier, + [58281] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3127), 1, - sym_identifier, - [55336] = 2, + ACTIONS(3176), 1, + anon_sym_COLON, + [58288] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3178), 1, + anon_sym_COLON, + [58295] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3129), 1, + ACTIONS(3180), 1, anon_sym_RPAREN, - [55343] = 2, + [58302] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3131), 1, - anon_sym_RBRACE, - [55350] = 2, + ACTIONS(3182), 1, + sym_identifier, + [58309] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3133), 1, - anon_sym_RPAREN, - [55357] = 2, + ACTIONS(3184), 1, + sym_identifier, + [58316] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3135), 1, - anon_sym_RBRACE, - [55364] = 2, + ACTIONS(3186), 1, + anon_sym_in, + [58323] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3137), 1, - anon_sym_RBRACE, - [55371] = 2, + ACTIONS(3188), 1, + sym_identifier, + [58330] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(864), 1, + ACTIONS(978), 1, anon_sym_def, - [55378] = 2, + [58337] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3139), 1, + ACTIONS(3190), 1, sym_identifier, - [55385] = 2, + [58344] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3141), 1, + ACTIONS(3192), 1, sym_identifier, - [55392] = 2, + [58351] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3143), 1, - anon_sym_RBRACK, - [55399] = 2, + ACTIONS(3194), 1, + ts_builtin_sym_end, + [58358] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(956), 1, - anon_sym_STAR, - [55406] = 2, + ACTIONS(3196), 1, + anon_sym_import, + [58365] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3145), 1, - anon_sym_RBRACE, - [55413] = 2, + ACTIONS(2346), 1, + anon_sym_COLON, + [58372] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3147), 1, + ACTIONS(3198), 1, sym_identifier, - [55420] = 2, + [58379] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3149), 1, - anon_sym_RBRACE, - [55427] = 2, + ACTIONS(3200), 1, + sym_identifier, + [58386] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3202), 1, + sym_identifier, + [58393] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3151), 1, + ACTIONS(3204), 1, + sym_identifier, + [58400] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(903), 1, + anon_sym_STAR, + [58407] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3206), 1, anon_sym_COLON, - [55434] = 2, + [58414] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3208), 1, + anon_sym_RBRACE, + [58421] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3210), 1, + anon_sym_for, + [58428] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3153), 1, + ACTIONS(3212), 1, anon_sym_RPAREN, - [55441] = 2, + [58435] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3155), 1, + ACTIONS(3214), 1, sym_identifier, - [55448] = 2, + [58442] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3157), 1, + ACTIONS(3216), 1, sym_identifier, - [55455] = 2, + [58449] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3159), 1, - anon_sym_RBRACE, - [55462] = 2, + ACTIONS(3218), 1, + sym_identifier, + [58456] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3220), 1, + anon_sym_COLON, + [58463] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2845), 1, + ACTIONS(2842), 1, anon_sym_in, - [55469] = 2, + [58470] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(858), 1, + ACTIONS(972), 1, anon_sym_def, - [55476] = 2, + [58477] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3161), 1, - sym_identifier, - [55483] = 2, + ACTIONS(3222), 1, + anon_sym_COLON, + [58484] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2847), 1, + ACTIONS(2870), 1, anon_sym_in, - [55490] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3163), 1, - anon_sym_COLON, - [55497] = 2, + [58491] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3165), 1, + ACTIONS(3224), 1, anon_sym_COLON, - [55504] = 2, + [58498] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3167), 1, - anon_sym_RPAREN, + ACTIONS(2914), 1, + anon_sym_RBRACE, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(149)] = 0, - [SMALL_STATE(150)] = 118, - [SMALL_STATE(151)] = 236, - [SMALL_STATE(152)] = 354, - [SMALL_STATE(153)] = 464, - [SMALL_STATE(154)] = 581, - [SMALL_STATE(155)] = 698, - [SMALL_STATE(156)] = 801, - [SMALL_STATE(157)] = 920, - [SMALL_STATE(158)] = 1035, - [SMALL_STATE(159)] = 1150, - [SMALL_STATE(160)] = 1265, - [SMALL_STATE(161)] = 1368, - [SMALL_STATE(162)] = 1472, - [SMALL_STATE(163)] = 1576, - [SMALL_STATE(164)] = 1680, - [SMALL_STATE(165)] = 1794, - [SMALL_STATE(166)] = 1908, - [SMALL_STATE(167)] = 2022, - [SMALL_STATE(168)] = 2129, - [SMALL_STATE(169)] = 2234, - [SMALL_STATE(170)] = 2339, - [SMALL_STATE(171)] = 2444, - [SMALL_STATE(172)] = 2547, - [SMALL_STATE(173)] = 2652, - [SMALL_STATE(174)] = 2757, - [SMALL_STATE(175)] = 2858, - [SMALL_STATE(176)] = 2961, - [SMALL_STATE(177)] = 3062, - [SMALL_STATE(178)] = 3163, - [SMALL_STATE(179)] = 3268, - [SMALL_STATE(180)] = 3366, - [SMALL_STATE(181)] = 3468, - [SMALL_STATE(182)] = 3572, - [SMALL_STATE(183)] = 3674, - [SMALL_STATE(184)] = 3780, - [SMALL_STATE(185)] = 3882, - [SMALL_STATE(186)] = 3984, - [SMALL_STATE(187)] = 4086, - [SMALL_STATE(188)] = 4188, - [SMALL_STATE(189)] = 4290, - [SMALL_STATE(190)] = 4392, - [SMALL_STATE(191)] = 4494, - [SMALL_STATE(192)] = 4596, - [SMALL_STATE(193)] = 4698, - [SMALL_STATE(194)] = 4800, - [SMALL_STATE(195)] = 4902, - [SMALL_STATE(196)] = 5000, - [SMALL_STATE(197)] = 5106, - [SMALL_STATE(198)] = 5210, - [SMALL_STATE(199)] = 5312, - [SMALL_STATE(200)] = 5414, - [SMALL_STATE(201)] = 5512, - [SMALL_STATE(202)] = 5616, - [SMALL_STATE(203)] = 5718, + [SMALL_STATE(152)] = 0, + [SMALL_STATE(153)] = 117, + [SMALL_STATE(154)] = 241, + [SMALL_STATE(155)] = 367, + [SMALL_STATE(156)] = 489, + [SMALL_STATE(157)] = 613, + [SMALL_STATE(158)] = 735, + [SMALL_STATE(159)] = 845, + [SMALL_STATE(160)] = 967, + [SMALL_STATE(161)] = 1077, + [SMALL_STATE(162)] = 1198, + [SMALL_STATE(163)] = 1309, + [SMALL_STATE(164)] = 1420, + [SMALL_STATE(165)] = 1541, + [SMALL_STATE(166)] = 1652, + [SMALL_STATE(167)] = 1773, + [SMALL_STATE(168)] = 1881, + [SMALL_STATE(169)] = 1993, + [SMALL_STATE(170)] = 2107, + [SMALL_STATE(171)] = 2215, + [SMALL_STATE(172)] = 2327, + [SMALL_STATE(173)] = 2437, + [SMALL_STATE(174)] = 2547, + [SMALL_STATE(175)] = 2659, + [SMALL_STATE(176)] = 2771, + [SMALL_STATE(177)] = 2879, + [SMALL_STATE(178)] = 2991, + [SMALL_STATE(179)] = 3103, + [SMALL_STATE(180)] = 3212, + [SMALL_STATE(181)] = 3321, + [SMALL_STATE(182)] = 3426, + [SMALL_STATE(183)] = 3535, + [SMALL_STATE(184)] = 3644, + [SMALL_STATE(185)] = 3753, + [SMALL_STATE(186)] = 3862, + [SMALL_STATE(187)] = 3971, + [SMALL_STATE(188)] = 4080, + [SMALL_STATE(189)] = 4189, + [SMALL_STATE(190)] = 4298, + [SMALL_STATE(191)] = 4407, + [SMALL_STATE(192)] = 4518, + [SMALL_STATE(193)] = 4623, + [SMALL_STATE(194)] = 4728, + [SMALL_STATE(195)] = 4837, + [SMALL_STATE(196)] = 4946, + [SMALL_STATE(197)] = 5051, + [SMALL_STATE(198)] = 5160, + [SMALL_STATE(199)] = 5269, + [SMALL_STATE(200)] = 5382, + [SMALL_STATE(201)] = 5491, + [SMALL_STATE(202)] = 5600, + [SMALL_STATE(203)] = 5711, [SMALL_STATE(204)] = 5820, - [SMALL_STATE(205)] = 5922, - [SMALL_STATE(206)] = 6024, - [SMALL_STATE(207)] = 6126, - [SMALL_STATE(208)] = 6228, - [SMALL_STATE(209)] = 6330, - [SMALL_STATE(210)] = 6432, - [SMALL_STATE(211)] = 6536, - [SMALL_STATE(212)] = 6634, - [SMALL_STATE(213)] = 6733, - [SMALL_STATE(214)] = 6832, - [SMALL_STATE(215)] = 6931, - [SMALL_STATE(216)] = 7030, - [SMALL_STATE(217)] = 7129, - [SMALL_STATE(218)] = 7190, - [SMALL_STATE(219)] = 7289, - [SMALL_STATE(220)] = 7350, - [SMALL_STATE(221)] = 7449, - [SMALL_STATE(222)] = 7536, - [SMALL_STATE(223)] = 7635, - [SMALL_STATE(224)] = 7707, - [SMALL_STATE(225)] = 7805, - [SMALL_STATE(226)] = 7901, - [SMALL_STATE(227)] = 7973, - [SMALL_STATE(228)] = 8045, - [SMALL_STATE(229)] = 8143, - [SMALL_STATE(230)] = 8215, - [SMALL_STATE(231)] = 8313, - [SMALL_STATE(232)] = 8385, - [SMALL_STATE(233)] = 8457, - [SMALL_STATE(234)] = 8529, - [SMALL_STATE(235)] = 8601, - [SMALL_STATE(236)] = 8697, - [SMALL_STATE(237)] = 8795, - [SMALL_STATE(238)] = 8893, - [SMALL_STATE(239)] = 8988, - [SMALL_STATE(240)] = 9061, - [SMALL_STATE(241)] = 9156, - [SMALL_STATE(242)] = 9229, - [SMALL_STATE(243)] = 9324, - [SMALL_STATE(244)] = 9419, - [SMALL_STATE(245)] = 9514, - [SMALL_STATE(246)] = 9609, - [SMALL_STATE(247)] = 9704, - [SMALL_STATE(248)] = 9799, - [SMALL_STATE(249)] = 9894, - [SMALL_STATE(250)] = 9989, - [SMALL_STATE(251)] = 10084, - [SMALL_STATE(252)] = 10152, - [SMALL_STATE(253)] = 10210, - [SMALL_STATE(254)] = 10278, - [SMALL_STATE(255)] = 10346, - [SMALL_STATE(256)] = 10414, - [SMALL_STATE(257)] = 10484, - [SMALL_STATE(258)] = 10578, - [SMALL_STATE(259)] = 10672, - [SMALL_STATE(260)] = 10766, - [SMALL_STATE(261)] = 10824, - [SMALL_STATE(262)] = 10882, - [SMALL_STATE(263)] = 10940, - [SMALL_STATE(264)] = 11002, - [SMALL_STATE(265)] = 11060, - [SMALL_STATE(266)] = 11152, - [SMALL_STATE(267)] = 11220, - [SMALL_STATE(268)] = 11314, - [SMALL_STATE(269)] = 11376, - [SMALL_STATE(270)] = 11444, - [SMALL_STATE(271)] = 11512, - [SMALL_STATE(272)] = 11574, - [SMALL_STATE(273)] = 11636, - [SMALL_STATE(274)] = 11728, - [SMALL_STATE(275)] = 11786, - [SMALL_STATE(276)] = 11844, - [SMALL_STATE(277)] = 11938, - [SMALL_STATE(278)] = 12006, - [SMALL_STATE(279)] = 12098, - [SMALL_STATE(280)] = 12156, - [SMALL_STATE(281)] = 12250, - [SMALL_STATE(282)] = 12308, - [SMALL_STATE(283)] = 12402, - [SMALL_STATE(284)] = 12460, - [SMALL_STATE(285)] = 12554, - [SMALL_STATE(286)] = 12648, - [SMALL_STATE(287)] = 12742, - [SMALL_STATE(288)] = 12836, - [SMALL_STATE(289)] = 12927, - [SMALL_STATE(290)] = 13018, - [SMALL_STATE(291)] = 13107, - [SMALL_STATE(292)] = 13198, - [SMALL_STATE(293)] = 13261, - [SMALL_STATE(294)] = 13350, - [SMALL_STATE(295)] = 13439, - [SMALL_STATE(296)] = 13530, - [SMALL_STATE(297)] = 13619, - [SMALL_STATE(298)] = 13708, - [SMALL_STATE(299)] = 13799, - [SMALL_STATE(300)] = 13888, - [SMALL_STATE(301)] = 13977, - [SMALL_STATE(302)] = 14044, - [SMALL_STATE(303)] = 14135, - [SMALL_STATE(304)] = 14226, - [SMALL_STATE(305)] = 14315, - [SMALL_STATE(306)] = 14406, - [SMALL_STATE(307)] = 14495, - [SMALL_STATE(308)] = 14584, - [SMALL_STATE(309)] = 14647, - [SMALL_STATE(310)] = 14736, - [SMALL_STATE(311)] = 14825, - [SMALL_STATE(312)] = 14914, - [SMALL_STATE(313)] = 15005, - [SMALL_STATE(314)] = 15061, - [SMALL_STATE(315)] = 15117, - [SMALL_STATE(316)] = 15177, - [SMALL_STATE(317)] = 15241, - [SMALL_STATE(318)] = 15305, - [SMALL_STATE(319)] = 15361, - [SMALL_STATE(320)] = 15449, - [SMALL_STATE(321)] = 15509, - [SMALL_STATE(322)] = 15565, - [SMALL_STATE(323)] = 15621, - [SMALL_STATE(324)] = 15677, - [SMALL_STATE(325)] = 15733, - [SMALL_STATE(326)] = 15789, - [SMALL_STATE(327)] = 15845, - [SMALL_STATE(328)] = 15901, - [SMALL_STATE(329)] = 15957, - [SMALL_STATE(330)] = 16013, - [SMALL_STATE(331)] = 16077, - [SMALL_STATE(332)] = 16141, - [SMALL_STATE(333)] = 16201, - [SMALL_STATE(334)] = 16261, - [SMALL_STATE(335)] = 16317, - [SMALL_STATE(336)] = 16373, - [SMALL_STATE(337)] = 16429, - [SMALL_STATE(338)] = 16485, - [SMALL_STATE(339)] = 16541, - [SMALL_STATE(340)] = 16597, - [SMALL_STATE(341)] = 16653, - [SMALL_STATE(342)] = 16709, - [SMALL_STATE(343)] = 16765, - [SMALL_STATE(344)] = 16821, - [SMALL_STATE(345)] = 16909, - [SMALL_STATE(346)] = 16997, - [SMALL_STATE(347)] = 17082, - [SMALL_STATE(348)] = 17141, - [SMALL_STATE(349)] = 17226, - [SMALL_STATE(350)] = 17285, - [SMALL_STATE(351)] = 17344, - [SMALL_STATE(352)] = 17431, - [SMALL_STATE(353)] = 17516, - [SMALL_STATE(354)] = 17601, - [SMALL_STATE(355)] = 17662, - [SMALL_STATE(356)] = 17721, - [SMALL_STATE(357)] = 17806, - [SMALL_STATE(358)] = 17865, - [SMALL_STATE(359)] = 17950, - [SMALL_STATE(360)] = 18035, - [SMALL_STATE(361)] = 18094, - [SMALL_STATE(362)] = 18153, - [SMALL_STATE(363)] = 18238, - [SMALL_STATE(364)] = 18323, - [SMALL_STATE(365)] = 18408, - [SMALL_STATE(366)] = 18463, - [SMALL_STATE(367)] = 18522, - [SMALL_STATE(368)] = 18607, - [SMALL_STATE(369)] = 18692, - [SMALL_STATE(370)] = 18777, - [SMALL_STATE(371)] = 18862, - [SMALL_STATE(372)] = 18917, - [SMALL_STATE(373)] = 19002, - [SMALL_STATE(374)] = 19087, - [SMALL_STATE(375)] = 19172, - [SMALL_STATE(376)] = 19257, - [SMALL_STATE(377)] = 19342, - [SMALL_STATE(378)] = 19403, - [SMALL_STATE(379)] = 19488, - [SMALL_STATE(380)] = 19573, - [SMALL_STATE(381)] = 19658, - [SMALL_STATE(382)] = 19743, - [SMALL_STATE(383)] = 19828, - [SMALL_STATE(384)] = 19913, - [SMALL_STATE(385)] = 19998, - [SMALL_STATE(386)] = 20083, - [SMALL_STATE(387)] = 20142, - [SMALL_STATE(388)] = 20227, - [SMALL_STATE(389)] = 20312, - [SMALL_STATE(390)] = 20397, - [SMALL_STATE(391)] = 20452, - [SMALL_STATE(392)] = 20511, - [SMALL_STATE(393)] = 20570, - [SMALL_STATE(394)] = 20629, - [SMALL_STATE(395)] = 20714, - [SMALL_STATE(396)] = 20773, - [SMALL_STATE(397)] = 20832, - [SMALL_STATE(398)] = 20891, - [SMALL_STATE(399)] = 20976, - [SMALL_STATE(400)] = 21061, - [SMALL_STATE(401)] = 21116, - [SMALL_STATE(402)] = 21175, - [SMALL_STATE(403)] = 21260, - [SMALL_STATE(404)] = 21321, - [SMALL_STATE(405)] = 21376, - [SMALL_STATE(406)] = 21461, - [SMALL_STATE(407)] = 21546, - [SMALL_STATE(408)] = 21601, - [SMALL_STATE(409)] = 21686, - [SMALL_STATE(410)] = 21771, - [SMALL_STATE(411)] = 21856, - [SMALL_STATE(412)] = 21941, - [SMALL_STATE(413)] = 22026, - [SMALL_STATE(414)] = 22111, - [SMALL_STATE(415)] = 22196, - [SMALL_STATE(416)] = 22281, - [SMALL_STATE(417)] = 22366, - [SMALL_STATE(418)] = 22451, - [SMALL_STATE(419)] = 22536, - [SMALL_STATE(420)] = 22621, - [SMALL_STATE(421)] = 22706, - [SMALL_STATE(422)] = 22791, - [SMALL_STATE(423)] = 22876, - [SMALL_STATE(424)] = 22961, - [SMALL_STATE(425)] = 23046, - [SMALL_STATE(426)] = 23131, - [SMALL_STATE(427)] = 23216, - [SMALL_STATE(428)] = 23301, - [SMALL_STATE(429)] = 23386, - [SMALL_STATE(430)] = 23471, - [SMALL_STATE(431)] = 23556, - [SMALL_STATE(432)] = 23617, - [SMALL_STATE(433)] = 23702, - [SMALL_STATE(434)] = 23787, - [SMALL_STATE(435)] = 23872, - [SMALL_STATE(436)] = 23957, - [SMALL_STATE(437)] = 24042, - [SMALL_STATE(438)] = 24127, - [SMALL_STATE(439)] = 24212, - [SMALL_STATE(440)] = 24297, - [SMALL_STATE(441)] = 24382, - [SMALL_STATE(442)] = 24467, - [SMALL_STATE(443)] = 24552, - [SMALL_STATE(444)] = 24637, - [SMALL_STATE(445)] = 24722, - [SMALL_STATE(446)] = 24807, - [SMALL_STATE(447)] = 24861, - [SMALL_STATE(448)] = 24915, - [SMALL_STATE(449)] = 24969, - [SMALL_STATE(450)] = 25023, - [SMALL_STATE(451)] = 25077, - [SMALL_STATE(452)] = 25131, - [SMALL_STATE(453)] = 25185, - [SMALL_STATE(454)] = 25239, - [SMALL_STATE(455)] = 25293, - [SMALL_STATE(456)] = 25347, - [SMALL_STATE(457)] = 25401, - [SMALL_STATE(458)] = 25455, - [SMALL_STATE(459)] = 25508, - [SMALL_STATE(460)] = 25561, - [SMALL_STATE(461)] = 25614, - [SMALL_STATE(462)] = 25667, - [SMALL_STATE(463)] = 25720, - [SMALL_STATE(464)] = 25773, - [SMALL_STATE(465)] = 25826, - [SMALL_STATE(466)] = 25879, - [SMALL_STATE(467)] = 25932, - [SMALL_STATE(468)] = 25985, - [SMALL_STATE(469)] = 26038, - [SMALL_STATE(470)] = 26091, - [SMALL_STATE(471)] = 26144, - [SMALL_STATE(472)] = 26197, - [SMALL_STATE(473)] = 26250, - [SMALL_STATE(474)] = 26335, - [SMALL_STATE(475)] = 26388, - [SMALL_STATE(476)] = 26441, - [SMALL_STATE(477)] = 26494, - [SMALL_STATE(478)] = 26547, - [SMALL_STATE(479)] = 26600, - [SMALL_STATE(480)] = 26653, - [SMALL_STATE(481)] = 26706, - [SMALL_STATE(482)] = 26759, - [SMALL_STATE(483)] = 26812, - [SMALL_STATE(484)] = 26865, - [SMALL_STATE(485)] = 26918, - [SMALL_STATE(486)] = 26971, - [SMALL_STATE(487)] = 27024, - [SMALL_STATE(488)] = 27077, - [SMALL_STATE(489)] = 27130, - [SMALL_STATE(490)] = 27183, - [SMALL_STATE(491)] = 27236, - [SMALL_STATE(492)] = 27289, - [SMALL_STATE(493)] = 27342, - [SMALL_STATE(494)] = 27395, - [SMALL_STATE(495)] = 27448, - [SMALL_STATE(496)] = 27501, - [SMALL_STATE(497)] = 27554, - [SMALL_STATE(498)] = 27607, - [SMALL_STATE(499)] = 27660, - [SMALL_STATE(500)] = 27713, - [SMALL_STATE(501)] = 27766, - [SMALL_STATE(502)] = 27819, - [SMALL_STATE(503)] = 27872, - [SMALL_STATE(504)] = 27925, - [SMALL_STATE(505)] = 27978, - [SMALL_STATE(506)] = 28031, - [SMALL_STATE(507)] = 28084, - [SMALL_STATE(508)] = 28137, - [SMALL_STATE(509)] = 28190, - [SMALL_STATE(510)] = 28243, - [SMALL_STATE(511)] = 28296, - [SMALL_STATE(512)] = 28349, - [SMALL_STATE(513)] = 28402, - [SMALL_STATE(514)] = 28455, - [SMALL_STATE(515)] = 28508, - [SMALL_STATE(516)] = 28561, - [SMALL_STATE(517)] = 28614, - [SMALL_STATE(518)] = 28667, - [SMALL_STATE(519)] = 28720, - [SMALL_STATE(520)] = 28773, - [SMALL_STATE(521)] = 28826, - [SMALL_STATE(522)] = 28879, - [SMALL_STATE(523)] = 28932, - [SMALL_STATE(524)] = 28985, - [SMALL_STATE(525)] = 29038, - [SMALL_STATE(526)] = 29091, - [SMALL_STATE(527)] = 29144, - [SMALL_STATE(528)] = 29197, - [SMALL_STATE(529)] = 29250, - [SMALL_STATE(530)] = 29303, - [SMALL_STATE(531)] = 29356, - [SMALL_STATE(532)] = 29409, - [SMALL_STATE(533)] = 29462, - [SMALL_STATE(534)] = 29515, - [SMALL_STATE(535)] = 29568, - [SMALL_STATE(536)] = 29621, - [SMALL_STATE(537)] = 29674, - [SMALL_STATE(538)] = 29727, - [SMALL_STATE(539)] = 29780, - [SMALL_STATE(540)] = 29833, - [SMALL_STATE(541)] = 29886, - [SMALL_STATE(542)] = 29939, - [SMALL_STATE(543)] = 29992, - [SMALL_STATE(544)] = 30077, - [SMALL_STATE(545)] = 30130, - [SMALL_STATE(546)] = 30183, - [SMALL_STATE(547)] = 30236, - [SMALL_STATE(548)] = 30289, - [SMALL_STATE(549)] = 30342, - [SMALL_STATE(550)] = 30395, - [SMALL_STATE(551)] = 30448, - [SMALL_STATE(552)] = 30501, - [SMALL_STATE(553)] = 30554, - [SMALL_STATE(554)] = 30607, - [SMALL_STATE(555)] = 30660, - [SMALL_STATE(556)] = 30713, - [SMALL_STATE(557)] = 30766, - [SMALL_STATE(558)] = 30853, - [SMALL_STATE(559)] = 30906, - [SMALL_STATE(560)] = 30990, - [SMALL_STATE(561)] = 31074, - [SMALL_STATE(562)] = 31158, - [SMALL_STATE(563)] = 31242, - [SMALL_STATE(564)] = 31326, - [SMALL_STATE(565)] = 31410, - [SMALL_STATE(566)] = 31465, - [SMALL_STATE(567)] = 31520, - [SMALL_STATE(568)] = 31601, - [SMALL_STATE(569)] = 31682, - [SMALL_STATE(570)] = 31737, - [SMALL_STATE(571)] = 31786, - [SMALL_STATE(572)] = 31861, - [SMALL_STATE(573)] = 31910, - [SMALL_STATE(574)] = 31958, - [SMALL_STATE(575)] = 32006, - [SMALL_STATE(576)] = 32054, - [SMALL_STATE(577)] = 32102, - [SMALL_STATE(578)] = 32150, - [SMALL_STATE(579)] = 32198, - [SMALL_STATE(580)] = 32246, - [SMALL_STATE(581)] = 32294, - [SMALL_STATE(582)] = 32342, - [SMALL_STATE(583)] = 32390, - [SMALL_STATE(584)] = 32438, - [SMALL_STATE(585)] = 32486, - [SMALL_STATE(586)] = 32534, - [SMALL_STATE(587)] = 32582, - [SMALL_STATE(588)] = 32630, - [SMALL_STATE(589)] = 32678, - [SMALL_STATE(590)] = 32726, - [SMALL_STATE(591)] = 32808, - [SMALL_STATE(592)] = 32856, - [SMALL_STATE(593)] = 32904, - [SMALL_STATE(594)] = 32952, - [SMALL_STATE(595)] = 33000, - [SMALL_STATE(596)] = 33082, - [SMALL_STATE(597)] = 33130, - [SMALL_STATE(598)] = 33178, - [SMALL_STATE(599)] = 33226, - [SMALL_STATE(600)] = 33274, - [SMALL_STATE(601)] = 33322, - [SMALL_STATE(602)] = 33370, - [SMALL_STATE(603)] = 33418, - [SMALL_STATE(604)] = 33466, - [SMALL_STATE(605)] = 33514, - [SMALL_STATE(606)] = 33562, - [SMALL_STATE(607)] = 33625, - [SMALL_STATE(608)] = 33694, - [SMALL_STATE(609)] = 33751, - [SMALL_STATE(610)] = 33814, - [SMALL_STATE(611)] = 33883, - [SMALL_STATE(612)] = 33954, - [SMALL_STATE(613)] = 34023, - [SMALL_STATE(614)] = 34084, - [SMALL_STATE(615)] = 34141, - [SMALL_STATE(616)] = 34208, - [SMALL_STATE(617)] = 34273, - [SMALL_STATE(618)] = 34342, - [SMALL_STATE(619)] = 34399, - [SMALL_STATE(620)] = 34468, - [SMALL_STATE(621)] = 34525, - [SMALL_STATE(622)] = 34596, - [SMALL_STATE(623)] = 34665, - [SMALL_STATE(624)] = 34726, - [SMALL_STATE(625)] = 34783, - [SMALL_STATE(626)] = 34850, - [SMALL_STATE(627)] = 34915, - [SMALL_STATE(628)] = 34986, - [SMALL_STATE(629)] = 35057, - [SMALL_STATE(630)] = 35114, - [SMALL_STATE(631)] = 35171, - [SMALL_STATE(632)] = 35228, - [SMALL_STATE(633)] = 35299, - [SMALL_STATE(634)] = 35370, - [SMALL_STATE(635)] = 35416, - [SMALL_STATE(636)] = 35482, - [SMALL_STATE(637)] = 35548, - [SMALL_STATE(638)] = 35614, - [SMALL_STATE(639)] = 35680, - [SMALL_STATE(640)] = 35746, - [SMALL_STATE(641)] = 35812, - [SMALL_STATE(642)] = 35878, - [SMALL_STATE(643)] = 35944, - [SMALL_STATE(644)] = 35994, - [SMALL_STATE(645)] = 36060, - [SMALL_STATE(646)] = 36126, - [SMALL_STATE(647)] = 36192, - [SMALL_STATE(648)] = 36242, - [SMALL_STATE(649)] = 36312, - [SMALL_STATE(650)] = 36382, - [SMALL_STATE(651)] = 36448, - [SMALL_STATE(652)] = 36514, - [SMALL_STATE(653)] = 36580, - [SMALL_STATE(654)] = 36646, - [SMALL_STATE(655)] = 36712, - [SMALL_STATE(656)] = 36778, - [SMALL_STATE(657)] = 36824, - [SMALL_STATE(658)] = 36872, - [SMALL_STATE(659)] = 36920, - [SMALL_STATE(660)] = 36986, - [SMALL_STATE(661)] = 37052, - [SMALL_STATE(662)] = 37118, - [SMALL_STATE(663)] = 37184, - [SMALL_STATE(664)] = 37250, - [SMALL_STATE(665)] = 37316, - [SMALL_STATE(666)] = 37382, - [SMALL_STATE(667)] = 37448, - [SMALL_STATE(668)] = 37514, - [SMALL_STATE(669)] = 37580, - [SMALL_STATE(670)] = 37646, - [SMALL_STATE(671)] = 37712, - [SMALL_STATE(672)] = 37760, - [SMALL_STATE(673)] = 37826, - [SMALL_STATE(674)] = 37892, - [SMALL_STATE(675)] = 37940, - [SMALL_STATE(676)] = 38006, - [SMALL_STATE(677)] = 38072, - [SMALL_STATE(678)] = 38138, - [SMALL_STATE(679)] = 38204, - [SMALL_STATE(680)] = 38270, - [SMALL_STATE(681)] = 38336, - [SMALL_STATE(682)] = 38402, - [SMALL_STATE(683)] = 38468, - [SMALL_STATE(684)] = 38534, - [SMALL_STATE(685)] = 38600, - [SMALL_STATE(686)] = 38666, - [SMALL_STATE(687)] = 38732, - [SMALL_STATE(688)] = 38798, - [SMALL_STATE(689)] = 38847, - [SMALL_STATE(690)] = 38926, - [SMALL_STATE(691)] = 38971, - [SMALL_STATE(692)] = 39016, - [SMALL_STATE(693)] = 39065, - [SMALL_STATE(694)] = 39114, - [SMALL_STATE(695)] = 39180, - [SMALL_STATE(696)] = 39224, - [SMALL_STATE(697)] = 39284, - [SMALL_STATE(698)] = 39352, - [SMALL_STATE(699)] = 39428, - [SMALL_STATE(700)] = 39476, - [SMALL_STATE(701)] = 39520, - [SMALL_STATE(702)] = 39588, - [SMALL_STATE(703)] = 39642, - [SMALL_STATE(704)] = 39710, - [SMALL_STATE(705)] = 39764, - [SMALL_STATE(706)] = 39828, - [SMALL_STATE(707)] = 39886, - [SMALL_STATE(708)] = 39948, - [SMALL_STATE(709)] = 40002, - [SMALL_STATE(710)] = 40056, - [SMALL_STATE(711)] = 40103, - [SMALL_STATE(712)] = 40156, - [SMALL_STATE(713)] = 40203, - [SMALL_STATE(714)] = 40262, - [SMALL_STATE(715)] = 40309, - [SMALL_STATE(716)] = 40354, - [SMALL_STATE(717)] = 40399, - [SMALL_STATE(718)] = 40442, - [SMALL_STATE(719)] = 40505, - [SMALL_STATE(720)] = 40572, - [SMALL_STATE(721)] = 40625, - [SMALL_STATE(722)] = 40692, - [SMALL_STATE(723)] = 40737, - [SMALL_STATE(724)] = 40782, - [SMALL_STATE(725)] = 40825, - [SMALL_STATE(726)] = 40872, - [SMALL_STATE(727)] = 40917, - [SMALL_STATE(728)] = 40970, - [SMALL_STATE(729)] = 41015, - [SMALL_STATE(730)] = 41082, - [SMALL_STATE(731)] = 41143, - [SMALL_STATE(732)] = 41208, - [SMALL_STATE(733)] = 41253, - [SMALL_STATE(734)] = 41310, - [SMALL_STATE(735)] = 41363, - [SMALL_STATE(736)] = 41408, - [SMALL_STATE(737)] = 41450, - [SMALL_STATE(738)] = 41492, - [SMALL_STATE(739)] = 41534, - [SMALL_STATE(740)] = 41576, - [SMALL_STATE(741)] = 41618, - [SMALL_STATE(742)] = 41662, - [SMALL_STATE(743)] = 41706, - [SMALL_STATE(744)] = 41750, - [SMALL_STATE(745)] = 41792, - [SMALL_STATE(746)] = 41834, - [SMALL_STATE(747)] = 41876, - [SMALL_STATE(748)] = 41918, - [SMALL_STATE(749)] = 41960, - [SMALL_STATE(750)] = 42002, - [SMALL_STATE(751)] = 42044, - [SMALL_STATE(752)] = 42086, - [SMALL_STATE(753)] = 42128, - [SMALL_STATE(754)] = 42170, - [SMALL_STATE(755)] = 42212, - [SMALL_STATE(756)] = 42254, - [SMALL_STATE(757)] = 42296, - [SMALL_STATE(758)] = 42338, - [SMALL_STATE(759)] = 42380, - [SMALL_STATE(760)] = 42422, - [SMALL_STATE(761)] = 42464, - [SMALL_STATE(762)] = 42506, - [SMALL_STATE(763)] = 42548, - [SMALL_STATE(764)] = 42590, - [SMALL_STATE(765)] = 42632, - [SMALL_STATE(766)] = 42674, - [SMALL_STATE(767)] = 42716, - [SMALL_STATE(768)] = 42758, - [SMALL_STATE(769)] = 42800, - [SMALL_STATE(770)] = 42844, - [SMALL_STATE(771)] = 42888, - [SMALL_STATE(772)] = 42930, - [SMALL_STATE(773)] = 42972, - [SMALL_STATE(774)] = 43014, - [SMALL_STATE(775)] = 43055, - [SMALL_STATE(776)] = 43096, - [SMALL_STATE(777)] = 43137, - [SMALL_STATE(778)] = 43178, - [SMALL_STATE(779)] = 43219, - [SMALL_STATE(780)] = 43260, - [SMALL_STATE(781)] = 43301, - [SMALL_STATE(782)] = 43342, - [SMALL_STATE(783)] = 43383, - [SMALL_STATE(784)] = 43424, - [SMALL_STATE(785)] = 43465, - [SMALL_STATE(786)] = 43506, - [SMALL_STATE(787)] = 43547, - [SMALL_STATE(788)] = 43588, - [SMALL_STATE(789)] = 43629, - [SMALL_STATE(790)] = 43670, - [SMALL_STATE(791)] = 43711, - [SMALL_STATE(792)] = 43752, - [SMALL_STATE(793)] = 43793, - [SMALL_STATE(794)] = 43834, - [SMALL_STATE(795)] = 43879, - [SMALL_STATE(796)] = 43924, - [SMALL_STATE(797)] = 43965, - [SMALL_STATE(798)] = 44006, - [SMALL_STATE(799)] = 44047, - [SMALL_STATE(800)] = 44088, - [SMALL_STATE(801)] = 44129, - [SMALL_STATE(802)] = 44170, - [SMALL_STATE(803)] = 44211, - [SMALL_STATE(804)] = 44252, - [SMALL_STATE(805)] = 44293, - [SMALL_STATE(806)] = 44334, - [SMALL_STATE(807)] = 44375, - [SMALL_STATE(808)] = 44416, - [SMALL_STATE(809)] = 44457, - [SMALL_STATE(810)] = 44531, - [SMALL_STATE(811)] = 44605, - [SMALL_STATE(812)] = 44679, - [SMALL_STATE(813)] = 44753, - [SMALL_STATE(814)] = 44826, - [SMALL_STATE(815)] = 44897, - [SMALL_STATE(816)] = 44968, - [SMALL_STATE(817)] = 45039, - [SMALL_STATE(818)] = 45110, - [SMALL_STATE(819)] = 45181, - [SMALL_STATE(820)] = 45253, - [SMALL_STATE(821)] = 45325, - [SMALL_STATE(822)] = 45393, - [SMALL_STATE(823)] = 45465, - [SMALL_STATE(824)] = 45531, - [SMALL_STATE(825)] = 45594, - [SMALL_STATE(826)] = 45657, - [SMALL_STATE(827)] = 45712, - [SMALL_STATE(828)] = 45767, - [SMALL_STATE(829)] = 45807, - [SMALL_STATE(830)] = 45847, - [SMALL_STATE(831)] = 45887, - [SMALL_STATE(832)] = 45927, - [SMALL_STATE(833)] = 45957, - [SMALL_STATE(834)] = 45982, - [SMALL_STATE(835)] = 46007, - [SMALL_STATE(836)] = 46044, - [SMALL_STATE(837)] = 46069, - [SMALL_STATE(838)] = 46106, - [SMALL_STATE(839)] = 46135, - [SMALL_STATE(840)] = 46164, - [SMALL_STATE(841)] = 46189, - [SMALL_STATE(842)] = 46223, - [SMALL_STATE(843)] = 46251, - [SMALL_STATE(844)] = 46285, - [SMALL_STATE(845)] = 46331, - [SMALL_STATE(846)] = 46374, - [SMALL_STATE(847)] = 46417, - [SMALL_STATE(848)] = 46448, - [SMALL_STATE(849)] = 46491, - [SMALL_STATE(850)] = 46534, - [SMALL_STATE(851)] = 46577, - [SMALL_STATE(852)] = 46617, - [SMALL_STATE(853)] = 46663, - [SMALL_STATE(854)] = 46709, - [SMALL_STATE(855)] = 46755, - [SMALL_STATE(856)] = 46780, - [SMALL_STATE(857)] = 46817, - [SMALL_STATE(858)] = 46854, - [SMALL_STATE(859)] = 46891, - [SMALL_STATE(860)] = 46928, - [SMALL_STATE(861)] = 46950, - [SMALL_STATE(862)] = 46984, - [SMALL_STATE(863)] = 47018, - [SMALL_STATE(864)] = 47040, - [SMALL_STATE(865)] = 47077, - [SMALL_STATE(866)] = 47099, - [SMALL_STATE(867)] = 47118, - [SMALL_STATE(868)] = 47155, - [SMALL_STATE(869)] = 47192, - [SMALL_STATE(870)] = 47215, - [SMALL_STATE(871)] = 47242, - [SMALL_STATE(872)] = 47263, - [SMALL_STATE(873)] = 47286, - [SMALL_STATE(874)] = 47307, - [SMALL_STATE(875)] = 47328, - [SMALL_STATE(876)] = 47351, - [SMALL_STATE(877)] = 47374, - [SMALL_STATE(878)] = 47399, - [SMALL_STATE(879)] = 47422, - [SMALL_STATE(880)] = 47445, - [SMALL_STATE(881)] = 47466, - [SMALL_STATE(882)] = 47489, - [SMALL_STATE(883)] = 47506, - [SMALL_STATE(884)] = 47529, - [SMALL_STATE(885)] = 47566, - [SMALL_STATE(886)] = 47591, - [SMALL_STATE(887)] = 47612, - [SMALL_STATE(888)] = 47637, - [SMALL_STATE(889)] = 47674, - [SMALL_STATE(890)] = 47704, - [SMALL_STATE(891)] = 47734, - [SMALL_STATE(892)] = 47764, - [SMALL_STATE(893)] = 47794, - [SMALL_STATE(894)] = 47828, - [SMALL_STATE(895)] = 47862, - [SMALL_STATE(896)] = 47896, - [SMALL_STATE(897)] = 47914, - [SMALL_STATE(898)] = 47932, - [SMALL_STATE(899)] = 47954, - [SMALL_STATE(900)] = 47976, - [SMALL_STATE(901)] = 48010, - [SMALL_STATE(902)] = 48044, - [SMALL_STATE(903)] = 48066, - [SMALL_STATE(904)] = 48096, - [SMALL_STATE(905)] = 48126, - [SMALL_STATE(906)] = 48160, - [SMALL_STATE(907)] = 48194, - [SMALL_STATE(908)] = 48224, - [SMALL_STATE(909)] = 48246, - [SMALL_STATE(910)] = 48276, - [SMALL_STATE(911)] = 48310, - [SMALL_STATE(912)] = 48344, - [SMALL_STATE(913)] = 48374, - [SMALL_STATE(914)] = 48393, - [SMALL_STATE(915)] = 48412, - [SMALL_STATE(916)] = 48431, - [SMALL_STATE(917)] = 48454, - [SMALL_STATE(918)] = 48473, - [SMALL_STATE(919)] = 48498, - [SMALL_STATE(920)] = 48521, - [SMALL_STATE(921)] = 48540, - [SMALL_STATE(922)] = 48559, - [SMALL_STATE(923)] = 48582, - [SMALL_STATE(924)] = 48596, - [SMALL_STATE(925)] = 48610, - [SMALL_STATE(926)] = 48628, - [SMALL_STATE(927)] = 48642, - [SMALL_STATE(928)] = 48656, - [SMALL_STATE(929)] = 48674, - [SMALL_STATE(930)] = 48688, - [SMALL_STATE(931)] = 48702, - [SMALL_STATE(932)] = 48720, - [SMALL_STATE(933)] = 48744, - [SMALL_STATE(934)] = 48762, - [SMALL_STATE(935)] = 48776, - [SMALL_STATE(936)] = 48790, - [SMALL_STATE(937)] = 48808, - [SMALL_STATE(938)] = 48822, - [SMALL_STATE(939)] = 48840, - [SMALL_STATE(940)] = 48858, - [SMALL_STATE(941)] = 48872, - [SMALL_STATE(942)] = 48890, - [SMALL_STATE(943)] = 48904, - [SMALL_STATE(944)] = 48918, - [SMALL_STATE(945)] = 48932, - [SMALL_STATE(946)] = 48950, - [SMALL_STATE(947)] = 48970, - [SMALL_STATE(948)] = 48984, - [SMALL_STATE(949)] = 48998, - [SMALL_STATE(950)] = 49012, - [SMALL_STATE(951)] = 49026, - [SMALL_STATE(952)] = 49040, - [SMALL_STATE(953)] = 49060, - [SMALL_STATE(954)] = 49074, - [SMALL_STATE(955)] = 49088, - [SMALL_STATE(956)] = 49102, - [SMALL_STATE(957)] = 49128, - [SMALL_STATE(958)] = 49152, - [SMALL_STATE(959)] = 49170, - [SMALL_STATE(960)] = 49190, - [SMALL_STATE(961)] = 49210, - [SMALL_STATE(962)] = 49224, - [SMALL_STATE(963)] = 49238, - [SMALL_STATE(964)] = 49256, - [SMALL_STATE(965)] = 49270, - [SMALL_STATE(966)] = 49292, - [SMALL_STATE(967)] = 49308, - [SMALL_STATE(968)] = 49326, - [SMALL_STATE(969)] = 49342, - [SMALL_STATE(970)] = 49361, - [SMALL_STATE(971)] = 49376, - [SMALL_STATE(972)] = 49393, - [SMALL_STATE(973)] = 49408, - [SMALL_STATE(974)] = 49429, - [SMALL_STATE(975)] = 49452, - [SMALL_STATE(976)] = 49473, - [SMALL_STATE(977)] = 49492, - [SMALL_STATE(978)] = 49515, - [SMALL_STATE(979)] = 49534, - [SMALL_STATE(980)] = 49547, - [SMALL_STATE(981)] = 49570, - [SMALL_STATE(982)] = 49589, - [SMALL_STATE(983)] = 49602, - [SMALL_STATE(984)] = 49621, - [SMALL_STATE(985)] = 49640, - [SMALL_STATE(986)] = 49659, - [SMALL_STATE(987)] = 49672, - [SMALL_STATE(988)] = 49693, - [SMALL_STATE(989)] = 49714, - [SMALL_STATE(990)] = 49727, - [SMALL_STATE(991)] = 49752, - [SMALL_STATE(992)] = 49777, - [SMALL_STATE(993)] = 49798, - [SMALL_STATE(994)] = 49821, - [SMALL_STATE(995)] = 49844, - [SMALL_STATE(996)] = 49863, - [SMALL_STATE(997)] = 49888, - [SMALL_STATE(998)] = 49911, - [SMALL_STATE(999)] = 49930, - [SMALL_STATE(1000)] = 49953, - [SMALL_STATE(1001)] = 49966, - [SMALL_STATE(1002)] = 49983, - [SMALL_STATE(1003)] = 50004, - [SMALL_STATE(1004)] = 50017, - [SMALL_STATE(1005)] = 50040, - [SMALL_STATE(1006)] = 50053, - [SMALL_STATE(1007)] = 50072, - [SMALL_STATE(1008)] = 50089, - [SMALL_STATE(1009)] = 50112, - [SMALL_STATE(1010)] = 50133, - [SMALL_STATE(1011)] = 50158, - [SMALL_STATE(1012)] = 50180, - [SMALL_STATE(1013)] = 50200, - [SMALL_STATE(1014)] = 50214, - [SMALL_STATE(1015)] = 50236, - [SMALL_STATE(1016)] = 50248, - [SMALL_STATE(1017)] = 50266, - [SMALL_STATE(1018)] = 50282, - [SMALL_STATE(1019)] = 50300, - [SMALL_STATE(1020)] = 50316, - [SMALL_STATE(1021)] = 50330, - [SMALL_STATE(1022)] = 50348, - [SMALL_STATE(1023)] = 50370, - [SMALL_STATE(1024)] = 50384, - [SMALL_STATE(1025)] = 50402, - [SMALL_STATE(1026)] = 50420, - [SMALL_STATE(1027)] = 50442, - [SMALL_STATE(1028)] = 50454, - [SMALL_STATE(1029)] = 50474, - [SMALL_STATE(1030)] = 50490, - [SMALL_STATE(1031)] = 50512, - [SMALL_STATE(1032)] = 50528, - [SMALL_STATE(1033)] = 50544, - [SMALL_STATE(1034)] = 50564, - [SMALL_STATE(1035)] = 50580, - [SMALL_STATE(1036)] = 50598, - [SMALL_STATE(1037)] = 50612, - [SMALL_STATE(1038)] = 50630, - [SMALL_STATE(1039)] = 50650, - [SMALL_STATE(1040)] = 50672, - [SMALL_STATE(1041)] = 50688, - [SMALL_STATE(1042)] = 50702, - [SMALL_STATE(1043)] = 50716, - [SMALL_STATE(1044)] = 50736, - [SMALL_STATE(1045)] = 50756, - [SMALL_STATE(1046)] = 50778, - [SMALL_STATE(1047)] = 50797, - [SMALL_STATE(1048)] = 50816, - [SMALL_STATE(1049)] = 50827, - [SMALL_STATE(1050)] = 50844, - [SMALL_STATE(1051)] = 50861, - [SMALL_STATE(1052)] = 50876, - [SMALL_STATE(1053)] = 50893, - [SMALL_STATE(1054)] = 50912, - [SMALL_STATE(1055)] = 50931, - [SMALL_STATE(1056)] = 50948, - [SMALL_STATE(1057)] = 50965, - [SMALL_STATE(1058)] = 50982, - [SMALL_STATE(1059)] = 51001, - [SMALL_STATE(1060)] = 51016, - [SMALL_STATE(1061)] = 51035, - [SMALL_STATE(1062)] = 51050, - [SMALL_STATE(1063)] = 51061, - [SMALL_STATE(1064)] = 51078, - [SMALL_STATE(1065)] = 51095, - [SMALL_STATE(1066)] = 51110, - [SMALL_STATE(1067)] = 51127, - [SMALL_STATE(1068)] = 51146, - [SMALL_STATE(1069)] = 51163, - [SMALL_STATE(1070)] = 51182, - [SMALL_STATE(1071)] = 51199, - [SMALL_STATE(1072)] = 51216, - [SMALL_STATE(1073)] = 51233, - [SMALL_STATE(1074)] = 51250, - [SMALL_STATE(1075)] = 51267, - [SMALL_STATE(1076)] = 51282, - [SMALL_STATE(1077)] = 51299, - [SMALL_STATE(1078)] = 51318, - [SMALL_STATE(1079)] = 51329, - [SMALL_STATE(1080)] = 51344, - [SMALL_STATE(1081)] = 51363, - [SMALL_STATE(1082)] = 51378, - [SMALL_STATE(1083)] = 51395, - [SMALL_STATE(1084)] = 51412, - [SMALL_STATE(1085)] = 51426, - [SMALL_STATE(1086)] = 51442, - [SMALL_STATE(1087)] = 51456, - [SMALL_STATE(1088)] = 51470, - [SMALL_STATE(1089)] = 51486, - [SMALL_STATE(1090)] = 51502, - [SMALL_STATE(1091)] = 51518, - [SMALL_STATE(1092)] = 51534, - [SMALL_STATE(1093)] = 51548, - [SMALL_STATE(1094)] = 51558, - [SMALL_STATE(1095)] = 51574, - [SMALL_STATE(1096)] = 51588, - [SMALL_STATE(1097)] = 51604, - [SMALL_STATE(1098)] = 51618, - [SMALL_STATE(1099)] = 51632, - [SMALL_STATE(1100)] = 51646, - [SMALL_STATE(1101)] = 51662, - [SMALL_STATE(1102)] = 51676, - [SMALL_STATE(1103)] = 51690, - [SMALL_STATE(1104)] = 51704, - [SMALL_STATE(1105)] = 51720, - [SMALL_STATE(1106)] = 51734, - [SMALL_STATE(1107)] = 51748, - [SMALL_STATE(1108)] = 51762, - [SMALL_STATE(1109)] = 51776, - [SMALL_STATE(1110)] = 51790, - [SMALL_STATE(1111)] = 51806, - [SMALL_STATE(1112)] = 51820, - [SMALL_STATE(1113)] = 51834, - [SMALL_STATE(1114)] = 51844, - [SMALL_STATE(1115)] = 51854, - [SMALL_STATE(1116)] = 51870, - [SMALL_STATE(1117)] = 51884, - [SMALL_STATE(1118)] = 51898, - [SMALL_STATE(1119)] = 51908, - [SMALL_STATE(1120)] = 51918, - [SMALL_STATE(1121)] = 51932, - [SMALL_STATE(1122)] = 51948, - [SMALL_STATE(1123)] = 51962, - [SMALL_STATE(1124)] = 51978, - [SMALL_STATE(1125)] = 51990, - [SMALL_STATE(1126)] = 52006, - [SMALL_STATE(1127)] = 52020, - [SMALL_STATE(1128)] = 52034, - [SMALL_STATE(1129)] = 52044, - [SMALL_STATE(1130)] = 52060, - [SMALL_STATE(1131)] = 52076, - [SMALL_STATE(1132)] = 52092, - [SMALL_STATE(1133)] = 52108, - [SMALL_STATE(1134)] = 52122, - [SMALL_STATE(1135)] = 52138, - [SMALL_STATE(1136)] = 52154, - [SMALL_STATE(1137)] = 52168, - [SMALL_STATE(1138)] = 52184, - [SMALL_STATE(1139)] = 52198, - [SMALL_STATE(1140)] = 52212, - [SMALL_STATE(1141)] = 52228, - [SMALL_STATE(1142)] = 52240, - [SMALL_STATE(1143)] = 52256, - [SMALL_STATE(1144)] = 52272, - [SMALL_STATE(1145)] = 52286, - [SMALL_STATE(1146)] = 52302, - [SMALL_STATE(1147)] = 52318, - [SMALL_STATE(1148)] = 52334, - [SMALL_STATE(1149)] = 52350, - [SMALL_STATE(1150)] = 52364, - [SMALL_STATE(1151)] = 52380, - [SMALL_STATE(1152)] = 52394, - [SMALL_STATE(1153)] = 52410, - [SMALL_STATE(1154)] = 52421, - [SMALL_STATE(1155)] = 52430, - [SMALL_STATE(1156)] = 52443, - [SMALL_STATE(1157)] = 52456, - [SMALL_STATE(1158)] = 52469, - [SMALL_STATE(1159)] = 52482, - [SMALL_STATE(1160)] = 52495, - [SMALL_STATE(1161)] = 52508, - [SMALL_STATE(1162)] = 52517, - [SMALL_STATE(1163)] = 52530, - [SMALL_STATE(1164)] = 52543, - [SMALL_STATE(1165)] = 52556, - [SMALL_STATE(1166)] = 52569, - [SMALL_STATE(1167)] = 52582, - [SMALL_STATE(1168)] = 52595, - [SMALL_STATE(1169)] = 52606, - [SMALL_STATE(1170)] = 52619, - [SMALL_STATE(1171)] = 52632, - [SMALL_STATE(1172)] = 52645, - [SMALL_STATE(1173)] = 52658, - [SMALL_STATE(1174)] = 52671, - [SMALL_STATE(1175)] = 52684, - [SMALL_STATE(1176)] = 52695, - [SMALL_STATE(1177)] = 52708, - [SMALL_STATE(1178)] = 52721, - [SMALL_STATE(1179)] = 52730, - [SMALL_STATE(1180)] = 52743, - [SMALL_STATE(1181)] = 52754, - [SMALL_STATE(1182)] = 52767, - [SMALL_STATE(1183)] = 52776, - [SMALL_STATE(1184)] = 52789, - [SMALL_STATE(1185)] = 52802, - [SMALL_STATE(1186)] = 52813, - [SMALL_STATE(1187)] = 52826, - [SMALL_STATE(1188)] = 52839, - [SMALL_STATE(1189)] = 52852, - [SMALL_STATE(1190)] = 52865, - [SMALL_STATE(1191)] = 52878, - [SMALL_STATE(1192)] = 52887, - [SMALL_STATE(1193)] = 52896, - [SMALL_STATE(1194)] = 52905, - [SMALL_STATE(1195)] = 52918, - [SMALL_STATE(1196)] = 52931, - [SMALL_STATE(1197)] = 52944, - [SMALL_STATE(1198)] = 52957, - [SMALL_STATE(1199)] = 52970, - [SMALL_STATE(1200)] = 52983, - [SMALL_STATE(1201)] = 52992, - [SMALL_STATE(1202)] = 53005, - [SMALL_STATE(1203)] = 53018, - [SMALL_STATE(1204)] = 53031, - [SMALL_STATE(1205)] = 53040, - [SMALL_STATE(1206)] = 53053, - [SMALL_STATE(1207)] = 53066, - [SMALL_STATE(1208)] = 53079, - [SMALL_STATE(1209)] = 53092, - [SMALL_STATE(1210)] = 53101, - [SMALL_STATE(1211)] = 53114, - [SMALL_STATE(1212)] = 53127, - [SMALL_STATE(1213)] = 53140, - [SMALL_STATE(1214)] = 53153, - [SMALL_STATE(1215)] = 53166, - [SMALL_STATE(1216)] = 53179, - [SMALL_STATE(1217)] = 53192, - [SMALL_STATE(1218)] = 53203, - [SMALL_STATE(1219)] = 53216, - [SMALL_STATE(1220)] = 53227, - [SMALL_STATE(1221)] = 53240, - [SMALL_STATE(1222)] = 53253, - [SMALL_STATE(1223)] = 53266, - [SMALL_STATE(1224)] = 53279, - [SMALL_STATE(1225)] = 53292, - [SMALL_STATE(1226)] = 53305, - [SMALL_STATE(1227)] = 53318, - [SMALL_STATE(1228)] = 53331, - [SMALL_STATE(1229)] = 53344, - [SMALL_STATE(1230)] = 53357, - [SMALL_STATE(1231)] = 53370, - [SMALL_STATE(1232)] = 53383, - [SMALL_STATE(1233)] = 53396, - [SMALL_STATE(1234)] = 53409, - [SMALL_STATE(1235)] = 53422, - [SMALL_STATE(1236)] = 53431, - [SMALL_STATE(1237)] = 53444, - [SMALL_STATE(1238)] = 53457, - [SMALL_STATE(1239)] = 53470, - [SMALL_STATE(1240)] = 53483, - [SMALL_STATE(1241)] = 53496, - [SMALL_STATE(1242)] = 53509, - [SMALL_STATE(1243)] = 53522, - [SMALL_STATE(1244)] = 53535, - [SMALL_STATE(1245)] = 53544, - [SMALL_STATE(1246)] = 53557, - [SMALL_STATE(1247)] = 53570, - [SMALL_STATE(1248)] = 53583, - [SMALL_STATE(1249)] = 53596, - [SMALL_STATE(1250)] = 53609, - [SMALL_STATE(1251)] = 53622, - [SMALL_STATE(1252)] = 53635, - [SMALL_STATE(1253)] = 53648, - [SMALL_STATE(1254)] = 53659, - [SMALL_STATE(1255)] = 53670, - [SMALL_STATE(1256)] = 53681, - [SMALL_STATE(1257)] = 53690, - [SMALL_STATE(1258)] = 53703, - [SMALL_STATE(1259)] = 53712, - [SMALL_STATE(1260)] = 53723, - [SMALL_STATE(1261)] = 53736, - [SMALL_STATE(1262)] = 53749, - [SMALL_STATE(1263)] = 53762, - [SMALL_STATE(1264)] = 53775, - [SMALL_STATE(1265)] = 53786, - [SMALL_STATE(1266)] = 53799, - [SMALL_STATE(1267)] = 53812, - [SMALL_STATE(1268)] = 53825, - [SMALL_STATE(1269)] = 53834, - [SMALL_STATE(1270)] = 53847, - [SMALL_STATE(1271)] = 53860, - [SMALL_STATE(1272)] = 53873, - [SMALL_STATE(1273)] = 53886, - [SMALL_STATE(1274)] = 53899, - [SMALL_STATE(1275)] = 53912, - [SMALL_STATE(1276)] = 53925, - [SMALL_STATE(1277)] = 53938, - [SMALL_STATE(1278)] = 53951, - [SMALL_STATE(1279)] = 53964, - [SMALL_STATE(1280)] = 53977, - [SMALL_STATE(1281)] = 53990, - [SMALL_STATE(1282)] = 54003, - [SMALL_STATE(1283)] = 54016, - [SMALL_STATE(1284)] = 54026, - [SMALL_STATE(1285)] = 54036, - [SMALL_STATE(1286)] = 54044, - [SMALL_STATE(1287)] = 54052, - [SMALL_STATE(1288)] = 54062, - [SMALL_STATE(1289)] = 54072, - [SMALL_STATE(1290)] = 54082, - [SMALL_STATE(1291)] = 54092, - [SMALL_STATE(1292)] = 54100, - [SMALL_STATE(1293)] = 54108, - [SMALL_STATE(1294)] = 54116, - [SMALL_STATE(1295)] = 54124, - [SMALL_STATE(1296)] = 54132, - [SMALL_STATE(1297)] = 54142, - [SMALL_STATE(1298)] = 54150, - [SMALL_STATE(1299)] = 54158, - [SMALL_STATE(1300)] = 54168, - [SMALL_STATE(1301)] = 54176, - [SMALL_STATE(1302)] = 54184, - [SMALL_STATE(1303)] = 54194, - [SMALL_STATE(1304)] = 54204, - [SMALL_STATE(1305)] = 54212, - [SMALL_STATE(1306)] = 54220, - [SMALL_STATE(1307)] = 54228, - [SMALL_STATE(1308)] = 54236, - [SMALL_STATE(1309)] = 54244, - [SMALL_STATE(1310)] = 54254, - [SMALL_STATE(1311)] = 54264, - [SMALL_STATE(1312)] = 54272, - [SMALL_STATE(1313)] = 54280, - [SMALL_STATE(1314)] = 54288, - [SMALL_STATE(1315)] = 54296, - [SMALL_STATE(1316)] = 54304, - [SMALL_STATE(1317)] = 54312, - [SMALL_STATE(1318)] = 54322, - [SMALL_STATE(1319)] = 54330, - [SMALL_STATE(1320)] = 54340, - [SMALL_STATE(1321)] = 54348, - [SMALL_STATE(1322)] = 54356, - [SMALL_STATE(1323)] = 54364, - [SMALL_STATE(1324)] = 54374, - [SMALL_STATE(1325)] = 54384, - [SMALL_STATE(1326)] = 54392, - [SMALL_STATE(1327)] = 54400, - [SMALL_STATE(1328)] = 54408, - [SMALL_STATE(1329)] = 54418, - [SMALL_STATE(1330)] = 54428, - [SMALL_STATE(1331)] = 54438, - [SMALL_STATE(1332)] = 54448, - [SMALL_STATE(1333)] = 54456, - [SMALL_STATE(1334)] = 54464, - [SMALL_STATE(1335)] = 54472, - [SMALL_STATE(1336)] = 54480, - [SMALL_STATE(1337)] = 54488, - [SMALL_STATE(1338)] = 54496, - [SMALL_STATE(1339)] = 54504, - [SMALL_STATE(1340)] = 54512, - [SMALL_STATE(1341)] = 54520, - [SMALL_STATE(1342)] = 54528, - [SMALL_STATE(1343)] = 54536, - [SMALL_STATE(1344)] = 54546, - [SMALL_STATE(1345)] = 54554, - [SMALL_STATE(1346)] = 54562, - [SMALL_STATE(1347)] = 54572, - [SMALL_STATE(1348)] = 54580, - [SMALL_STATE(1349)] = 54590, - [SMALL_STATE(1350)] = 54598, - [SMALL_STATE(1351)] = 54606, - [SMALL_STATE(1352)] = 54616, - [SMALL_STATE(1353)] = 54626, - [SMALL_STATE(1354)] = 54636, - [SMALL_STATE(1355)] = 54643, - [SMALL_STATE(1356)] = 54650, - [SMALL_STATE(1357)] = 54657, - [SMALL_STATE(1358)] = 54664, - [SMALL_STATE(1359)] = 54671, - [SMALL_STATE(1360)] = 54678, - [SMALL_STATE(1361)] = 54685, - [SMALL_STATE(1362)] = 54692, - [SMALL_STATE(1363)] = 54699, - [SMALL_STATE(1364)] = 54706, - [SMALL_STATE(1365)] = 54713, - [SMALL_STATE(1366)] = 54720, - [SMALL_STATE(1367)] = 54727, - [SMALL_STATE(1368)] = 54734, - [SMALL_STATE(1369)] = 54741, - [SMALL_STATE(1370)] = 54748, - [SMALL_STATE(1371)] = 54755, - [SMALL_STATE(1372)] = 54762, - [SMALL_STATE(1373)] = 54769, - [SMALL_STATE(1374)] = 54776, - [SMALL_STATE(1375)] = 54783, - [SMALL_STATE(1376)] = 54790, - [SMALL_STATE(1377)] = 54797, - [SMALL_STATE(1378)] = 54804, - [SMALL_STATE(1379)] = 54811, - [SMALL_STATE(1380)] = 54818, - [SMALL_STATE(1381)] = 54825, - [SMALL_STATE(1382)] = 54832, - [SMALL_STATE(1383)] = 54839, - [SMALL_STATE(1384)] = 54846, - [SMALL_STATE(1385)] = 54853, - [SMALL_STATE(1386)] = 54860, - [SMALL_STATE(1387)] = 54867, - [SMALL_STATE(1388)] = 54874, - [SMALL_STATE(1389)] = 54881, - [SMALL_STATE(1390)] = 54888, - [SMALL_STATE(1391)] = 54895, - [SMALL_STATE(1392)] = 54902, - [SMALL_STATE(1393)] = 54909, - [SMALL_STATE(1394)] = 54916, - [SMALL_STATE(1395)] = 54923, - [SMALL_STATE(1396)] = 54930, - [SMALL_STATE(1397)] = 54937, - [SMALL_STATE(1398)] = 54944, - [SMALL_STATE(1399)] = 54951, - [SMALL_STATE(1400)] = 54958, - [SMALL_STATE(1401)] = 54965, - [SMALL_STATE(1402)] = 54972, - [SMALL_STATE(1403)] = 54979, - [SMALL_STATE(1404)] = 54986, - [SMALL_STATE(1405)] = 54993, - [SMALL_STATE(1406)] = 55000, - [SMALL_STATE(1407)] = 55007, - [SMALL_STATE(1408)] = 55014, - [SMALL_STATE(1409)] = 55021, - [SMALL_STATE(1410)] = 55028, - [SMALL_STATE(1411)] = 55035, - [SMALL_STATE(1412)] = 55042, - [SMALL_STATE(1413)] = 55049, - [SMALL_STATE(1414)] = 55056, - [SMALL_STATE(1415)] = 55063, - [SMALL_STATE(1416)] = 55070, - [SMALL_STATE(1417)] = 55077, - [SMALL_STATE(1418)] = 55084, - [SMALL_STATE(1419)] = 55091, - [SMALL_STATE(1420)] = 55098, - [SMALL_STATE(1421)] = 55105, - [SMALL_STATE(1422)] = 55112, - [SMALL_STATE(1423)] = 55119, - [SMALL_STATE(1424)] = 55126, - [SMALL_STATE(1425)] = 55133, - [SMALL_STATE(1426)] = 55140, - [SMALL_STATE(1427)] = 55147, - [SMALL_STATE(1428)] = 55154, - [SMALL_STATE(1429)] = 55161, - [SMALL_STATE(1430)] = 55168, - [SMALL_STATE(1431)] = 55175, - [SMALL_STATE(1432)] = 55182, - [SMALL_STATE(1433)] = 55189, - [SMALL_STATE(1434)] = 55196, - [SMALL_STATE(1435)] = 55203, - [SMALL_STATE(1436)] = 55210, - [SMALL_STATE(1437)] = 55217, - [SMALL_STATE(1438)] = 55224, - [SMALL_STATE(1439)] = 55231, - [SMALL_STATE(1440)] = 55238, - [SMALL_STATE(1441)] = 55245, - [SMALL_STATE(1442)] = 55252, - [SMALL_STATE(1443)] = 55259, - [SMALL_STATE(1444)] = 55266, - [SMALL_STATE(1445)] = 55273, - [SMALL_STATE(1446)] = 55280, - [SMALL_STATE(1447)] = 55287, - [SMALL_STATE(1448)] = 55294, - [SMALL_STATE(1449)] = 55301, - [SMALL_STATE(1450)] = 55308, - [SMALL_STATE(1451)] = 55315, - [SMALL_STATE(1452)] = 55322, - [SMALL_STATE(1453)] = 55329, - [SMALL_STATE(1454)] = 55336, - [SMALL_STATE(1455)] = 55343, - [SMALL_STATE(1456)] = 55350, - [SMALL_STATE(1457)] = 55357, - [SMALL_STATE(1458)] = 55364, - [SMALL_STATE(1459)] = 55371, - [SMALL_STATE(1460)] = 55378, - [SMALL_STATE(1461)] = 55385, - [SMALL_STATE(1462)] = 55392, - [SMALL_STATE(1463)] = 55399, - [SMALL_STATE(1464)] = 55406, - [SMALL_STATE(1465)] = 55413, - [SMALL_STATE(1466)] = 55420, - [SMALL_STATE(1467)] = 55427, - [SMALL_STATE(1468)] = 55434, - [SMALL_STATE(1469)] = 55441, - [SMALL_STATE(1470)] = 55448, - [SMALL_STATE(1471)] = 55455, - [SMALL_STATE(1472)] = 55462, - [SMALL_STATE(1473)] = 55469, - [SMALL_STATE(1474)] = 55476, - [SMALL_STATE(1475)] = 55483, - [SMALL_STATE(1476)] = 55490, - [SMALL_STATE(1477)] = 55497, - [SMALL_STATE(1478)] = 55504, + [SMALL_STATE(205)] = 5929, + [SMALL_STATE(206)] = 6038, + [SMALL_STATE(207)] = 6149, + [SMALL_STATE(208)] = 6260, + [SMALL_STATE(209)] = 6373, + [SMALL_STATE(210)] = 6482, + [SMALL_STATE(211)] = 6591, + [SMALL_STATE(212)] = 6700, + [SMALL_STATE(213)] = 6806, + [SMALL_STATE(214)] = 6912, + [SMALL_STATE(215)] = 7018, + [SMALL_STATE(216)] = 7124, + [SMALL_STATE(217)] = 7218, + [SMALL_STATE(218)] = 7324, + [SMALL_STATE(219)] = 7430, + [SMALL_STATE(220)] = 7536, + [SMALL_STATE(221)] = 7642, + [SMALL_STATE(222)] = 7747, + [SMALL_STATE(223)] = 7852, + [SMALL_STATE(224)] = 7957, + [SMALL_STATE(225)] = 8060, + [SMALL_STATE(226)] = 8165, + [SMALL_STATE(227)] = 8268, + [SMALL_STATE(228)] = 8373, + [SMALL_STATE(229)] = 8475, + [SMALL_STATE(230)] = 8577, + [SMALL_STATE(231)] = 8679, + [SMALL_STATE(232)] = 8781, + [SMALL_STATE(233)] = 8883, + [SMALL_STATE(234)] = 8985, + [SMALL_STATE(235)] = 9087, + [SMALL_STATE(236)] = 9189, + [SMALL_STATE(237)] = 9291, + [SMALL_STATE(238)] = 9393, + [SMALL_STATE(239)] = 9495, + [SMALL_STATE(240)] = 9568, + [SMALL_STATE(241)] = 9669, + [SMALL_STATE(242)] = 9770, + [SMALL_STATE(243)] = 9871, + [SMALL_STATE(244)] = 9970, + [SMALL_STATE(245)] = 10031, + [SMALL_STATE(246)] = 10092, + [SMALL_STATE(247)] = 10191, + [SMALL_STATE(248)] = 10292, + [SMALL_STATE(249)] = 10393, + [SMALL_STATE(250)] = 10494, + [SMALL_STATE(251)] = 10567, + [SMALL_STATE(252)] = 10668, + [SMALL_STATE(253)] = 10741, + [SMALL_STATE(254)] = 10840, + [SMALL_STATE(255)] = 10941, + [SMALL_STATE(256)] = 11014, + [SMALL_STATE(257)] = 11115, + [SMALL_STATE(258)] = 11188, + [SMALL_STATE(259)] = 11289, + [SMALL_STATE(260)] = 11362, + [SMALL_STATE(261)] = 11435, + [SMALL_STATE(262)] = 11508, + [SMALL_STATE(263)] = 11609, + [SMALL_STATE(264)] = 11710, + [SMALL_STATE(265)] = 11811, + [SMALL_STATE(266)] = 11907, + [SMALL_STATE(267)] = 12003, + [SMALL_STATE(268)] = 12101, + [SMALL_STATE(269)] = 12197, + [SMALL_STATE(270)] = 12295, + [SMALL_STATE(271)] = 12391, + [SMALL_STATE(272)] = 12487, + [SMALL_STATE(273)] = 12583, + [SMALL_STATE(274)] = 12679, + [SMALL_STATE(275)] = 12775, + [SMALL_STATE(276)] = 12873, + [SMALL_STATE(277)] = 12971, + [SMALL_STATE(278)] = 13069, + [SMALL_STATE(279)] = 13167, + [SMALL_STATE(280)] = 13263, + [SMALL_STATE(281)] = 13359, + [SMALL_STATE(282)] = 13457, + [SMALL_STATE(283)] = 13553, + [SMALL_STATE(284)] = 13651, + [SMALL_STATE(285)] = 13747, + [SMALL_STATE(286)] = 13845, + [SMALL_STATE(287)] = 13941, + [SMALL_STATE(288)] = 14036, + [SMALL_STATE(289)] = 14131, + [SMALL_STATE(290)] = 14194, + [SMALL_STATE(291)] = 14263, + [SMALL_STATE(292)] = 14332, + [SMALL_STATE(293)] = 14395, + [SMALL_STATE(294)] = 14458, + [SMALL_STATE(295)] = 14517, + [SMALL_STATE(296)] = 14576, + [SMALL_STATE(297)] = 14635, + [SMALL_STATE(298)] = 14694, + [SMALL_STATE(299)] = 14767, + [SMALL_STATE(300)] = 14840, + [SMALL_STATE(301)] = 14909, + [SMALL_STATE(302)] = 14968, + [SMALL_STATE(303)] = 15037, + [SMALL_STATE(304)] = 15132, + [SMALL_STATE(305)] = 15201, + [SMALL_STATE(306)] = 15260, + [SMALL_STATE(307)] = 15319, + [SMALL_STATE(308)] = 15378, + [SMALL_STATE(309)] = 15441, + [SMALL_STATE(310)] = 15510, + [SMALL_STATE(311)] = 15579, + [SMALL_STATE(312)] = 15638, + [SMALL_STATE(313)] = 15707, + [SMALL_STATE(314)] = 15766, + [SMALL_STATE(315)] = 15858, + [SMALL_STATE(316)] = 15950, + [SMALL_STATE(317)] = 16042, + [SMALL_STATE(318)] = 16134, + [SMALL_STATE(319)] = 16226, + [SMALL_STATE(320)] = 16318, + [SMALL_STATE(321)] = 16410, + [SMALL_STATE(322)] = 16502, + [SMALL_STATE(323)] = 16594, + [SMALL_STATE(324)] = 16686, + [SMALL_STATE(325)] = 16778, + [SMALL_STATE(326)] = 16870, + [SMALL_STATE(327)] = 16962, + [SMALL_STATE(328)] = 17054, + [SMALL_STATE(329)] = 17146, + [SMALL_STATE(330)] = 17238, + [SMALL_STATE(331)] = 17330, + [SMALL_STATE(332)] = 17422, + [SMALL_STATE(333)] = 17514, + [SMALL_STATE(334)] = 17606, + [SMALL_STATE(335)] = 17698, + [SMALL_STATE(336)] = 17790, + [SMALL_STATE(337)] = 17882, + [SMALL_STATE(338)] = 17974, + [SMALL_STATE(339)] = 18066, + [SMALL_STATE(340)] = 18158, + [SMALL_STATE(341)] = 18250, + [SMALL_STATE(342)] = 18342, + [SMALL_STATE(343)] = 18434, + [SMALL_STATE(344)] = 18526, + [SMALL_STATE(345)] = 18618, + [SMALL_STATE(346)] = 18710, + [SMALL_STATE(347)] = 18802, + [SMALL_STATE(348)] = 18894, + [SMALL_STATE(349)] = 18986, + [SMALL_STATE(350)] = 19078, + [SMALL_STATE(351)] = 19170, + [SMALL_STATE(352)] = 19262, + [SMALL_STATE(353)] = 19354, + [SMALL_STATE(354)] = 19446, + [SMALL_STATE(355)] = 19538, + [SMALL_STATE(356)] = 19630, + [SMALL_STATE(357)] = 19722, + [SMALL_STATE(358)] = 19814, + [SMALL_STATE(359)] = 19906, + [SMALL_STATE(360)] = 19998, + [SMALL_STATE(361)] = 20090, + [SMALL_STATE(362)] = 20182, + [SMALL_STATE(363)] = 20274, + [SMALL_STATE(364)] = 20366, + [SMALL_STATE(365)] = 20458, + [SMALL_STATE(366)] = 20550, + [SMALL_STATE(367)] = 20642, + [SMALL_STATE(368)] = 20734, + [SMALL_STATE(369)] = 20826, + [SMALL_STATE(370)] = 20890, + [SMALL_STATE(371)] = 20982, + [SMALL_STATE(372)] = 21074, + [SMALL_STATE(373)] = 21166, + [SMALL_STATE(374)] = 21258, + [SMALL_STATE(375)] = 21350, + [SMALL_STATE(376)] = 21442, + [SMALL_STATE(377)] = 21534, + [SMALL_STATE(378)] = 21626, + [SMALL_STATE(379)] = 21718, + [SMALL_STATE(380)] = 21810, + [SMALL_STATE(381)] = 21902, + [SMALL_STATE(382)] = 21972, + [SMALL_STATE(383)] = 22036, + [SMALL_STATE(384)] = 22128, + [SMALL_STATE(385)] = 22220, + [SMALL_STATE(386)] = 22312, + [SMALL_STATE(387)] = 22404, + [SMALL_STATE(388)] = 22496, + [SMALL_STATE(389)] = 22588, + [SMALL_STATE(390)] = 22682, + [SMALL_STATE(391)] = 22743, + [SMALL_STATE(392)] = 22800, + [SMALL_STATE(393)] = 22857, + [SMALL_STATE(394)] = 22914, + [SMALL_STATE(395)] = 22971, + [SMALL_STATE(396)] = 23028, + [SMALL_STATE(397)] = 23085, + [SMALL_STATE(398)] = 23152, + [SMALL_STATE(399)] = 23209, + [SMALL_STATE(400)] = 23266, + [SMALL_STATE(401)] = 23323, + [SMALL_STATE(402)] = 23380, + [SMALL_STATE(403)] = 23437, + [SMALL_STATE(404)] = 23494, + [SMALL_STATE(405)] = 23551, + [SMALL_STATE(406)] = 23608, + [SMALL_STATE(407)] = 23665, + [SMALL_STATE(408)] = 23722, + [SMALL_STATE(409)] = 23779, + [SMALL_STATE(410)] = 23840, + [SMALL_STATE(411)] = 23897, + [SMALL_STATE(412)] = 23954, + [SMALL_STATE(413)] = 24015, + [SMALL_STATE(414)] = 24072, + [SMALL_STATE(415)] = 24133, + [SMALL_STATE(416)] = 24193, + [SMALL_STATE(417)] = 24257, + [SMALL_STATE(418)] = 24313, + [SMALL_STATE(419)] = 24373, + [SMALL_STATE(420)] = 24429, + [SMALL_STATE(421)] = 24489, + [SMALL_STATE(422)] = 24549, + [SMALL_STATE(423)] = 24605, + [SMALL_STATE(424)] = 24697, + [SMALL_STATE(425)] = 24757, + [SMALL_STATE(426)] = 24817, + [SMALL_STATE(427)] = 24877, + [SMALL_STATE(428)] = 24937, + [SMALL_STATE(429)] = 24993, + [SMALL_STATE(430)] = 25057, + [SMALL_STATE(431)] = 25117, + [SMALL_STATE(432)] = 25177, + [SMALL_STATE(433)] = 25237, + [SMALL_STATE(434)] = 25293, + [SMALL_STATE(435)] = 25385, + [SMALL_STATE(436)] = 25445, + [SMALL_STATE(437)] = 25505, + [SMALL_STATE(438)] = 25565, + [SMALL_STATE(439)] = 25625, + [SMALL_STATE(440)] = 25681, + [SMALL_STATE(441)] = 25745, + [SMALL_STATE(442)] = 25839, + [SMALL_STATE(443)] = 25903, + [SMALL_STATE(444)] = 25959, + [SMALL_STATE(445)] = 26015, + [SMALL_STATE(446)] = 26075, + [SMALL_STATE(447)] = 26136, + [SMALL_STATE(448)] = 26227, + [SMALL_STATE(449)] = 26318, + [SMALL_STATE(450)] = 26409, + [SMALL_STATE(451)] = 26464, + [SMALL_STATE(452)] = 26525, + [SMALL_STATE(453)] = 26586, + [SMALL_STATE(454)] = 26641, + [SMALL_STATE(455)] = 26696, + [SMALL_STATE(456)] = 26751, + [SMALL_STATE(457)] = 26842, + [SMALL_STATE(458)] = 26897, + [SMALL_STATE(459)] = 26988, + [SMALL_STATE(460)] = 27049, + [SMALL_STATE(461)] = 27104, + [SMALL_STATE(462)] = 27159, + [SMALL_STATE(463)] = 27214, + [SMALL_STATE(464)] = 27269, + [SMALL_STATE(465)] = 27324, + [SMALL_STATE(466)] = 27379, + [SMALL_STATE(467)] = 27434, + [SMALL_STATE(468)] = 27525, + [SMALL_STATE(469)] = 27579, + [SMALL_STATE(470)] = 27633, + [SMALL_STATE(471)] = 27687, + [SMALL_STATE(472)] = 27741, + [SMALL_STATE(473)] = 27795, + [SMALL_STATE(474)] = 27849, + [SMALL_STATE(475)] = 27903, + [SMALL_STATE(476)] = 27957, + [SMALL_STATE(477)] = 28011, + [SMALL_STATE(478)] = 28065, + [SMALL_STATE(479)] = 28119, + [SMALL_STATE(480)] = 28173, + [SMALL_STATE(481)] = 28227, + [SMALL_STATE(482)] = 28281, + [SMALL_STATE(483)] = 28369, + [SMALL_STATE(484)] = 28423, + [SMALL_STATE(485)] = 28477, + [SMALL_STATE(486)] = 28531, + [SMALL_STATE(487)] = 28585, + [SMALL_STATE(488)] = 28639, + [SMALL_STATE(489)] = 28693, + [SMALL_STATE(490)] = 28747, + [SMALL_STATE(491)] = 28801, + [SMALL_STATE(492)] = 28855, + [SMALL_STATE(493)] = 28909, + [SMALL_STATE(494)] = 28963, + [SMALL_STATE(495)] = 29017, + [SMALL_STATE(496)] = 29071, + [SMALL_STATE(497)] = 29125, + [SMALL_STATE(498)] = 29179, + [SMALL_STATE(499)] = 29233, + [SMALL_STATE(500)] = 29287, + [SMALL_STATE(501)] = 29341, + [SMALL_STATE(502)] = 29395, + [SMALL_STATE(503)] = 29449, + [SMALL_STATE(504)] = 29503, + [SMALL_STATE(505)] = 29591, + [SMALL_STATE(506)] = 29645, + [SMALL_STATE(507)] = 29699, + [SMALL_STATE(508)] = 29753, + [SMALL_STATE(509)] = 29807, + [SMALL_STATE(510)] = 29861, + [SMALL_STATE(511)] = 29915, + [SMALL_STATE(512)] = 29969, + [SMALL_STATE(513)] = 30023, + [SMALL_STATE(514)] = 30077, + [SMALL_STATE(515)] = 30131, + [SMALL_STATE(516)] = 30185, + [SMALL_STATE(517)] = 30239, + [SMALL_STATE(518)] = 30293, + [SMALL_STATE(519)] = 30347, + [SMALL_STATE(520)] = 30401, + [SMALL_STATE(521)] = 30455, + [SMALL_STATE(522)] = 30509, + [SMALL_STATE(523)] = 30563, + [SMALL_STATE(524)] = 30617, + [SMALL_STATE(525)] = 30671, + [SMALL_STATE(526)] = 30725, + [SMALL_STATE(527)] = 30779, + [SMALL_STATE(528)] = 30833, + [SMALL_STATE(529)] = 30887, + [SMALL_STATE(530)] = 30941, + [SMALL_STATE(531)] = 30995, + [SMALL_STATE(532)] = 31049, + [SMALL_STATE(533)] = 31103, + [SMALL_STATE(534)] = 31157, + [SMALL_STATE(535)] = 31211, + [SMALL_STATE(536)] = 31265, + [SMALL_STATE(537)] = 31319, + [SMALL_STATE(538)] = 31373, + [SMALL_STATE(539)] = 31427, + [SMALL_STATE(540)] = 31481, + [SMALL_STATE(541)] = 31535, + [SMALL_STATE(542)] = 31589, + [SMALL_STATE(543)] = 31643, + [SMALL_STATE(544)] = 31697, + [SMALL_STATE(545)] = 31751, + [SMALL_STATE(546)] = 31805, + [SMALL_STATE(547)] = 31859, + [SMALL_STATE(548)] = 31913, + [SMALL_STATE(549)] = 31967, + [SMALL_STATE(550)] = 32021, + [SMALL_STATE(551)] = 32075, + [SMALL_STATE(552)] = 32129, + [SMALL_STATE(553)] = 32183, + [SMALL_STATE(554)] = 32237, + [SMALL_STATE(555)] = 32291, + [SMALL_STATE(556)] = 32345, + [SMALL_STATE(557)] = 32399, + [SMALL_STATE(558)] = 32453, + [SMALL_STATE(559)] = 32507, + [SMALL_STATE(560)] = 32561, + [SMALL_STATE(561)] = 32615, + [SMALL_STATE(562)] = 32669, + [SMALL_STATE(563)] = 32723, + [SMALL_STATE(564)] = 32777, + [SMALL_STATE(565)] = 32831, + [SMALL_STATE(566)] = 32885, + [SMALL_STATE(567)] = 32939, + [SMALL_STATE(568)] = 32993, + [SMALL_STATE(569)] = 33075, + [SMALL_STATE(570)] = 33130, + [SMALL_STATE(571)] = 33185, + [SMALL_STATE(572)] = 33240, + [SMALL_STATE(573)] = 33295, + [SMALL_STATE(574)] = 33350, + [SMALL_STATE(575)] = 33405, + [SMALL_STATE(576)] = 33481, + [SMALL_STATE(577)] = 33557, + [SMALL_STATE(578)] = 33633, + [SMALL_STATE(579)] = 33709, + [SMALL_STATE(580)] = 33782, + [SMALL_STATE(581)] = 33831, + [SMALL_STATE(582)] = 33880, + [SMALL_STATE(583)] = 33953, + [SMALL_STATE(584)] = 34026, + [SMALL_STATE(585)] = 34075, + [SMALL_STATE(586)] = 34148, + [SMALL_STATE(587)] = 34221, + [SMALL_STATE(588)] = 34294, + [SMALL_STATE(589)] = 34367, + [SMALL_STATE(590)] = 34440, + [SMALL_STATE(591)] = 34513, + [SMALL_STATE(592)] = 34586, + [SMALL_STATE(593)] = 34659, + [SMALL_STATE(594)] = 34732, + [SMALL_STATE(595)] = 34805, + [SMALL_STATE(596)] = 34882, + [SMALL_STATE(597)] = 34955, + [SMALL_STATE(598)] = 35028, + [SMALL_STATE(599)] = 35101, + [SMALL_STATE(600)] = 35174, + [SMALL_STATE(601)] = 35247, + [SMALL_STATE(602)] = 35320, + [SMALL_STATE(603)] = 35393, + [SMALL_STATE(604)] = 35466, + [SMALL_STATE(605)] = 35539, + [SMALL_STATE(606)] = 35612, + [SMALL_STATE(607)] = 35685, + [SMALL_STATE(608)] = 35758, + [SMALL_STATE(609)] = 35831, + [SMALL_STATE(610)] = 35904, + [SMALL_STATE(611)] = 35977, + [SMALL_STATE(612)] = 36050, + [SMALL_STATE(613)] = 36123, + [SMALL_STATE(614)] = 36196, + [SMALL_STATE(615)] = 36269, + [SMALL_STATE(616)] = 36342, + [SMALL_STATE(617)] = 36415, + [SMALL_STATE(618)] = 36488, + [SMALL_STATE(619)] = 36561, + [SMALL_STATE(620)] = 36634, + [SMALL_STATE(621)] = 36707, + [SMALL_STATE(622)] = 36780, + [SMALL_STATE(623)] = 36853, + [SMALL_STATE(624)] = 36930, + [SMALL_STATE(625)] = 36979, + [SMALL_STATE(626)] = 37052, + [SMALL_STATE(627)] = 37125, + [SMALL_STATE(628)] = 37198, + [SMALL_STATE(629)] = 37271, + [SMALL_STATE(630)] = 37319, + [SMALL_STATE(631)] = 37367, + [SMALL_STATE(632)] = 37415, + [SMALL_STATE(633)] = 37463, + [SMALL_STATE(634)] = 37511, + [SMALL_STATE(635)] = 37559, + [SMALL_STATE(636)] = 37607, + [SMALL_STATE(637)] = 37655, + [SMALL_STATE(638)] = 37703, + [SMALL_STATE(639)] = 37751, + [SMALL_STATE(640)] = 37799, + [SMALL_STATE(641)] = 37847, + [SMALL_STATE(642)] = 37895, + [SMALL_STATE(643)] = 37943, + [SMALL_STATE(644)] = 37991, + [SMALL_STATE(645)] = 38039, + [SMALL_STATE(646)] = 38087, + [SMALL_STATE(647)] = 38135, + [SMALL_STATE(648)] = 38183, + [SMALL_STATE(649)] = 38231, + [SMALL_STATE(650)] = 38279, + [SMALL_STATE(651)] = 38327, + [SMALL_STATE(652)] = 38375, + [SMALL_STATE(653)] = 38457, + [SMALL_STATE(654)] = 38539, + [SMALL_STATE(655)] = 38587, + [SMALL_STATE(656)] = 38635, + [SMALL_STATE(657)] = 38683, + [SMALL_STATE(658)] = 38731, + [SMALL_STATE(659)] = 38779, + [SMALL_STATE(660)] = 38827, + [SMALL_STATE(661)] = 38875, + [SMALL_STATE(662)] = 38923, + [SMALL_STATE(663)] = 38980, + [SMALL_STATE(664)] = 39051, + [SMALL_STATE(665)] = 39122, + [SMALL_STATE(666)] = 39193, + [SMALL_STATE(667)] = 39264, + [SMALL_STATE(668)] = 39335, + [SMALL_STATE(669)] = 39400, + [SMALL_STATE(670)] = 39457, + [SMALL_STATE(671)] = 39514, + [SMALL_STATE(672)] = 39571, + [SMALL_STATE(673)] = 39628, + [SMALL_STATE(674)] = 39699, + [SMALL_STATE(675)] = 39768, + [SMALL_STATE(676)] = 39825, + [SMALL_STATE(677)] = 39882, + [SMALL_STATE(678)] = 39945, + [SMALL_STATE(679)] = 40008, + [SMALL_STATE(680)] = 40075, + [SMALL_STATE(681)] = 40140, + [SMALL_STATE(682)] = 40207, + [SMALL_STATE(683)] = 40276, + [SMALL_STATE(684)] = 40337, + [SMALL_STATE(685)] = 40394, + [SMALL_STATE(686)] = 40455, + [SMALL_STATE(687)] = 40505, + [SMALL_STATE(688)] = 40553, + [SMALL_STATE(689)] = 40603, + [SMALL_STATE(690)] = 40653, + [SMALL_STATE(691)] = 40699, + [SMALL_STATE(692)] = 40749, + [SMALL_STATE(693)] = 40797, + [SMALL_STATE(694)] = 40845, + [SMALL_STATE(695)] = 40893, + [SMALL_STATE(696)] = 40939, + [SMALL_STATE(697)] = 40988, + [SMALL_STATE(698)] = 41033, + [SMALL_STATE(699)] = 41082, + [SMALL_STATE(700)] = 41131, + [SMALL_STATE(701)] = 41180, + [SMALL_STATE(702)] = 41229, + [SMALL_STATE(703)] = 41308, + [SMALL_STATE(704)] = 41353, + [SMALL_STATE(705)] = 41402, + [SMALL_STATE(706)] = 41466, + [SMALL_STATE(707)] = 41534, + [SMALL_STATE(708)] = 41592, + [SMALL_STATE(709)] = 41646, + [SMALL_STATE(710)] = 41690, + [SMALL_STATE(711)] = 41752, + [SMALL_STATE(712)] = 41806, + [SMALL_STATE(713)] = 41860, + [SMALL_STATE(714)] = 41928, + [SMALL_STATE(715)] = 41994, + [SMALL_STATE(716)] = 42038, + [SMALL_STATE(717)] = 42082, + [SMALL_STATE(718)] = 42150, + [SMALL_STATE(719)] = 42226, + [SMALL_STATE(720)] = 42270, + [SMALL_STATE(721)] = 42318, + [SMALL_STATE(722)] = 42378, + [SMALL_STATE(723)] = 42426, + [SMALL_STATE(724)] = 42480, + [SMALL_STATE(725)] = 42525, + [SMALL_STATE(726)] = 42568, + [SMALL_STATE(727)] = 42611, + [SMALL_STATE(728)] = 42656, + [SMALL_STATE(729)] = 42737, + [SMALL_STATE(730)] = 42784, + [SMALL_STATE(731)] = 42829, + [SMALL_STATE(732)] = 42874, + [SMALL_STATE(733)] = 42919, + [SMALL_STATE(734)] = 43000, + [SMALL_STATE(735)] = 43067, + [SMALL_STATE(736)] = 43112, + [SMALL_STATE(737)] = 43179, + [SMALL_STATE(738)] = 43260, + [SMALL_STATE(739)] = 43305, + [SMALL_STATE(740)] = 43366, + [SMALL_STATE(741)] = 43411, + [SMALL_STATE(742)] = 43474, + [SMALL_STATE(743)] = 43527, + [SMALL_STATE(744)] = 43570, + [SMALL_STATE(745)] = 43627, + [SMALL_STATE(746)] = 43692, + [SMALL_STATE(747)] = 43745, + [SMALL_STATE(748)] = 43792, + [SMALL_STATE(749)] = 43845, + [SMALL_STATE(750)] = 43892, + [SMALL_STATE(751)] = 43973, + [SMALL_STATE(752)] = 44040, + [SMALL_STATE(753)] = 44099, + [SMALL_STATE(754)] = 44152, + [SMALL_STATE(755)] = 44199, + [SMALL_STATE(756)] = 44242, + [SMALL_STATE(757)] = 44286, + [SMALL_STATE(758)] = 44328, + [SMALL_STATE(759)] = 44370, + [SMALL_STATE(760)] = 44412, + [SMALL_STATE(761)] = 44454, + [SMALL_STATE(762)] = 44496, + [SMALL_STATE(763)] = 44540, + [SMALL_STATE(764)] = 44582, + [SMALL_STATE(765)] = 44624, + [SMALL_STATE(766)] = 44704, + [SMALL_STATE(767)] = 44782, + [SMALL_STATE(768)] = 44824, + [SMALL_STATE(769)] = 44902, + [SMALL_STATE(770)] = 44944, + [SMALL_STATE(771)] = 44988, + [SMALL_STATE(772)] = 45066, + [SMALL_STATE(773)] = 45108, + [SMALL_STATE(774)] = 45186, + [SMALL_STATE(775)] = 45264, + [SMALL_STATE(776)] = 45306, + [SMALL_STATE(777)] = 45348, + [SMALL_STATE(778)] = 45390, + [SMALL_STATE(779)] = 45434, + [SMALL_STATE(780)] = 45476, + [SMALL_STATE(781)] = 45518, + [SMALL_STATE(782)] = 45560, + [SMALL_STATE(783)] = 45602, + [SMALL_STATE(784)] = 45644, + [SMALL_STATE(785)] = 45686, + [SMALL_STATE(786)] = 45728, + [SMALL_STATE(787)] = 45770, + [SMALL_STATE(788)] = 45812, + [SMALL_STATE(789)] = 45854, + [SMALL_STATE(790)] = 45896, + [SMALL_STATE(791)] = 45938, + [SMALL_STATE(792)] = 45980, + [SMALL_STATE(793)] = 46022, + [SMALL_STATE(794)] = 46064, + [SMALL_STATE(795)] = 46106, + [SMALL_STATE(796)] = 46148, + [SMALL_STATE(797)] = 46192, + [SMALL_STATE(798)] = 46234, + [SMALL_STATE(799)] = 46276, + [SMALL_STATE(800)] = 46318, + [SMALL_STATE(801)] = 46359, + [SMALL_STATE(802)] = 46400, + [SMALL_STATE(803)] = 46441, + [SMALL_STATE(804)] = 46486, + [SMALL_STATE(805)] = 46565, + [SMALL_STATE(806)] = 46606, + [SMALL_STATE(807)] = 46647, + [SMALL_STATE(808)] = 46722, + [SMALL_STATE(809)] = 46763, + [SMALL_STATE(810)] = 46804, + [SMALL_STATE(811)] = 46883, + [SMALL_STATE(812)] = 46924, + [SMALL_STATE(813)] = 46965, + [SMALL_STATE(814)] = 47006, + [SMALL_STATE(815)] = 47047, + [SMALL_STATE(816)] = 47088, + [SMALL_STATE(817)] = 47129, + [SMALL_STATE(818)] = 47170, + [SMALL_STATE(819)] = 47211, + [SMALL_STATE(820)] = 47252, + [SMALL_STATE(821)] = 47293, + [SMALL_STATE(822)] = 47334, + [SMALL_STATE(823)] = 47375, + [SMALL_STATE(824)] = 47454, + [SMALL_STATE(825)] = 47495, + [SMALL_STATE(826)] = 47540, + [SMALL_STATE(827)] = 47581, + [SMALL_STATE(828)] = 47622, + [SMALL_STATE(829)] = 47663, + [SMALL_STATE(830)] = 47704, + [SMALL_STATE(831)] = 47745, + [SMALL_STATE(832)] = 47786, + [SMALL_STATE(833)] = 47827, + [SMALL_STATE(834)] = 47868, + [SMALL_STATE(835)] = 47909, + [SMALL_STATE(836)] = 47950, + [SMALL_STATE(837)] = 47991, + [SMALL_STATE(838)] = 48032, + [SMALL_STATE(839)] = 48073, + [SMALL_STATE(840)] = 48146, + [SMALL_STATE(841)] = 48216, + [SMALL_STATE(842)] = 48286, + [SMALL_STATE(843)] = 48348, + [SMALL_STATE(844)] = 48410, + [SMALL_STATE(845)] = 48450, + [SMALL_STATE(846)] = 48490, + [SMALL_STATE(847)] = 48530, + [SMALL_STATE(848)] = 48570, + [SMALL_STATE(849)] = 48600, + [SMALL_STATE(850)] = 48625, + [SMALL_STATE(851)] = 48662, + [SMALL_STATE(852)] = 48715, + [SMALL_STATE(853)] = 48744, + [SMALL_STATE(854)] = 48769, + [SMALL_STATE(855)] = 48794, + [SMALL_STATE(856)] = 48847, + [SMALL_STATE(857)] = 48884, + [SMALL_STATE(858)] = 48909, + [SMALL_STATE(859)] = 48962, + [SMALL_STATE(860)] = 48991, + [SMALL_STATE(861)] = 49025, + [SMALL_STATE(862)] = 49053, + [SMALL_STATE(863)] = 49099, + [SMALL_STATE(864)] = 49133, + [SMALL_STATE(865)] = 49176, + [SMALL_STATE(866)] = 49219, + [SMALL_STATE(867)] = 49262, + [SMALL_STATE(868)] = 49293, + [SMALL_STATE(869)] = 49336, + [SMALL_STATE(870)] = 49379, + [SMALL_STATE(871)] = 49423, + [SMALL_STATE(872)] = 49463, + [SMALL_STATE(873)] = 49500, + [SMALL_STATE(874)] = 49537, + [SMALL_STATE(875)] = 49562, + [SMALL_STATE(876)] = 49599, + [SMALL_STATE(877)] = 49636, + [SMALL_STATE(878)] = 49670, + [SMALL_STATE(879)] = 49704, + [SMALL_STATE(880)] = 49726, + [SMALL_STATE(881)] = 49748, + [SMALL_STATE(882)] = 49770, + [SMALL_STATE(883)] = 49793, + [SMALL_STATE(884)] = 49814, + [SMALL_STATE(885)] = 49837, + [SMALL_STATE(886)] = 49864, + [SMALL_STATE(887)] = 49901, + [SMALL_STATE(888)] = 49938, + [SMALL_STATE(889)] = 49963, + [SMALL_STATE(890)] = 49986, + [SMALL_STATE(891)] = 50009, + [SMALL_STATE(892)] = 50030, + [SMALL_STATE(893)] = 50051, + [SMALL_STATE(894)] = 50074, + [SMALL_STATE(895)] = 50091, + [SMALL_STATE(896)] = 50114, + [SMALL_STATE(897)] = 50135, + [SMALL_STATE(898)] = 50156, + [SMALL_STATE(899)] = 50181, + [SMALL_STATE(900)] = 50204, + [SMALL_STATE(901)] = 50223, + [SMALL_STATE(902)] = 50244, + [SMALL_STATE(903)] = 50267, + [SMALL_STATE(904)] = 50304, + [SMALL_STATE(905)] = 50329, + [SMALL_STATE(906)] = 50366, + [SMALL_STATE(907)] = 50396, + [SMALL_STATE(908)] = 50426, + [SMALL_STATE(909)] = 50460, + [SMALL_STATE(910)] = 50494, + [SMALL_STATE(911)] = 50516, + [SMALL_STATE(912)] = 50550, + [SMALL_STATE(913)] = 50584, + [SMALL_STATE(914)] = 50614, + [SMALL_STATE(915)] = 50644, + [SMALL_STATE(916)] = 50674, + [SMALL_STATE(917)] = 50704, + [SMALL_STATE(918)] = 50722, + [SMALL_STATE(919)] = 50752, + [SMALL_STATE(920)] = 50782, + [SMALL_STATE(921)] = 50812, + [SMALL_STATE(922)] = 50846, + [SMALL_STATE(923)] = 50876, + [SMALL_STATE(924)] = 50906, + [SMALL_STATE(925)] = 50924, + [SMALL_STATE(926)] = 50954, + [SMALL_STATE(927)] = 50984, + [SMALL_STATE(928)] = 51006, + [SMALL_STATE(929)] = 51040, + [SMALL_STATE(930)] = 51070, + [SMALL_STATE(931)] = 51104, + [SMALL_STATE(932)] = 51126, + [SMALL_STATE(933)] = 51156, + [SMALL_STATE(934)] = 51190, + [SMALL_STATE(935)] = 51212, + [SMALL_STATE(936)] = 51246, + [SMALL_STATE(937)] = 51269, + [SMALL_STATE(938)] = 51288, + [SMALL_STATE(939)] = 51307, + [SMALL_STATE(940)] = 51326, + [SMALL_STATE(941)] = 51351, + [SMALL_STATE(942)] = 51370, + [SMALL_STATE(943)] = 51393, + [SMALL_STATE(944)] = 51416, + [SMALL_STATE(945)] = 51435, + [SMALL_STATE(946)] = 51454, + [SMALL_STATE(947)] = 51468, + [SMALL_STATE(948)] = 51482, + [SMALL_STATE(949)] = 51496, + [SMALL_STATE(950)] = 51510, + [SMALL_STATE(951)] = 51524, + [SMALL_STATE(952)] = 51542, + [SMALL_STATE(953)] = 51556, + [SMALL_STATE(954)] = 51576, + [SMALL_STATE(955)] = 51590, + [SMALL_STATE(956)] = 51604, + [SMALL_STATE(957)] = 51618, + [SMALL_STATE(958)] = 51632, + [SMALL_STATE(959)] = 51650, + [SMALL_STATE(960)] = 51664, + [SMALL_STATE(961)] = 51688, + [SMALL_STATE(962)] = 51712, + [SMALL_STATE(963)] = 51726, + [SMALL_STATE(964)] = 51746, + [SMALL_STATE(965)] = 51760, + [SMALL_STATE(966)] = 51774, + [SMALL_STATE(967)] = 51788, + [SMALL_STATE(968)] = 51806, + [SMALL_STATE(969)] = 51820, + [SMALL_STATE(970)] = 51838, + [SMALL_STATE(971)] = 51854, + [SMALL_STATE(972)] = 51868, + [SMALL_STATE(973)] = 51882, + [SMALL_STATE(974)] = 51900, + [SMALL_STATE(975)] = 51914, + [SMALL_STATE(976)] = 51928, + [SMALL_STATE(977)] = 51946, + [SMALL_STATE(978)] = 51960, + [SMALL_STATE(979)] = 51978, + [SMALL_STATE(980)] = 51998, + [SMALL_STATE(981)] = 52014, + [SMALL_STATE(982)] = 52036, + [SMALL_STATE(983)] = 52054, + [SMALL_STATE(984)] = 52068, + [SMALL_STATE(985)] = 52086, + [SMALL_STATE(986)] = 52106, + [SMALL_STATE(987)] = 52124, + [SMALL_STATE(988)] = 52142, + [SMALL_STATE(989)] = 52160, + [SMALL_STATE(990)] = 52186, + [SMALL_STATE(991)] = 52200, + [SMALL_STATE(992)] = 52214, + [SMALL_STATE(993)] = 52233, + [SMALL_STATE(994)] = 52252, + [SMALL_STATE(995)] = 52269, + [SMALL_STATE(996)] = 52290, + [SMALL_STATE(997)] = 52303, + [SMALL_STATE(998)] = 52324, + [SMALL_STATE(999)] = 52345, + [SMALL_STATE(1000)] = 52366, + [SMALL_STATE(1001)] = 52391, + [SMALL_STATE(1002)] = 52404, + [SMALL_STATE(1003)] = 52423, + [SMALL_STATE(1004)] = 52442, + [SMALL_STATE(1005)] = 52461, + [SMALL_STATE(1006)] = 52484, + [SMALL_STATE(1007)] = 52509, + [SMALL_STATE(1008)] = 52528, + [SMALL_STATE(1009)] = 52551, + [SMALL_STATE(1010)] = 52574, + [SMALL_STATE(1011)] = 52587, + [SMALL_STATE(1012)] = 52608, + [SMALL_STATE(1013)] = 52631, + [SMALL_STATE(1014)] = 52654, + [SMALL_STATE(1015)] = 52669, + [SMALL_STATE(1016)] = 52688, + [SMALL_STATE(1017)] = 52707, + [SMALL_STATE(1018)] = 52732, + [SMALL_STATE(1019)] = 52745, + [SMALL_STATE(1020)] = 52758, + [SMALL_STATE(1021)] = 52771, + [SMALL_STATE(1022)] = 52788, + [SMALL_STATE(1023)] = 52807, + [SMALL_STATE(1024)] = 52820, + [SMALL_STATE(1025)] = 52835, + [SMALL_STATE(1026)] = 52860, + [SMALL_STATE(1027)] = 52883, + [SMALL_STATE(1028)] = 52900, + [SMALL_STATE(1029)] = 52925, + [SMALL_STATE(1030)] = 52944, + [SMALL_STATE(1031)] = 52967, + [SMALL_STATE(1032)] = 52990, + [SMALL_STATE(1033)] = 53013, + [SMALL_STATE(1034)] = 53038, + [SMALL_STATE(1035)] = 53063, + [SMALL_STATE(1036)] = 53084, + [SMALL_STATE(1037)] = 53109, + [SMALL_STATE(1038)] = 53130, + [SMALL_STATE(1039)] = 53146, + [SMALL_STATE(1040)] = 53162, + [SMALL_STATE(1041)] = 53184, + [SMALL_STATE(1042)] = 53200, + [SMALL_STATE(1043)] = 53220, + [SMALL_STATE(1044)] = 53238, + [SMALL_STATE(1045)] = 53252, + [SMALL_STATE(1046)] = 53268, + [SMALL_STATE(1047)] = 53282, + [SMALL_STATE(1048)] = 53298, + [SMALL_STATE(1049)] = 53312, + [SMALL_STATE(1050)] = 53332, + [SMALL_STATE(1051)] = 53354, + [SMALL_STATE(1052)] = 53370, + [SMALL_STATE(1053)] = 53392, + [SMALL_STATE(1054)] = 53410, + [SMALL_STATE(1055)] = 53424, + [SMALL_STATE(1056)] = 53446, + [SMALL_STATE(1057)] = 53460, + [SMALL_STATE(1058)] = 53476, + [SMALL_STATE(1059)] = 53494, + [SMALL_STATE(1060)] = 53512, + [SMALL_STATE(1061)] = 53534, + [SMALL_STATE(1062)] = 53546, + [SMALL_STATE(1063)] = 53566, + [SMALL_STATE(1064)] = 53584, + [SMALL_STATE(1065)] = 53602, + [SMALL_STATE(1066)] = 53624, + [SMALL_STATE(1067)] = 53646, + [SMALL_STATE(1068)] = 53660, + [SMALL_STATE(1069)] = 53678, + [SMALL_STATE(1070)] = 53696, + [SMALL_STATE(1071)] = 53708, + [SMALL_STATE(1072)] = 53728, + [SMALL_STATE(1073)] = 53747, + [SMALL_STATE(1074)] = 53764, + [SMALL_STATE(1075)] = 53783, + [SMALL_STATE(1076)] = 53800, + [SMALL_STATE(1077)] = 53819, + [SMALL_STATE(1078)] = 53834, + [SMALL_STATE(1079)] = 53849, + [SMALL_STATE(1080)] = 53864, + [SMALL_STATE(1081)] = 53881, + [SMALL_STATE(1082)] = 53898, + [SMALL_STATE(1083)] = 53913, + [SMALL_STATE(1084)] = 53930, + [SMALL_STATE(1085)] = 53949, + [SMALL_STATE(1086)] = 53966, + [SMALL_STATE(1087)] = 53977, + [SMALL_STATE(1088)] = 53994, + [SMALL_STATE(1089)] = 54013, + [SMALL_STATE(1090)] = 54024, + [SMALL_STATE(1091)] = 54041, + [SMALL_STATE(1092)] = 54058, + [SMALL_STATE(1093)] = 54075, + [SMALL_STATE(1094)] = 54092, + [SMALL_STATE(1095)] = 54109, + [SMALL_STATE(1096)] = 54124, + [SMALL_STATE(1097)] = 54139, + [SMALL_STATE(1098)] = 54156, + [SMALL_STATE(1099)] = 54175, + [SMALL_STATE(1100)] = 54190, + [SMALL_STATE(1101)] = 54207, + [SMALL_STATE(1102)] = 54224, + [SMALL_STATE(1103)] = 54241, + [SMALL_STATE(1104)] = 54260, + [SMALL_STATE(1105)] = 54279, + [SMALL_STATE(1106)] = 54296, + [SMALL_STATE(1107)] = 54313, + [SMALL_STATE(1108)] = 54324, + [SMALL_STATE(1109)] = 54340, + [SMALL_STATE(1110)] = 54354, + [SMALL_STATE(1111)] = 54368, + [SMALL_STATE(1112)] = 54382, + [SMALL_STATE(1113)] = 54398, + [SMALL_STATE(1114)] = 54414, + [SMALL_STATE(1115)] = 54428, + [SMALL_STATE(1116)] = 54442, + [SMALL_STATE(1117)] = 54456, + [SMALL_STATE(1118)] = 54466, + [SMALL_STATE(1119)] = 54476, + [SMALL_STATE(1120)] = 54490, + [SMALL_STATE(1121)] = 54504, + [SMALL_STATE(1122)] = 54516, + [SMALL_STATE(1123)] = 54526, + [SMALL_STATE(1124)] = 54536, + [SMALL_STATE(1125)] = 54550, + [SMALL_STATE(1126)] = 54566, + [SMALL_STATE(1127)] = 54582, + [SMALL_STATE(1128)] = 54598, + [SMALL_STATE(1129)] = 54614, + [SMALL_STATE(1130)] = 54630, + [SMALL_STATE(1131)] = 54644, + [SMALL_STATE(1132)] = 54658, + [SMALL_STATE(1133)] = 54670, + [SMALL_STATE(1134)] = 54684, + [SMALL_STATE(1135)] = 54698, + [SMALL_STATE(1136)] = 54712, + [SMALL_STATE(1137)] = 54728, + [SMALL_STATE(1138)] = 54742, + [SMALL_STATE(1139)] = 54756, + [SMALL_STATE(1140)] = 54772, + [SMALL_STATE(1141)] = 54788, + [SMALL_STATE(1142)] = 54802, + [SMALL_STATE(1143)] = 54818, + [SMALL_STATE(1144)] = 54832, + [SMALL_STATE(1145)] = 54846, + [SMALL_STATE(1146)] = 54860, + [SMALL_STATE(1147)] = 54876, + [SMALL_STATE(1148)] = 54890, + [SMALL_STATE(1149)] = 54904, + [SMALL_STATE(1150)] = 54920, + [SMALL_STATE(1151)] = 54936, + [SMALL_STATE(1152)] = 54952, + [SMALL_STATE(1153)] = 54966, + [SMALL_STATE(1154)] = 54982, + [SMALL_STATE(1155)] = 54998, + [SMALL_STATE(1156)] = 55012, + [SMALL_STATE(1157)] = 55026, + [SMALL_STATE(1158)] = 55040, + [SMALL_STATE(1159)] = 55056, + [SMALL_STATE(1160)] = 55070, + [SMALL_STATE(1161)] = 55086, + [SMALL_STATE(1162)] = 55102, + [SMALL_STATE(1163)] = 55118, + [SMALL_STATE(1164)] = 55134, + [SMALL_STATE(1165)] = 55150, + [SMALL_STATE(1166)] = 55166, + [SMALL_STATE(1167)] = 55182, + [SMALL_STATE(1168)] = 55196, + [SMALL_STATE(1169)] = 55206, + [SMALL_STATE(1170)] = 55222, + [SMALL_STATE(1171)] = 55238, + [SMALL_STATE(1172)] = 55252, + [SMALL_STATE(1173)] = 55268, + [SMALL_STATE(1174)] = 55278, + [SMALL_STATE(1175)] = 55292, + [SMALL_STATE(1176)] = 55306, + [SMALL_STATE(1177)] = 55320, + [SMALL_STATE(1178)] = 55334, + [SMALL_STATE(1179)] = 55348, + [SMALL_STATE(1180)] = 55364, + [SMALL_STATE(1181)] = 55377, + [SMALL_STATE(1182)] = 55390, + [SMALL_STATE(1183)] = 55403, + [SMALL_STATE(1184)] = 55416, + [SMALL_STATE(1185)] = 55427, + [SMALL_STATE(1186)] = 55436, + [SMALL_STATE(1187)] = 55445, + [SMALL_STATE(1188)] = 55458, + [SMALL_STATE(1189)] = 55471, + [SMALL_STATE(1190)] = 55484, + [SMALL_STATE(1191)] = 55497, + [SMALL_STATE(1192)] = 55508, + [SMALL_STATE(1193)] = 55521, + [SMALL_STATE(1194)] = 55534, + [SMALL_STATE(1195)] = 55547, + [SMALL_STATE(1196)] = 55556, + [SMALL_STATE(1197)] = 55569, + [SMALL_STATE(1198)] = 55582, + [SMALL_STATE(1199)] = 55595, + [SMALL_STATE(1200)] = 55604, + [SMALL_STATE(1201)] = 55617, + [SMALL_STATE(1202)] = 55630, + [SMALL_STATE(1203)] = 55643, + [SMALL_STATE(1204)] = 55656, + [SMALL_STATE(1205)] = 55669, + [SMALL_STATE(1206)] = 55682, + [SMALL_STATE(1207)] = 55695, + [SMALL_STATE(1208)] = 55708, + [SMALL_STATE(1209)] = 55721, + [SMALL_STATE(1210)] = 55730, + [SMALL_STATE(1211)] = 55743, + [SMALL_STATE(1212)] = 55756, + [SMALL_STATE(1213)] = 55769, + [SMALL_STATE(1214)] = 55782, + [SMALL_STATE(1215)] = 55795, + [SMALL_STATE(1216)] = 55808, + [SMALL_STATE(1217)] = 55821, + [SMALL_STATE(1218)] = 55832, + [SMALL_STATE(1219)] = 55845, + [SMALL_STATE(1220)] = 55858, + [SMALL_STATE(1221)] = 55871, + [SMALL_STATE(1222)] = 55884, + [SMALL_STATE(1223)] = 55895, + [SMALL_STATE(1224)] = 55908, + [SMALL_STATE(1225)] = 55921, + [SMALL_STATE(1226)] = 55934, + [SMALL_STATE(1227)] = 55945, + [SMALL_STATE(1228)] = 55958, + [SMALL_STATE(1229)] = 55969, + [SMALL_STATE(1230)] = 55982, + [SMALL_STATE(1231)] = 55995, + [SMALL_STATE(1232)] = 56008, + [SMALL_STATE(1233)] = 56021, + [SMALL_STATE(1234)] = 56034, + [SMALL_STATE(1235)] = 56047, + [SMALL_STATE(1236)] = 56060, + [SMALL_STATE(1237)] = 56073, + [SMALL_STATE(1238)] = 56086, + [SMALL_STATE(1239)] = 56099, + [SMALL_STATE(1240)] = 56112, + [SMALL_STATE(1241)] = 56125, + [SMALL_STATE(1242)] = 56136, + [SMALL_STATE(1243)] = 56149, + [SMALL_STATE(1244)] = 56162, + [SMALL_STATE(1245)] = 56175, + [SMALL_STATE(1246)] = 56186, + [SMALL_STATE(1247)] = 56199, + [SMALL_STATE(1248)] = 56212, + [SMALL_STATE(1249)] = 56225, + [SMALL_STATE(1250)] = 56238, + [SMALL_STATE(1251)] = 56251, + [SMALL_STATE(1252)] = 56264, + [SMALL_STATE(1253)] = 56277, + [SMALL_STATE(1254)] = 56290, + [SMALL_STATE(1255)] = 56301, + [SMALL_STATE(1256)] = 56312, + [SMALL_STATE(1257)] = 56323, + [SMALL_STATE(1258)] = 56336, + [SMALL_STATE(1259)] = 56349, + [SMALL_STATE(1260)] = 56362, + [SMALL_STATE(1261)] = 56375, + [SMALL_STATE(1262)] = 56388, + [SMALL_STATE(1263)] = 56397, + [SMALL_STATE(1264)] = 56410, + [SMALL_STATE(1265)] = 56423, + [SMALL_STATE(1266)] = 56436, + [SMALL_STATE(1267)] = 56449, + [SMALL_STATE(1268)] = 56462, + [SMALL_STATE(1269)] = 56471, + [SMALL_STATE(1270)] = 56484, + [SMALL_STATE(1271)] = 56497, + [SMALL_STATE(1272)] = 56508, + [SMALL_STATE(1273)] = 56521, + [SMALL_STATE(1274)] = 56534, + [SMALL_STATE(1275)] = 56547, + [SMALL_STATE(1276)] = 56560, + [SMALL_STATE(1277)] = 56573, + [SMALL_STATE(1278)] = 56586, + [SMALL_STATE(1279)] = 56595, + [SMALL_STATE(1280)] = 56608, + [SMALL_STATE(1281)] = 56621, + [SMALL_STATE(1282)] = 56634, + [SMALL_STATE(1283)] = 56643, + [SMALL_STATE(1284)] = 56656, + [SMALL_STATE(1285)] = 56669, + [SMALL_STATE(1286)] = 56682, + [SMALL_STATE(1287)] = 56695, + [SMALL_STATE(1288)] = 56708, + [SMALL_STATE(1289)] = 56717, + [SMALL_STATE(1290)] = 56726, + [SMALL_STATE(1291)] = 56735, + [SMALL_STATE(1292)] = 56748, + [SMALL_STATE(1293)] = 56757, + [SMALL_STATE(1294)] = 56770, + [SMALL_STATE(1295)] = 56783, + [SMALL_STATE(1296)] = 56796, + [SMALL_STATE(1297)] = 56809, + [SMALL_STATE(1298)] = 56822, + [SMALL_STATE(1299)] = 56831, + [SMALL_STATE(1300)] = 56844, + [SMALL_STATE(1301)] = 56857, + [SMALL_STATE(1302)] = 56870, + [SMALL_STATE(1303)] = 56883, + [SMALL_STATE(1304)] = 56896, + [SMALL_STATE(1305)] = 56909, + [SMALL_STATE(1306)] = 56922, + [SMALL_STATE(1307)] = 56935, + [SMALL_STATE(1308)] = 56944, + [SMALL_STATE(1309)] = 56957, + [SMALL_STATE(1310)] = 56970, + [SMALL_STATE(1311)] = 56978, + [SMALL_STATE(1312)] = 56986, + [SMALL_STATE(1313)] = 56994, + [SMALL_STATE(1314)] = 57004, + [SMALL_STATE(1315)] = 57012, + [SMALL_STATE(1316)] = 57020, + [SMALL_STATE(1317)] = 57028, + [SMALL_STATE(1318)] = 57038, + [SMALL_STATE(1319)] = 57046, + [SMALL_STATE(1320)] = 57056, + [SMALL_STATE(1321)] = 57066, + [SMALL_STATE(1322)] = 57074, + [SMALL_STATE(1323)] = 57084, + [SMALL_STATE(1324)] = 57092, + [SMALL_STATE(1325)] = 57100, + [SMALL_STATE(1326)] = 57108, + [SMALL_STATE(1327)] = 57116, + [SMALL_STATE(1328)] = 57124, + [SMALL_STATE(1329)] = 57134, + [SMALL_STATE(1330)] = 57142, + [SMALL_STATE(1331)] = 57150, + [SMALL_STATE(1332)] = 57158, + [SMALL_STATE(1333)] = 57166, + [SMALL_STATE(1334)] = 57174, + [SMALL_STATE(1335)] = 57182, + [SMALL_STATE(1336)] = 57190, + [SMALL_STATE(1337)] = 57200, + [SMALL_STATE(1338)] = 57210, + [SMALL_STATE(1339)] = 57218, + [SMALL_STATE(1340)] = 57228, + [SMALL_STATE(1341)] = 57236, + [SMALL_STATE(1342)] = 57246, + [SMALL_STATE(1343)] = 57256, + [SMALL_STATE(1344)] = 57264, + [SMALL_STATE(1345)] = 57272, + [SMALL_STATE(1346)] = 57282, + [SMALL_STATE(1347)] = 57292, + [SMALL_STATE(1348)] = 57302, + [SMALL_STATE(1349)] = 57312, + [SMALL_STATE(1350)] = 57322, + [SMALL_STATE(1351)] = 57332, + [SMALL_STATE(1352)] = 57342, + [SMALL_STATE(1353)] = 57350, + [SMALL_STATE(1354)] = 57360, + [SMALL_STATE(1355)] = 57370, + [SMALL_STATE(1356)] = 57380, + [SMALL_STATE(1357)] = 57388, + [SMALL_STATE(1358)] = 57396, + [SMALL_STATE(1359)] = 57404, + [SMALL_STATE(1360)] = 57414, + [SMALL_STATE(1361)] = 57422, + [SMALL_STATE(1362)] = 57432, + [SMALL_STATE(1363)] = 57442, + [SMALL_STATE(1364)] = 57450, + [SMALL_STATE(1365)] = 57458, + [SMALL_STATE(1366)] = 57466, + [SMALL_STATE(1367)] = 57476, + [SMALL_STATE(1368)] = 57486, + [SMALL_STATE(1369)] = 57494, + [SMALL_STATE(1370)] = 57502, + [SMALL_STATE(1371)] = 57510, + [SMALL_STATE(1372)] = 57518, + [SMALL_STATE(1373)] = 57526, + [SMALL_STATE(1374)] = 57534, + [SMALL_STATE(1375)] = 57542, + [SMALL_STATE(1376)] = 57552, + [SMALL_STATE(1377)] = 57562, + [SMALL_STATE(1378)] = 57570, + [SMALL_STATE(1379)] = 57578, + [SMALL_STATE(1380)] = 57588, + [SMALL_STATE(1381)] = 57596, + [SMALL_STATE(1382)] = 57604, + [SMALL_STATE(1383)] = 57614, + [SMALL_STATE(1384)] = 57622, + [SMALL_STATE(1385)] = 57630, + [SMALL_STATE(1386)] = 57637, + [SMALL_STATE(1387)] = 57644, + [SMALL_STATE(1388)] = 57651, + [SMALL_STATE(1389)] = 57658, + [SMALL_STATE(1390)] = 57665, + [SMALL_STATE(1391)] = 57672, + [SMALL_STATE(1392)] = 57679, + [SMALL_STATE(1393)] = 57686, + [SMALL_STATE(1394)] = 57693, + [SMALL_STATE(1395)] = 57700, + [SMALL_STATE(1396)] = 57707, + [SMALL_STATE(1397)] = 57714, + [SMALL_STATE(1398)] = 57721, + [SMALL_STATE(1399)] = 57728, + [SMALL_STATE(1400)] = 57735, + [SMALL_STATE(1401)] = 57742, + [SMALL_STATE(1402)] = 57749, + [SMALL_STATE(1403)] = 57756, + [SMALL_STATE(1404)] = 57763, + [SMALL_STATE(1405)] = 57770, + [SMALL_STATE(1406)] = 57777, + [SMALL_STATE(1407)] = 57784, + [SMALL_STATE(1408)] = 57791, + [SMALL_STATE(1409)] = 57798, + [SMALL_STATE(1410)] = 57805, + [SMALL_STATE(1411)] = 57812, + [SMALL_STATE(1412)] = 57819, + [SMALL_STATE(1413)] = 57826, + [SMALL_STATE(1414)] = 57833, + [SMALL_STATE(1415)] = 57840, + [SMALL_STATE(1416)] = 57847, + [SMALL_STATE(1417)] = 57854, + [SMALL_STATE(1418)] = 57861, + [SMALL_STATE(1419)] = 57868, + [SMALL_STATE(1420)] = 57875, + [SMALL_STATE(1421)] = 57882, + [SMALL_STATE(1422)] = 57889, + [SMALL_STATE(1423)] = 57896, + [SMALL_STATE(1424)] = 57903, + [SMALL_STATE(1425)] = 57910, + [SMALL_STATE(1426)] = 57917, + [SMALL_STATE(1427)] = 57924, + [SMALL_STATE(1428)] = 57931, + [SMALL_STATE(1429)] = 57938, + [SMALL_STATE(1430)] = 57945, + [SMALL_STATE(1431)] = 57952, + [SMALL_STATE(1432)] = 57959, + [SMALL_STATE(1433)] = 57966, + [SMALL_STATE(1434)] = 57973, + [SMALL_STATE(1435)] = 57980, + [SMALL_STATE(1436)] = 57987, + [SMALL_STATE(1437)] = 57994, + [SMALL_STATE(1438)] = 58001, + [SMALL_STATE(1439)] = 58008, + [SMALL_STATE(1440)] = 58015, + [SMALL_STATE(1441)] = 58022, + [SMALL_STATE(1442)] = 58029, + [SMALL_STATE(1443)] = 58036, + [SMALL_STATE(1444)] = 58043, + [SMALL_STATE(1445)] = 58050, + [SMALL_STATE(1446)] = 58057, + [SMALL_STATE(1447)] = 58064, + [SMALL_STATE(1448)] = 58071, + [SMALL_STATE(1449)] = 58078, + [SMALL_STATE(1450)] = 58085, + [SMALL_STATE(1451)] = 58092, + [SMALL_STATE(1452)] = 58099, + [SMALL_STATE(1453)] = 58106, + [SMALL_STATE(1454)] = 58113, + [SMALL_STATE(1455)] = 58120, + [SMALL_STATE(1456)] = 58127, + [SMALL_STATE(1457)] = 58134, + [SMALL_STATE(1458)] = 58141, + [SMALL_STATE(1459)] = 58148, + [SMALL_STATE(1460)] = 58155, + [SMALL_STATE(1461)] = 58162, + [SMALL_STATE(1462)] = 58169, + [SMALL_STATE(1463)] = 58176, + [SMALL_STATE(1464)] = 58183, + [SMALL_STATE(1465)] = 58190, + [SMALL_STATE(1466)] = 58197, + [SMALL_STATE(1467)] = 58204, + [SMALL_STATE(1468)] = 58211, + [SMALL_STATE(1469)] = 58218, + [SMALL_STATE(1470)] = 58225, + [SMALL_STATE(1471)] = 58232, + [SMALL_STATE(1472)] = 58239, + [SMALL_STATE(1473)] = 58246, + [SMALL_STATE(1474)] = 58253, + [SMALL_STATE(1475)] = 58260, + [SMALL_STATE(1476)] = 58267, + [SMALL_STATE(1477)] = 58274, + [SMALL_STATE(1478)] = 58281, + [SMALL_STATE(1479)] = 58288, + [SMALL_STATE(1480)] = 58295, + [SMALL_STATE(1481)] = 58302, + [SMALL_STATE(1482)] = 58309, + [SMALL_STATE(1483)] = 58316, + [SMALL_STATE(1484)] = 58323, + [SMALL_STATE(1485)] = 58330, + [SMALL_STATE(1486)] = 58337, + [SMALL_STATE(1487)] = 58344, + [SMALL_STATE(1488)] = 58351, + [SMALL_STATE(1489)] = 58358, + [SMALL_STATE(1490)] = 58365, + [SMALL_STATE(1491)] = 58372, + [SMALL_STATE(1492)] = 58379, + [SMALL_STATE(1493)] = 58386, + [SMALL_STATE(1494)] = 58393, + [SMALL_STATE(1495)] = 58400, + [SMALL_STATE(1496)] = 58407, + [SMALL_STATE(1497)] = 58414, + [SMALL_STATE(1498)] = 58421, + [SMALL_STATE(1499)] = 58428, + [SMALL_STATE(1500)] = 58435, + [SMALL_STATE(1501)] = 58442, + [SMALL_STATE(1502)] = 58449, + [SMALL_STATE(1503)] = 58456, + [SMALL_STATE(1504)] = 58463, + [SMALL_STATE(1505)] = 58470, + [SMALL_STATE(1506)] = 58477, + [SMALL_STATE(1507)] = 58484, + [SMALL_STATE(1508)] = 58491, + [SMALL_STATE(1509)] = 58498, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -71205,1525 +72711,1551 @@ static const TSParseActionEntry ts_parse_actions[] = { [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(331), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), - [115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(331), - [118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1152), - [121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(997), - [124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(153), - [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(351), - [130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(72), - [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(374), - [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(194), - [139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(224), - [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(168), - [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1301), - [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1305), - [151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1292), - [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(389), - [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(241), - [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(561), - [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(375), - [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1408), - [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(291), - [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(66), - [175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(644), - [178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(157), - [181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(164), - [184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(353), - [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1379), - [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1397), - [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1461), - [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(256), - [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(301), - [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1474), - [205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(367), - [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(368), - [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(850), - [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(178), - [217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(773), - [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(773), - [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(134), - [226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(891), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(439), - [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(239), - [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(564), - [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(440), - [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1447), - [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(303), - [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(67), - [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1469), - [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1450), - [258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), - [262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(197), - [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .production_id = 1), REDUCE(sym_primary_expression, 1, .production_id = 1), - [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(402), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, .production_id = 1), - [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(675), - [280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(204), - [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(353), - [288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(432), - [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .production_id = 1), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_list_splat_pattern, 2, .production_id = 8), - [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, .production_id = 8), - [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, .production_id = 8), - [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 1), - [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 3, .production_id = 16), - [662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 3, .production_id = 16), - [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2, .production_id = 7), - [678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 2, .production_id = 7), - [680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 3, .production_id = 16), - [682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, .production_id = 7), - [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 1), - [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, .production_id = 24), - [740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 3, .production_id = 50), - [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, .production_id = 123), - [746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, .production_id = 123), - [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 3, .production_id = 16), - [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1), - [780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, .production_id = 122), - [782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, .production_id = 122), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 7, .production_id = 141), - [792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 7, .production_id = 141), - [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2, .production_id = 7), - [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 98), - [810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 5, .production_id = 98), - [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression_list, 3, .production_id = 16), - [816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression_list, 2, .production_id = 7), - [818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 70), - [820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 70), - [822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 40), - [824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, .production_id = 40), - [826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, .production_id = 33), - [828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, .production_id = 81), - [830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, .production_id = 81), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), - [846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 56), - [848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 56), - [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 54), - [884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 54), - [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 3), - [890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 3), - [892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 76), - [894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 76), - [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 77), - [900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 77), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2), - [908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2), - [910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 4), - [912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 4), - [914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1), - [916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1), - [918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(344), - [925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, .production_id = 69), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 102), - [935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 102), - [937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2), - [939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2), - [941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2), SHIFT_REPEAT(1463), - [944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2), SHIFT_REPEAT(1381), - [947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(319), - [950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1), - [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 100), - [972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 100), - [974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 100), SHIFT_REPEAT(406), - [977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, .production_id = 10), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, .production_id = 68), - [983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, .production_id = 69), - [985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3), - [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), - [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, .production_id = 95), - [993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, .production_id = 28), - [995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, .production_id = 29), - [997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 100), SHIFT_REPEAT(441), - [1000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2), - [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [1006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 8, .production_id = 165), - [1008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 8, .production_id = 165), - [1010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cases, 1), - [1012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cases, 1), - [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), - [1016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), - [1018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_list_splat_pattern, 2, .production_id = 9), - [1021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [1025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, .production_id = 9), - [1027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, .production_id = 9), - [1029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cases_repeat1, 2), - [1031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cases_repeat1, 2), - [1033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cases_repeat1, 2), SHIFT_REPEAT(809), - [1036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 3, .production_id = 56), - [1038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 3, .production_id = 56), - [1040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, .production_id = 81), - [1042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, .production_id = 81), - [1044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, .production_id = 130), - [1046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, .production_id = 130), - [1048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 5, .production_id = 147), - [1050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 5, .production_id = 147), - [1052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, .production_id = 148), - [1054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, .production_id = 148), - [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 6, .production_id = 157), - [1058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 6, .production_id = 157), - [1060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, .production_id = 158), - [1062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, .production_id = 158), - [1064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 7, .production_id = 163), - [1066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 7, .production_id = 163), - [1068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7, .production_id = 164), - [1070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7, .production_id = 164), - [1072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1), REDUCE(sym_primary_expression, 1), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [1077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1), - [1079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [1083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cases_repeat1, 2), SHIFT_REPEAT(810), - [1086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 80), - [1088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 80), - [1090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, .production_id = 55), - [1092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, .production_id = 55), - [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, .production_id = 56), - [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, .production_id = 56), - [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [1104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), - [1106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_list_pattern, 2), REDUCE(sym_list, 2), - [1109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), - [1111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2), - [1113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2), - [1115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 105), - [1117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 105), - [1119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, .production_id = 81), - [1121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, .production_id = 81), - [1123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 125), - [1125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 125), - [1127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 129), - [1129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 129), - [1131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, .production_id = 54), - [1133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, .production_id = 54), - [1135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 143), - [1137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 143), - [1139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, .production_id = 77), - [1141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, .production_id = 77), - [1143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 74), - [1145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 74), - [1147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2), - [1149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), REDUCE(sym_tuple, 2), - [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2), - [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), - [1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), - [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 6, .production_id = 159), - [1160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 6, .production_id = 159), - [1162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, .production_id = 56), - [1164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, .production_id = 56), - [1166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 4, .production_id = 134), - [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 4, .production_id = 134), - [1170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, .production_id = 81), - [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, .production_id = 81), - [1174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 5, .production_id = 150), - [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 5, .production_id = 150), - [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 5, .production_id = 151), - [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 5, .production_id = 151), - [1182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, .production_id = 138), - [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 138), - [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 124), - [1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 124), - [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 4, .production_id = 57), - [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 4, .production_id = 57), - [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, .production_id = 90), - [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, .production_id = 90), - [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, .production_id = 60), - [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, .production_id = 60), - [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, .production_id = 64), - [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, .production_id = 64), - [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 126), - [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, .production_id = 126), - [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 127), - [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, .production_id = 127), - [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 128), - [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 128), - [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 75), - [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 75), - [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, .production_id = 19), - [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, .production_id = 19), - [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, .production_id = 78), - [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, .production_id = 78), - [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 79), - [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 79), - [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, .production_id = 91), - [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, .production_id = 91), - [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 3, .production_id = 50), - [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, .production_id = 82), - [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, .production_id = 82), - [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, .production_id = 87), - [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, .production_id = 87), - [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, .production_id = 89), - [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, .production_id = 89), - [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 99), - [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 99), - [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 101), - [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 101), - [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 6, .production_id = 103), - [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 6, .production_id = 103), - [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, .production_id = 104), - [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 104), - [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, .production_id = 59), - [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, .production_id = 59), - [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, .production_id = 106), - [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, .production_id = 106), - [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 3, .production_id = 56), - [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 3, .production_id = 56), - [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, .production_id = 56), - [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, .production_id = 56), - [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 4, .production_id = 81), - [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 4, .production_id = 81), - [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, .production_id = 114), - [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 114), - [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, .production_id = 115), - [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 115), - [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, .production_id = 116), - [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, .production_id = 116), - [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, .production_id = 117), - [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, .production_id = 117), - [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, .production_id = 118), - [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, .production_id = 118), - [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 7, .production_id = 81), - [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 7, .production_id = 81), - [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 137), - [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, .production_id = 137), - [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, .production_id = 139), - [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, .production_id = 139), - [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 142), - [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 142), - [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, .production_id = 144), - [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, .production_id = 144), - [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, .production_id = 145), - [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, .production_id = 145), - [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 146), - [1336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 146), - [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, .production_id = 152), - [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, .production_id = 152), - [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, .production_id = 153), - [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, .production_id = 153), - [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 154), - [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 154), - [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, .production_id = 155), - [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, .production_id = 155), - [1354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, .production_id = 156), - [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, .production_id = 156), - [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, .production_id = 161), - [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, .production_id = 161), - [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, .production_id = 162), - [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, .production_id = 162), - [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, .production_id = 24), - [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), - [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), - [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [1378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(892), - [1381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, .production_id = 2), - [1383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, .production_id = 2), - [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_separator, 1), - [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [1393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, .production_id = 20), - [1395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, .production_id = 20), - [1397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, .production_id = 61), - [1399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, .production_id = 61), - [1401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3, .production_id = 25), - [1403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3, .production_id = 25), - [1405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, .production_id = 31), - [1407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, .production_id = 31), - [1409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3), - [1411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3), - [1413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, .production_id = 67), - [1415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, .production_id = 67), - [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, .production_id = 31), - [1419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, .production_id = 31), - [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5, .production_id = 61), - [1423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5, .production_id = 61), - [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), - [1427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), - [1429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3, .production_id = 31), - [1431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3, .production_id = 31), - [1433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_comprehension, 4, .production_id = 51), - [1435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_comprehension, 4, .production_id = 51), - [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, .production_id = 51), - [1439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, .production_id = 51), - [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, .production_id = 25), - [1443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, .production_id = 25), - [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, .production_id = 51), - [1447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, .production_id = 51), - [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_expression, 4, .production_id = 51), - [1451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_expression, 4, .production_id = 51), - [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [1459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, .production_id = 31), - [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, .production_id = 31), - [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, .production_id = 61), - [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, .production_id = 61), - [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, .production_id = 17), - [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, .production_id = 17), - [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, .production_id = 26), - [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, .production_id = 26), - [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, .production_id = 67), - [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, .production_id = 67), - [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, .production_id = 93), - [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, .production_id = 93), - [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2), - [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2), - [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set, 3, .production_id = 25), - [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set, 3, .production_id = 25), - [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, .production_id = 61), - [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, .production_id = 61), - [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, .production_id = 93), - [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, .production_id = 93), - [1551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), - [1553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), - [1555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, .production_id = 39), - [1557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, .production_id = 39), - [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 41), - [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 41), - [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, .production_id = 13), - [1571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, .production_id = 13), - [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 71), - [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 71), - [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 72), - [1581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 72), - [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await, 2), - [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await, 2), - [1587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(903), - [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [1628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(891), - [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [1685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open_sequence_match_pattern, 2), - [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_sequence_match_pattern, 2), - [1689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open_sequence_match_pattern, 3), - [1691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_sequence_match_pattern, 3), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), - [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [1711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, .production_id = 18), - [1713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, .production_id = 18), - [1715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), - [1717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(663), - [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), - [1722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(1361), - [1725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(663), - [1728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(619), - [1731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(682), - [1734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(1396), - [1737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(682), - [1740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(607), - [1743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, .production_id = 36), - [1745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, .production_id = 36), SHIFT_REPEAT(568), - [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, .production_id = 25), - [1750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(687), - [1753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(1451), - [1756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(687), - [1759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(617), - [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, .production_id = 25), - [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, .production_id = 34), - [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, .production_id = 31), - [1768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(637), - [1771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(1394), - [1774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(637), - [1777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(610), - [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2, .production_id = 16), - [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2), - [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3), - [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, .production_id = 10), - [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, .production_id = 10), - [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_value_pattern_repeat1, 2), - [1836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_value_pattern_repeat1, 2), SHIFT_REPEAT(1400), - [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, .production_id = 39), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1, .production_id = 7), - [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_class_name, 2), - [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_value_pattern, 2), - [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 2), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 27), - [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 3, .production_id = 32), - [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 35), - [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_expression, 3, .production_id = 27), - [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 4, .production_id = 66), - [1883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 3, .production_id = 32), - [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_expression, 3, .production_id = 35), - [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5), - [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, .production_id = 39), - [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_class_name, 1), - [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_capture_pattern, 1), - [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [1897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_item, 1, .dynamic_precedence = -1, .production_id = 12), SHIFT(174), - [1900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [1902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 4, .production_id = 66), - [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 1), - [1906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5), - [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [1914] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 1, .production_id = 83), - [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 2, .production_id = 107), - [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2, .production_id = 14), - [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3), - [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, .production_id = 31), - [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2), - [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [1964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, .production_id = 21), SHIFT_REPEAT(171), - [1967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, .production_id = 21), SHIFT_REPEAT(1009), - [1970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, .production_id = 21), SHIFT_REPEAT(1009), - [1973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, .production_id = 21), - [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_within_for_in_clause, 1), - [1977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_or_pattern_repeat1, 2), - [1979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_or_pattern_repeat1, 2), SHIFT_REPEAT(826), - [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_or_pattern, 3), - [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1), - [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_or_pattern, 4), - [1992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__f_expression, 1), - [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), - [1996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(369), - [1999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(1425), - [2002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(563), - [2005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2), - [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 2), - [2009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 5), - [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, .production_id = 36), - [2013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, .production_id = 36), SHIFT_REPEAT(240), - [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 5), - [2018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2), - [2020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2), SHIFT_REPEAT(309), - [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 4, .production_id = 136), - [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 122), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, .production_id = 16), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 5, .production_id = 136), - [2041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 4), - [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [2045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 6), - [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 123), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [2055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2), - [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 4), - [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 6, .production_id = 136), - [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, .production_id = 98), - [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 7), - [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_group_pattern, 3, .production_id = 131), - [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 3), - [2073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 7, .production_id = 136), - [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 3), - [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 8, .production_id = 136), - [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 9, .production_id = 136), - [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 3, .production_id = 132), - [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2), - [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 2), - [2097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 4, .production_id = 149), - [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, .production_id = 141), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 3, .production_id = 136), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_or_pattern, 1), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [2129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), - [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2), - [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 3, .production_id = 32), - [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 4, .production_id = 15), - [2141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 62), - [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, .production_id = 31), - [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 1, .dynamic_precedence = -1, .production_id = 12), - [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [2149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2), - [2151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2), SHIFT_REPEAT(988), - [2154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2), SHIFT_REPEAT(988), - [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2), - [2159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 4, .production_id = 66), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2, .production_id = 11), - [2177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [2193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, .production_id = 10), - [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__right_hand_side, 1), - [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_content, 1), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), - [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [2215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, .production_id = 3), - [2217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, .production_id = 3), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [2221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_as_pattern, 3, .production_id = 135), - [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2), - [2229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, .production_id = 10), - [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2), - [2233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2), SHIFT_REPEAT(367), - [2236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, .production_id = 4), - [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, .production_id = 4), - [2240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, .production_id = 35), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [2244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, .production_id = 43), - [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, .production_id = 43), - [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_bound, 2, .production_id = 109), - [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [2254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_value_pattern_repeat1, 2), SHIFT_REPEAT(1453), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_open_sequence_match_pattern_repeat1, 2), - [2261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_open_sequence_match_pattern_repeat1, 2), SHIFT_REPEAT(821), - [2264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1), - [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, .production_id = 68), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chevron, 2), - [2272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, .production_id = 43), - [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, .production_id = 43), - [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, .production_id = 119), - [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, .production_id = 95), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [2284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 6, .production_id = 43), - [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 6, .production_id = 43), - [2288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, .production_id = 43), - [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, .production_id = 43), - [2292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__index_expression, 1), - [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [2296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 1, .production_id = 6), - [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [2312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_star_pattern, 2, .production_id = 11), - [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 3, .production_id = 22), - [2316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, .production_id = 6), - [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, .production_id = 36), - [2320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, .production_id = 36), SHIFT_REPEAT(225), - [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_param_default, 2, .production_id = 110), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, .production_id = 6), - [2339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, .production_id = 120), - [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, .production_id = 121), - [2343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 1), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, .production_id = 16), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, .production_id = 30), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4, .production_id = 53), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 5, .production_id = 88), - [2377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 2), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, .production_id = 27), - [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, .production_id = 35), - [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, .production_id = 31), - [2387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, .production_id = 36), SHIFT_REPEAT(244), - [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, .production_id = 94), - [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [2396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2), - [2398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2), SHIFT_REPEAT(175), - [2401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2), SHIFT_REPEAT(1080), - [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5, .production_id = 140), - [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 4, .production_id = 63), - [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevartuple_parameter, 2, .production_id = 23), - [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [2426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), SHIFT_REPEAT(426), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, .production_id = 28), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, .production_id = 29), - [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 2), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2), - [2451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2), SHIFT_REPEAT(345), - [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paramspec_parameter, 2, .production_id = 23), - [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, .production_id = 22), - [2464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_prefix, 1), - [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 2, .production_id = 84), - [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 3), - [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 3), - [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 5, .production_id = 15), - [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3), - [2486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, .production_id = 49), - [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 1, .production_id = 7), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 2), - [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_guard, 2, .production_id = 133), - [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 23), - [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [2502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 44), SHIFT_REPEAT(1271), - [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 44), - [2507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, .production_id = 52), SHIFT_REPEAT(405), - [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, .production_id = 52), - [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1), - [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [2526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_prefix_repeat1, 2), - [2528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2), SHIFT_REPEAT(1138), - [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, .production_id = 65), - [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [2543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2), SHIFT_REPEAT(1415), - [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2), - [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, .production_id = 16), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 37), - [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_separator, 1), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [2580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 3, .dynamic_precedence = -1, .production_id = 58), - [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), - [2586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), SHIFT_REPEAT(862), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [2607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relative_import, 1), - [2609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_mapping_pattern_repeat1, 2), SHIFT_REPEAT(864), - [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_mapping_pattern_repeat1, 2), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat1, 2), - [2630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat1, 2), SHIFT_REPEAT(823), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .production_id = 86), - [2647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 44), SHIFT_REPEAT(1176), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [2658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, .production_id = 36), SHIFT_REPEAT(273), - [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, .production_id = 36), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [2675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), SHIFT_REPEAT(861), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 1), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression_list, 2, .production_id = 16), - [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat2, 2), - [2696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat2, 2), SHIFT_REPEAT(1353), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [2703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 1, .production_id = 73), - [2705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 1, .production_id = 73), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), - [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .production_id = 112), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [2747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 113), SHIFT_REPEAT(981), - [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 113), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [2764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2), SHIFT_REPEAT(133), - [2767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2), - [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [2771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, .production_id = 45), - [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [2777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, .production_id = 36), - [2779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, .production_id = 36), SHIFT_REPEAT(218), - [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_maybe_star_pattern, 1), - [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_patterns, 1), - [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 2, .production_id = 15), - [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [2820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_index_expression_list_repeat1, 2, .production_id = 36), SHIFT_REPEAT(235), - [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_expression_list_repeat1, 2, .production_id = 36), - [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [2853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 2, .production_id = 85), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [2861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [2865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard_import, 1), - [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1), - [2869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, .production_id = 47), - [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 4, .production_id = 46), - [2873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [2877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, .production_id = 48), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_double_star_pattern, 2, .production_id = 11), - [2885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pass_statement, 1), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, .production_id = 92), - [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1), - [2895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), - [2897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_key_value_pattern, 3, .production_id = 62), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevartuple_parameter, 3, .production_id = 108), - [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paramspec_parameter, 3, .production_id = 108), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, .production_id = 67), - [2911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_expression_list_repeat1, 2, .production_id = 31), - [2939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), - [2941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, .production_id = 31), - [2943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 6, .production_id = 96), - [2945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 6, .production_id = 97), - [2947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_positional_pattern, 1), - [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 38), - [2951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, .production_id = 39), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [2955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_keyword_pattern, 3, .production_id = 160), - [2957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 3, .production_id = 111), - [2959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 86), - [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, .production_id = 5), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_import, 2, .production_id = 23), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [3019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [3027] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [3061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [3097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [3163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(440), + [112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1113), + [115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1013), + [118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(153), + [121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(389), + [124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(111), + [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(388), + [130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(186), + [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(225), + [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(177), + [139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1314), + [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1315), + [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1316), + [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(373), + [151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(298), + [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(448), + [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(325), + [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1479), + [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(269), + [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(67), + [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(589), + [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(155), + [175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(161), + [178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(346), + [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1501), + [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1493), + [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1492), + [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(381), + [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(397), + [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1482), + [199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(351), + [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(317), + [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(869), + [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(178), + [211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(760), + [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(760), + [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(134), + [220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), + [222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(926), + [225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(907), + [228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1), + [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(329), + [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(299), + [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(456), + [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(333), + [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1496), + [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(281), + [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(66), + [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1494), + [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1491), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), + [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(191), + [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .production_id = 1), REDUCE(sym_primary_expression, 1, .production_id = 1), + [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(337), + [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, .production_id = 1), + [282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(615), + [285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(189), + [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(346), + [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(338), + [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), + [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .production_id = 1), + [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_list_splat_pattern, 2, .production_id = 8), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, .production_id = 8), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, .production_id = 8), + [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 1), + [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 3, .production_id = 16), + [677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 3, .production_id = 16), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2, .production_id = 7), + [687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 2, .production_id = 7), + [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, .production_id = 7), + [703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 3, .production_id = 16), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 3, .production_id = 50), + [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, .production_id = 24), + [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 1), + [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 7, .production_id = 141), + [759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 7, .production_id = 141), + [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 3, .production_id = 16), + [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, .production_id = 123), + [785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, .production_id = 123), + [787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, .production_id = 122), + [789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, .production_id = 122), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 98), + [797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 5, .production_id = 98), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2, .production_id = 7), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression_list, 3, .production_id = 16), + [825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, .production_id = 33), + [827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression_list, 2, .production_id = 7), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 56), + [849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 56), + [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1), + [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 70), + [863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 70), + [865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 40), + [867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, .production_id = 40), + [869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, .production_id = 69), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, .production_id = 81), + [875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, .production_id = 81), + [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, .production_id = 10), + [909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, .production_id = 68), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, .production_id = 29), + [915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, .production_id = 28), + [917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, .production_id = 69), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, .production_id = 95), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2), + [927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3), + [929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), + [931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), + [933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(267), + [936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 76), + [938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 76), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 77), + [944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 77), + [946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2), + [948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2), + [950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2), SHIFT_REPEAT(1495), + [953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(277), + [956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2), + [958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2), + [960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 3), + [966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 3), + [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 54), + [982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 54), + [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 4), + [988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 4), + [990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1), + [992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1), + [994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2), SHIFT_REPEAT(1429), + [997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 102), + [999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 102), + [1001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 100), + [1003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 100), + [1005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 100), SHIFT_REPEAT(365), + [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [1010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 100), SHIFT_REPEAT(318), + [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [1019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cases, 1), + [1021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cases, 1), + [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [1025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 7, .production_id = 163), + [1027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 7, .production_id = 163), + [1029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7, .production_id = 164), + [1031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7, .production_id = 164), + [1033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, .production_id = 130), + [1035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, .production_id = 130), + [1037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, .production_id = 148), + [1039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, .production_id = 148), + [1041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 5, .production_id = 147), + [1043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 5, .production_id = 147), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [1047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 6, .production_id = 157), + [1049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 6, .production_id = 157), + [1051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, .production_id = 158), + [1053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, .production_id = 158), + [1055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 8, .production_id = 165), + [1057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 8, .production_id = 165), + [1059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, .production_id = 81), + [1061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, .production_id = 81), + [1063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cases_repeat1, 2), + [1065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cases_repeat1, 2), + [1067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cases_repeat1, 2), SHIFT_REPEAT(728), + [1070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 3, .production_id = 56), + [1072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 3, .production_id = 56), + [1074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cases_repeat1, 2), SHIFT_REPEAT(733), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [1079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, .production_id = 81), + [1081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, .production_id = 81), + [1083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), + [1085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_list_splat_pattern, 2, .production_id = 9), + [1088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), + [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [1092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, .production_id = 9), + [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, .production_id = 9), + [1096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 74), + [1098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 74), + [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 125), + [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 125), + [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, .production_id = 77), + [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, .production_id = 77), + [1108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, .production_id = 55), + [1110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, .production_id = 55), + [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 129), + [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 129), + [1116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 3, .production_id = 50), + [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [1120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 105), + [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 105), + [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, .production_id = 56), + [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, .production_id = 56), + [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 80), + [1130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 80), + [1132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, .production_id = 54), + [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, .production_id = 54), + [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 143), + [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 143), + [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, .production_id = 24), + [1142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1), REDUCE(sym_primary_expression, 1), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [1147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1), + [1149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [1153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), + [1155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_list_pattern, 2), REDUCE(sym_list, 2), + [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), + [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2), + [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2), + [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 6, .production_id = 159), + [1166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 6, .production_id = 159), + [1168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2), + [1170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), REDUCE(sym_tuple, 2), + [1173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2), + [1175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), + [1177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), + [1179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 5, .production_id = 151), + [1181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 5, .production_id = 151), + [1183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 5, .production_id = 150), + [1185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 5, .production_id = 150), + [1187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, .production_id = 81), + [1189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, .production_id = 81), + [1191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, .production_id = 56), + [1193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, .production_id = 56), + [1195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 4, .production_id = 134), + [1197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 4, .production_id = 134), + [1199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, .production_id = 90), + [1201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, .production_id = 90), + [1203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, .production_id = 145), + [1205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, .production_id = 145), + [1207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, .production_id = 144), + [1209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, .production_id = 144), + [1211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 3, .production_id = 56), + [1213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 3, .production_id = 56), + [1215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 142), + [1217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 142), + [1219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, .production_id = 139), + [1221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, .production_id = 139), + [1223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, .production_id = 138), + [1225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 138), + [1227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, .production_id = 64), + [1229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, .production_id = 64), + [1231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, .production_id = 137), + [1233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 137), + [1235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 7, .production_id = 81), + [1237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 7, .production_id = 81), + [1239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 4, .production_id = 81), + [1241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 4, .production_id = 81), + [1243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 128), + [1245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 128), + [1247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, .production_id = 60), + [1249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, .production_id = 60), + [1251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, .production_id = 162), + [1253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, .production_id = 162), + [1255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, .production_id = 127), + [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 127), + [1259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, .production_id = 126), + [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 126), + [1263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 124), + [1265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 124), + [1267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, .production_id = 118), + [1269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, .production_id = 118), + [1271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, .production_id = 117), + [1273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, .production_id = 117), + [1275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, .production_id = 116), + [1277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, .production_id = 116), + [1279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, .production_id = 115), + [1281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 115), + [1283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, .production_id = 114), + [1285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 114), + [1287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, .production_id = 161), + [1289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, .production_id = 161), + [1291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, .production_id = 56), + [1293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, .production_id = 56), + [1295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, .production_id = 156), + [1297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, .production_id = 156), + [1299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 75), + [1301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 75), + [1303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, .production_id = 155), + [1305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, .production_id = 155), + [1307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, .production_id = 106), + [1309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, .production_id = 106), + [1311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, .production_id = 152), + [1313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, .production_id = 152), + [1315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, .production_id = 78), + [1317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, .production_id = 78), + [1319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 4, .production_id = 57), + [1321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 4, .production_id = 57), + [1323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, .production_id = 153), + [1325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, .production_id = 153), + [1327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, .production_id = 104), + [1329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 104), + [1331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 79), + [1333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 79), + [1335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 6, .production_id = 103), + [1337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 6, .production_id = 103), + [1339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 101), + [1341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 101), + [1343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 99), + [1345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 99), + [1347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, .production_id = 19), + [1349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, .production_id = 19), + [1351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, .production_id = 82), + [1353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, .production_id = 82), + [1355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, .production_id = 59), + [1357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, .production_id = 59), + [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 146), + [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 146), + [1363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, .production_id = 91), + [1365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, .production_id = 91), + [1367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 154), + [1369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 154), + [1371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, .production_id = 89), + [1373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, .production_id = 89), + [1375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, .production_id = 87), + [1377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, .production_id = 87), + [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [1381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_separator, 1), + [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_template_string_repeat1, 2), + [1389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_template_string_repeat1, 2), + [1391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_template_string_repeat1, 2), SHIFT_REPEAT(916), + [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_template_string, 2), + [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_template_string, 2), + [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), + [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), + [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [1406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(913), + [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, .production_id = 20), + [1419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, .production_id = 20), + [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3, .production_id = 20), + [1423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3, .production_id = 20), + [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, .production_id = 2), + [1427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, .production_id = 2), + [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, .production_id = 2), + [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, .production_id = 2), + [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3), + [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3), + [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3, .production_id = 25), + [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3, .production_id = 25), + [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, .production_id = 61), + [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, .production_id = 61), + [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, .production_id = 61), + [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, .production_id = 61), + [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, .production_id = 51), + [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, .production_id = 51), + [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, .production_id = 31), + [1461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, .production_id = 31), + [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, .production_id = 61), + [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, .production_id = 61), + [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_comprehension, 4, .production_id = 51), + [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_comprehension, 4, .production_id = 51), + [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_expression, 4, .production_id = 51), + [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_expression, 4, .production_id = 51), + [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, .production_id = 51), + [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, .production_id = 51), + [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, .production_id = 93), + [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, .production_id = 93), + [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, .production_id = 67), + [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, .production_id = 67), + [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, .production_id = 17), + [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, .production_id = 17), + [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, .production_id = 31), + [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, .production_id = 31), + [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5, .production_id = 61), + [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5, .production_id = 61), + [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, .production_id = 93), + [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, .production_id = 93), + [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), + [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), + [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2), + [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2), + [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), + [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), + [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, .production_id = 67), + [1571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, .production_id = 67), + [1573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, .production_id = 31), + [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, .production_id = 31), + [1577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), + [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), + [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set, 3, .production_id = 25), + [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set, 3, .production_id = 25), + [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3, .production_id = 31), + [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3, .production_id = 31), + [1589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, .production_id = 26), + [1591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, .production_id = 26), + [1593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, .production_id = 25), + [1595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, .production_id = 25), + [1597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, .production_id = 39), + [1599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, .production_id = 39), + [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 41), + [1603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 41), + [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 71), + [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 71), + [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 72), + [1611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 72), + [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await, 2), + [1615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await, 2), + [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, .production_id = 13), + [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, .production_id = 13), + [1621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_template_string_repeat1, 2), SHIFT_REPEAT(915), + [1624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(906), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [1629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_template_string_repeat1, 2), SHIFT_REPEAT(907), + [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [1662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(926), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [1715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open_sequence_match_pattern, 3), + [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_sequence_match_pattern, 3), + [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [1721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open_sequence_match_pattern, 2), + [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_sequence_match_pattern, 2), + [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), + [1747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(596), + [1750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), + [1752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(1399), + [1755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(596), + [1758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(578), + [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, .production_id = 18), + [1763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, .production_id = 18), + [1765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(583), + [1768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(1417), + [1771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(583), + [1774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(576), + [1777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, .production_id = 36), + [1779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, .production_id = 36), SHIFT_REPEAT(482), + [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, .production_id = 25), + [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, .production_id = 31), + [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [1794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(607), + [1797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(1483), + [1800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(607), + [1803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(577), + [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, .production_id = 25), + [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, .production_id = 34), + [1812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(598), + [1815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(1424), + [1818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(598), + [1821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(575), + [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2, .production_id = 16), + [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3), + [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2), + [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, .production_id = 10), + [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, .production_id = 10), + [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_value_pattern_repeat1, 2), + [1870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_value_pattern_repeat1, 2), SHIFT_REPEAT(1418), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_class_name, 1), + [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_capture_pattern, 1), + [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 27), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_expression, 3, .production_id = 27), + [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 2), + [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1, .production_id = 7), + [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 3, .production_id = 32), + [1911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 3, .production_id = 32), + [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 4, .production_id = 66), + [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5), + [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 1), + [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 35), + [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_expression, 3, .production_id = 35), + [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, .production_id = 39), + [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, .production_id = 39), + [1927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5), + [1929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_class_name, 2), + [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_value_pattern, 2), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [1935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_item, 1, .dynamic_precedence = -1, .production_id = 12), SHIFT(176), + [1938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 4, .production_id = 66), + [1942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2, .production_id = 14), + [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 1, .production_id = 83), + [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [1976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, .production_id = 21), SHIFT_REPEAT(172), + [1979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, .production_id = 21), SHIFT_REPEAT(1037), + [1982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, .production_id = 21), SHIFT_REPEAT(1037), + [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, .production_id = 21), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 2, .production_id = 107), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [2009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, .production_id = 31), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [2017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_within_for_in_clause, 1), + [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_or_pattern, 4), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_or_pattern, 3), + [2033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__f_expression, 1), + [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), + [2037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(375), + [2040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(1498), + [2043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(449), + [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2), + [2048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_or_pattern_repeat1, 2), + [2050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_or_pattern_repeat1, 2), SHIFT_REPEAT(842), + [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 3, .production_id = 136), + [2055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_group_pattern, 3, .production_id = 131), + [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 2), + [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 4), + [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 4, .production_id = 136), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 5), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 5), + [2073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 5, .production_id = 136), + [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, .production_id = 36), + [2077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, .production_id = 36), SHIFT_REPEAT(235), + [2080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 4, .production_id = 149), + [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 4), + [2096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 6), + [2098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 2), + [2100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 6, .production_id = 136), + [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2), + [2104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 7), + [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 7, .production_id = 136), + [2108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, .production_id = 98), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [2112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 8, .production_id = 136), + [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 9, .production_id = 136), + [2116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2), + [2118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2), SHIFT_REPEAT(270), + [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, .production_id = 141), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_or_pattern, 1), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, .production_id = 16), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 3), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 122), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 123), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [2151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2), + [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 3, .production_id = 132), + [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 3), + [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, .production_id = 31), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 1, .dynamic_precedence = -1, .production_id = 12), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2, .production_id = 11), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 62), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 4, .production_id = 15), + [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [2205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, .production_id = 10), + [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [2213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [2221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 3, .production_id = 32), + [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1), + [2225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 4, .production_id = 66), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__right_hand_side, 1), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [2241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [2251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2), + [2253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2), SHIFT_REPEAT(1035), + [2256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2), SHIFT_REPEAT(1035), + [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_content, 1), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1), + [2273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_value_pattern_repeat1, 2), SHIFT_REPEAT(1486), + [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1), + [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__index_expression, 1), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_bound, 2, .production_id = 109), + [2288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, .production_id = 43), + [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, .production_id = 43), + [2292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2), + [2294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2), SHIFT_REPEAT(351), + [2297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, .production_id = 3), + [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, .production_id = 3), + [2301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2), + [2303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, .production_id = 43), + [2305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, .production_id = 43), + [2307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, .production_id = 68), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [2315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chevron, 2), + [2317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, .production_id = 4), + [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, .production_id = 4), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [2323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, .production_id = 43), + [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, .production_id = 43), + [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_open_sequence_match_pattern_repeat1, 2), + [2329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_open_sequence_match_pattern_repeat1, 2), SHIFT_REPEAT(807), + [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, .production_id = 35), + [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, .production_id = 119), + [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_as_pattern, 3, .production_id = 135), + [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 1, .production_id = 6), + [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [2344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exception_list_repeat1, 2, .production_id = 31), + [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [2350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 6, .production_id = 43), + [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 6, .production_id = 43), + [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), + [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, .production_id = 10), + [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, .production_id = 95), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [2362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2), + [2364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2), SHIFT_REPEAT(173), + [2367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2), SHIFT_REPEAT(1072), + [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_param_default, 2, .production_id = 110), + [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, .production_id = 16), + [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, .production_id = 6), + [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, .production_id = 30), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, .production_id = 120), + [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_star_pattern, 2, .production_id = 11), + [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, .production_id = 121), + [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5, .production_id = 140), + [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4, .production_id = 53), + [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, .production_id = 27), + [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 4, .production_id = 63), + [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 5, .production_id = 88), + [2424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, .production_id = 36), SHIFT_REPEAT(230), + [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 3, .production_id = 22), + [2429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 1), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, .production_id = 36), + [2437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, .production_id = 36), SHIFT_REPEAT(224), + [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, .production_id = 94), + [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, .production_id = 31), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [2446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 2), + [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, .production_id = 6), + [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, .production_id = 35), + [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2), + [2464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), SHIFT_REPEAT(356), + [2467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, .production_id = 52), SHIFT_REPEAT(339), + [2470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, .production_id = 52), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [2474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_prefix_repeat1, 2), + [2476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2), SHIFT_REPEAT(1114), + [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2), + [2481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2), SHIFT_REPEAT(288), + [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, .production_id = 16), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, .production_id = 65), + [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, .production_id = 49), + [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, .production_id = 28), + [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, .production_id = 29), + [2512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 44), SHIFT_REPEAT(1244), + [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 44), + [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 23), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, .production_id = 22), + [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3), + [2525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2), SHIFT_REPEAT(1411), + [2528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [2544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 2), + [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 2), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [2556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exception_list_repeat1, 2, .production_id = 36), SHIFT_REPEAT(340), + [2559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exception_list_repeat1, 2, .production_id = 36), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 3), + [2565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 3), + [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_guard, 2, .production_id = 133), + [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 5, .production_id = 15), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [2591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_prefix, 1), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3), + [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevartuple_parameter, 2, .production_id = 23), + [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paramspec_parameter, 2, .production_id = 23), + [2605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 2, .production_id = 84), + [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 1, .production_id = 7), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [2611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_list, 2, .production_id = 16), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [2617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, .production_id = 36), SHIFT_REPEAT(253), + [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, .production_id = 36), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_maybe_star_pattern, 1), + [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_patterns, 1), + [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .production_id = 86), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, .production_id = 36), + [2658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, .production_id = 36), SHIFT_REPEAT(212), + [2661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2), SHIFT_REPEAT(133), + [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [2670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_index_expression_list_repeat1, 2, .production_id = 36), SHIFT_REPEAT(226), + [2673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_expression_list_repeat1, 2, .production_id = 36), + [2675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_mapping_pattern_repeat1, 2), SHIFT_REPEAT(870), + [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_mapping_pattern_repeat1, 2), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [2710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [2712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [2714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 44), SHIFT_REPEAT(1190), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 37), + [2721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relative_import, 1), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [2733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [2757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 1), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [2777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 113), SHIFT_REPEAT(1004), + [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 113), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [2790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 1, .production_id = 73), + [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 1, .production_id = 73), + [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 2, .production_id = 15), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression_list, 2, .production_id = 16), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_separator, 1), + [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), + [2848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), SHIFT_REPEAT(878), + [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [2855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), SHIFT_REPEAT(877), + [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, .production_id = 45), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .production_id = 112), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat2, 2), + [2892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat2, 2), SHIFT_REPEAT(1351), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 3, .dynamic_precedence = -1, .production_id = 58), + [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat1, 2), + [2907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat1, 2), SHIFT_REPEAT(839), + [2910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 6, .production_id = 97), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [2916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pass_statement, 1), + [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1), + [2920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevartuple_parameter, 3, .production_id = 108), + [2928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paramspec_parameter, 3, .production_id = 108), + [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 3, .production_id = 111), + [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_keyword_pattern, 3, .production_id = 160), + [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 86), + [2936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), + [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, .production_id = 48), + [2940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, .production_id = 47), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard_import, 1), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 4, .production_id = 46), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, .production_id = 5), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [2982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, .production_id = 39), + [2984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 38), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [2996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), + [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 2, .production_id = 85), + [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, .production_id = 92), + [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), + [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, .production_id = 67), + [3008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_double_star_pattern, 2, .production_id = 11), + [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_expression_list_repeat1, 2, .production_id = 31), + [3012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_positional_pattern, 1), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [3016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, .production_id = 31), + [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 6, .production_id = 96), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [3022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_key_value_pattern, 3, .production_id = 62), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [3042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [3096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [3172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [3194] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [3196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_import, 2, .production_id = 23), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [3224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3), }; #ifdef __cplusplus @@ -72776,7 +74308,6 @@ extern const TSLanguage *tree_sitter_python(void) { tree_sitter_python_external_scanner_serialize, tree_sitter_python_external_scanner_deserialize, }, - .primary_state_ids = ts_primary_state_ids, }; return &language; } diff --git a/python/extractor/tsg-python/tsp/src/scanner.cc b/python/extractor/tsg-python/tsp/src/scanner.cc index 3b253919c66e..ce8bbf94b6a2 100644 --- a/python/extractor/tsg-python/tsp/src/scanner.cc +++ b/python/extractor/tsg-python/tsp/src/scanner.cc @@ -17,6 +17,7 @@ enum TokenType { STRING_START, STRING_CONTENT, STRING_END, + TEMPLATE_STRING_START, }; struct Delimiter { @@ -28,6 +29,7 @@ struct Delimiter { Format = 1 << 4, Triple = 1 << 5, Bytes = 1 << 6, + Template = 1 << 7, }; Delimiter() : flags(0) {} @@ -36,6 +38,14 @@ struct Delimiter { return flags & Format; } + bool is_template() const { + return flags & Template; + } + + bool can_interpolate() const { + return is_format() || is_template(); + } + bool is_raw() const { return flags & Raw; } @@ -59,6 +69,10 @@ struct Delimiter { flags |= Format; } + void set_template() { + flags |= Template; + } + void set_raw() { flags |= Raw; } @@ -154,7 +168,7 @@ struct Scanner { int32_t end_character = delimiter.end_character(); bool has_content = false; while (lexer->lookahead) { - if ((lexer->lookahead == '{' || lexer->lookahead == '}') && delimiter.is_format()) { + if ((lexer->lookahead == '{' || lexer->lookahead == '}') && delimiter.can_interpolate()) { lexer->mark_end(lexer); lexer->result_symbol = STRING_CONTENT; return has_content; @@ -322,13 +336,17 @@ struct Scanner { } } - if (first_comment_indent_length == -1 && valid_symbols[STRING_START]) { + bool expects_string_start = valid_symbols[STRING_START] || valid_symbols[TEMPLATE_STRING_START]; + + if (first_comment_indent_length == -1 && expects_string_start) { Delimiter delimiter; bool has_flags = false; while (lexer->lookahead) { if (lexer->lookahead == 'f' || lexer->lookahead == 'F') { delimiter.set_format(); + } else if (lexer->lookahead == 't' || lexer->lookahead == 'T') { + delimiter.set_template(); } else if (lexer->lookahead == 'r' || lexer->lookahead == 'R') { delimiter.set_raw(); } else if (lexer->lookahead == 'b' || lexer->lookahead == 'B') { @@ -372,7 +390,7 @@ struct Scanner { if (delimiter.end_character()) { delimiter_stack.push_back(delimiter); - lexer->result_symbol = STRING_START; + lexer->result_symbol = delimiter.is_template() ? TEMPLATE_STRING_START : STRING_START; return true; } else if (has_flags) { return false; 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..cbbc7b4ee3c5 100644 --- a/python/extractor/tsg-python/tsp/src/tree_sitter/parser.h +++ b/python/extractor/tsg-python/tsp/src/tree_sitter/parser.h @@ -123,7 +123,6 @@ struct TSLanguage { unsigned (*serialize)(void *, char *); void (*deserialize)(void *, const char *, unsigned); } external_scanner; - const TSStateId *primary_state_ids; }; /* diff --git a/python/ql/lib/change-notes/2025-12-04-support-template-string-literals.md b/python/ql/lib/change-notes/2025-12-04-support-template-string-literals.md new file mode 100644 index 000000000000..1c4fc58c09b7 --- /dev/null +++ b/python/ql/lib/change-notes/2025-12-04-support-template-string-literals.md @@ -0,0 +1,4 @@ +--- +category: feature +--- +* The Python extractor now supports template strings as defined in [PEP-750](https://peps.python.org/pep-0750/), through the classes `TemplateString` and `JoinedTemplateString`. diff --git a/python/ql/lib/change-notes/2025-12-09-python-support-relaxed-except-syntax.md b/python/ql/lib/change-notes/2025-12-09-python-support-relaxed-except-syntax.md new file mode 100644 index 000000000000..f4091725cbcc --- /dev/null +++ b/python/ql/lib/change-notes/2025-12-09-python-support-relaxed-except-syntax.md @@ -0,0 +1,4 @@ +--- +category: feature +--- +* The extractor now supports the new, relaxed syntax `except A, B, C: ...` (which would previously have to be written as `except (A, B, C): ...`) as defined in [PEP-758](https://peps.python.org/pep-0758/). diff --git a/python/ql/lib/semmle/python/AstExtended.qll b/python/ql/lib/semmle/python/AstExtended.qll index 9b6059dceae4..73292b85c3a8 100644 --- a/python/ql/lib/semmle/python/AstExtended.qll +++ b/python/ql/lib/semmle/python/AstExtended.qll @@ -218,6 +218,9 @@ class DictItemListParent extends DictItemListParent_ { } /** A list of strings (the primitive type string not Bytes or Unicode) */ class StringList extends StringList_ { } +/** A list of template strings. */ +class TemplateStringList extends TemplateStringList_ { } + /** A list of aliases in an import statement */ class AliasList extends AliasList_ { } @@ -273,3 +276,9 @@ class ParamSpec extends ParamSpec_, TypeParameter { override Expr getAChildNode() { result = this.getName() } } + +/** A template string literal. */ +class TemplateString extends TemplateString_, Expr { } + +/** An (implicitly) concatenated list of template strings. */ +class JoinedTemplateString extends JoinedTemplateString_, Expr { } diff --git a/python/ql/lib/semmle/python/AstGenerated.qll b/python/ql/lib/semmle/python/AstGenerated.qll index e672cda001dd..12f868323878 100644 --- a/python/ql/lib/semmle/python/AstGenerated.qll +++ b/python/ql/lib/semmle/python/AstGenerated.qll @@ -768,6 +768,20 @@ class Fstring_ extends @py_Fstring, Expr { override string toString() { result = "Fstring" } } +/** INTERNAL: See the class `JoinedTemplateString` for further information. */ +class JoinedTemplateString_ extends @py_JoinedTemplateString, Expr { + /** Gets the strings of this joined template string. */ + TemplateStringList getStrings() { py_TemplateString_lists(result, this) } + + /** Gets the nth string of this joined template string. */ + TemplateString getString(int index) { result = this.getStrings().getItem(index) } + + /** Gets a string of this joined template string. */ + TemplateString getAString() { result = this.getStrings().getAnItem() } + + override string toString() { result = "JoinedTemplateString" } +} + /** INTERNAL: See the class `KeyValuePair` for further information. */ class KeyValuePair_ extends @py_KeyValuePair, DictItem { /** Gets the location of this key-value pair. */ @@ -1373,6 +1387,48 @@ class TemplateDottedNotation_ extends @py_TemplateDottedNotation, Expr { override string toString() { result = "TemplateDottedNotation" } } +/** INTERNAL: See the class `TemplateString` for further information. */ +class TemplateString_ extends @py_TemplateString, Expr { + /** Gets the prefix of this template string literal. */ + string getPrefix() { py_strs(result, this, 2) } + + /** Gets the values of this template string literal. */ + ExprList getValues() { py_expr_lists(result, this, 3) } + + /** Gets the nth value of this template string literal. */ + Expr getValue(int index) { result = this.getValues().getItem(index) } + + /** Gets a value of this template string literal. */ + Expr getAValue() { result = this.getValues().getAnItem() } + + override ExprParent getParent() { py_exprs(this, _, result, _) } + + override string toString() { result = "TemplateString" } +} + +/** INTERNAL: See the class `TemplateStringPart` for further information. */ +class TemplateStringPart_ extends @py_TemplateStringPart, Expr { + /** Gets the text of this string part of a template string. */ + string getText() { py_strs(result, this, 2) } + + override string toString() { result = "TemplateStringPart" } +} + +/** INTERNAL: See the class `TemplateStringList` for further information. */ +class TemplateStringList_ extends @py_TemplateString_list { + /** Gets a parent of this template string literal list */ + JoinedTemplateString getParent() { py_TemplateString_lists(this, result) } + + /** Gets an item of this template string literal list */ + Expr getAnItem() { py_exprs(result, _, this, _) } + + /** Gets the nth item of this template string literal list */ + Expr getItem(int index) { py_exprs(result, _, this, index) } + + /** Gets a textual representation of this element. */ + string toString() { result = "TemplateStringList" } +} + /** INTERNAL: See the class `TemplateWrite` for further information. */ class TemplateWrite_ extends @py_TemplateWrite, Stmt { /** Gets the value of this template write statement. */ diff --git a/python/ql/lib/semmlecode.python.dbscheme b/python/ql/lib/semmlecode.python.dbscheme index acf8d3b08ae3..8d257a4a9bc7 100644 --- a/python/ql/lib/semmlecode.python.dbscheme +++ b/python/ql/lib/semmlecode.python.dbscheme @@ -530,6 +530,10 @@ py_extracted_version(int module : @py_Module ref, /* Fstring.values = 2, expr_list */ /* Fstring = FormattedValue */ +/* JoinedTemplateString.location = 0, location */ +/* JoinedTemplateString.parenthesised = 1, bool */ +/* JoinedTemplateString.strings = 2, TemplateString_list */ + /* KeyValuePair.location = 0, location */ /* KeyValuePair.value = 1, expr */ /* KeyValuePair.key = 2, expr */ @@ -709,6 +713,17 @@ py_extracted_version(int module : @py_Module ref, /* TemplateDottedNotation.attr = 3, str */ /* TemplateDottedNotation.ctx = 4, expr_context */ +/* TemplateString.location = 0, location */ +/* TemplateString.parenthesised = 1, bool */ +/* TemplateString.prefix = 2, str */ +/* TemplateString.values = 3, expr_list */ +/* TemplateString = TemplateStringList */ + +/* TemplateStringPart.location = 0, location */ +/* TemplateStringPart.parenthesised = 1, bool */ +/* TemplateStringPart.text = 2, str */ +/* TemplateStringList = JoinedTemplateString */ + /* TemplateWrite.location = 0, location */ /* TemplateWrite.value = 1, expr */ @@ -835,6 +850,9 @@ py_StringParts(unique int id : @py_StringPart, py_StringPart_lists(unique int id : @py_StringPart_list, unique int parent : @py_Bytes_or_Str ref); +py_TemplateString_lists(unique int id : @py_TemplateString_list, + unique int parent : @py_JoinedTemplateString ref); + py_aliases(unique int id : @py_alias, int parent : @py_alias_list ref, int idx : int ref); @@ -1010,7 +1028,10 @@ case @py_expr.kind of | 36 = @py_Fstring | 37 = @py_FormattedValue | 38 = @py_AssignExpr -| 39 = @py_SpecialOperation; +| 39 = @py_SpecialOperation +| 40 = @py_TemplateString +| 41 = @py_JoinedTemplateString +| 42 = @py_TemplateStringPart; case @py_expr_context.kind of 0 = @py_AugLoad @@ -1105,11 +1126,11 @@ case @py_unaryop.kind of @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_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_TemplateString | @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_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_TemplateString_list | @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; @@ -1125,7 +1146,7 @@ case @py_unaryop.kind of @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_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_TemplateString | @py_TemplateStringPart | @py_keyword | @py_str_list; @py_type_parameter_list_parent = @py_ClassExpr | @py_Function | @py_TypeAlias; diff --git a/python/ql/lib/semmlecode.python.dbscheme.stats b/python/ql/lib/semmlecode.python.dbscheme.stats index a4060cf9b8e6..2805763a54f5 100644 --- a/python/ql/lib/semmlecode.python.dbscheme.stats +++ b/python/ql/lib/semmlecode.python.dbscheme.stats @@ -5,6 +5,10 @@ @py_TypeVar100 @py_TypeVarTuple100 @py_type_parameter_list100 + @py_TemplateStringPart100 + @py_TemplateString_list100 + @py_JoinedTemplateString100 + @py_TemplateString100 @py_Guard100 @py_MatchAsPattern100 @py_MatchOrPattern100 @@ -7959,6 +7963,21 @@ +py_TemplateString_lists +1000 + + +id +1000 + + +parent +1000 + + + + + py_aliases 21374 diff --git a/python/ql/lib/upgrades/acf8d3b08ae3cfac8833d16efbfa5a10fef86819/old.dbscheme b/python/ql/lib/upgrades/acf8d3b08ae3cfac8833d16efbfa5a10fef86819/old.dbscheme new file mode 100644 index 000000000000..acf8d3b08ae3 --- /dev/null +++ b/python/ql/lib/upgrades/acf8d3b08ae3cfac8833d16efbfa5a10fef86819/old.dbscheme @@ -0,0 +1,1261 @@ +/* + * 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 +); + +/*- Overlay support -*/ + +/** + * The CLI will automatically emit the tuple `databaseMetadata("isOverlay", "true")`, + * along with an `overlayChangedFiles` tuple for each new/modified/deleted file, + * when building an overlay database, and these can be used by the discard predicates. + */ +databaseMetadata( + string metadataKey : string ref, + string value : string ref +); + +overlayChangedFiles( + string path : 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; + +/** The union of all Python database entities */ +@top = + @py_source_element | @py_object | @py_base_var | @location | @py_line | @py_comment | + @py_expr_parent | @py_expr_context | + @py_operator | @py_boolop | @py_cmpop | @py_unaryop | + @py_cmpop_list | @py_alias_list | @py_StringPart_list | @py_comprehension_list | @py_dict_item_list | @py_pattern_list | @py_stmt_list | @py_str_list | @py_type_parameter_list | + @externalDefect | @externalMetric | @externalDataElement | @duplication_or_similarity | @svnentry | + @xmllocatable | @yaml_locatable; diff --git a/python/ql/lib/upgrades/acf8d3b08ae3cfac8833d16efbfa5a10fef86819/semmlecode.python.dbscheme b/python/ql/lib/upgrades/acf8d3b08ae3cfac8833d16efbfa5a10fef86819/semmlecode.python.dbscheme new file mode 100644 index 000000000000..8d257a4a9bc7 --- /dev/null +++ b/python/ql/lib/upgrades/acf8d3b08ae3cfac8833d16efbfa5a10fef86819/semmlecode.python.dbscheme @@ -0,0 +1,1282 @@ +/* + * 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 +); + +/*- Overlay support -*/ + +/** + * The CLI will automatically emit the tuple `databaseMetadata("isOverlay", "true")`, + * along with an `overlayChangedFiles` tuple for each new/modified/deleted file, + * when building an overlay database, and these can be used by the discard predicates. + */ +databaseMetadata( + string metadataKey : string ref, + string value : string ref +); + +overlayChangedFiles( + string path : 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 */ + +/* JoinedTemplateString.location = 0, location */ +/* JoinedTemplateString.parenthesised = 1, bool */ +/* JoinedTemplateString.strings = 2, TemplateString_list */ + +/* 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 */ + +/* TemplateString.location = 0, location */ +/* TemplateString.parenthesised = 1, bool */ +/* TemplateString.prefix = 2, str */ +/* TemplateString.values = 3, expr_list */ +/* TemplateString = TemplateStringList */ + +/* TemplateStringPart.location = 0, location */ +/* TemplateStringPart.parenthesised = 1, bool */ +/* TemplateStringPart.text = 2, str */ +/* TemplateStringList = JoinedTemplateString */ + +/* 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_TemplateString_lists(unique int id : @py_TemplateString_list, + unique int parent : @py_JoinedTemplateString 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 +| 40 = @py_TemplateString +| 41 = @py_JoinedTemplateString +| 42 = @py_TemplateStringPart; + +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_TemplateString | @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_TemplateString_list | @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_TemplateString | @py_TemplateStringPart | @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; + +/** The union of all Python database entities */ +@top = + @py_source_element | @py_object | @py_base_var | @location | @py_line | @py_comment | + @py_expr_parent | @py_expr_context | + @py_operator | @py_boolop | @py_cmpop | @py_unaryop | + @py_cmpop_list | @py_alias_list | @py_StringPart_list | @py_comprehension_list | @py_dict_item_list | @py_pattern_list | @py_stmt_list | @py_str_list | @py_type_parameter_list | + @externalDefect | @externalMetric | @externalDataElement | @duplication_or_similarity | @svnentry | + @xmllocatable | @yaml_locatable; diff --git a/python/ql/lib/upgrades/acf8d3b08ae3cfac8833d16efbfa5a10fef86819/upgrade.properties b/python/ql/lib/upgrades/acf8d3b08ae3cfac8833d16efbfa5a10fef86819/upgrade.properties new file mode 100644 index 000000000000..292cb3af6191 --- /dev/null +++ b/python/ql/lib/upgrades/acf8d3b08ae3cfac8833d16efbfa5a10fef86819/upgrade.properties @@ -0,0 +1,2 @@ +description: Add support for template string literals +compatibility: backwards