diff --git a/grammar.js b/grammar.js index 2273fd1..3caa112 100644 --- a/grammar.js +++ b/grammar.js @@ -1,16 +1,68 @@ /// // @ts-check +/** + * Waltzing Template Engine - Tree-sitter Grammar + * + * VALIDATION RULES (enforced by the compiler, not this grammar): + * + * 1. Reserved variable names - Variables named `__wtz_target` or `out` declared + * via `@let` are not allowed. This includes: + * - Direct @let declarations: @let out = "value" + * - For loop iterators: @for out in items + * - Tuple patterns: @for (a, out) in items + * - If-let patterns: @if let Some(out) = opt + * - Match arm patterns: @match status { Some(out) => { ... } } + * Workaround: Use @(out) to reference a variable with that name. + * + * 2. Function name conflicts - If a function `foo` exists, you cannot also + * have `foo_to_stream` (and vice versa). This prevents conflicts with + * the auto-generated streaming functions. + * + * 3. Special keywords (NEW SYNTAX - recommended): + * - @Out - Output target type (includes &mut): &mut _WtzTarget + * - @out - Output reference (includes &mut): &mut __wtz_buffer or __wtz_target + * - @render(T1, T2, ...) - Render callback type: impl Fn(T1, T2, ..., &mut _WtzTarget) + * + * 4. Special keywords (DEPRECATED - still supported): + * - @Target - Compiler-injected type (resolves to _WtzTarget or _WtzWriter) + * - @target - Compiler-injected variable (resolves to __wtz_buffer or __wtz_target) + * + * These rules apply only to @let template variables and @fn template functions, + * not to CSS or JavaScript code. + */ + +// REGEN STATUS — read before touching this grammar. +// +// `src/parser.c`, `src/grammar.json`, and `src/node-types.json` are generated +// from this file with tree-sitter-cli v0.25.10. Regeneration is expected to +// complete quickly on local hardware (last checked: 0.60s, <90 MB RSS). +// +// The previous grammar shape made `tree-sitter generate` explore an enormous +// LR/error-recovery state space. The important constraints that keep regen +// reliable are: +// • All template-content bodies go through `_template_nodes`. +// • HTML void elements are explicit; ordinary `` starts a full element. +// • Function tags require `/>` for self-closing form. +// • Rust expressions are intentionally opaque (`rust_expression`) except for +// literals, paths, inferred enum variants, template blocks, and render +// closures. The Waltzing compiler validates Rust expression semantics. +// • Multi-depth template comments/raw blocks are not modeled as 22 token +// variants; the common one-delimiter forms are tokenized for editor use. +// +// If any of those constraints are relaxed, run `tree-sitter generate` before +// committing and watch memory/time. A return to multi-GB RSS means the grammar +// has reintroduced exponential table construction. + module.exports = grammar({ name: "waltzing", extras: ($) => [/\s/], conflicts: ($) => [ - [$.expression, $.pattern], - [$.rust_path, $.expression], - [$.html_element], - [$.self_closing_function_tag, $.container_function_tag], + // `|x|` — could be closure that returns `|x|` (no return type) or that's + // about to declare a `-> T` return type. cli 0.25 needs both parses. + [$.closure_type], ], rules: { @@ -119,7 +171,9 @@ module.exports = grammar({ default_value: ($) => $.expression, - content_block: ($) => seq("{", repeat($.template_node), "}"), + content_block: ($) => seq("{", optional($._template_nodes), "}"), + + _template_nodes: ($) => repeat1($.template_node), // Template nodes // Note: template_control_flow must come before template_expression @@ -144,14 +198,14 @@ module.exports = grammar({ // Self-closing tag seq("<", $.tag_name, repeat($.attribute_or_control), "/", ">"), // Void elements (no closing tag needed) - seq("<", $.tag_name, repeat($.attribute_or_control), ">"), + seq("<", alias($.void_tag_name, $.tag_name), repeat($.attribute_or_control), optional("/"), ">"), // Full element with content and closing tag seq( "<", $.tag_name, repeat($.attribute_or_control), ">", - repeat($.template_node), + optional($._template_nodes), "", @@ -161,8 +215,8 @@ module.exports = grammar({ // Allow either HTML attributes or control flow (@if/@for) in attribute position attribute_or_control: ($) => choice( - $.html_attribute, $.attribute_control_flow, + $.html_attribute, ), // Control flow in attribute context - produces attributes conditionally @@ -195,11 +249,34 @@ module.exports = grammar({ tag_name: ($) => /[a-zA-Z][a-zA-Z0-9-]*/, + void_tag_name: ($) => + token(prec(1, choice( + "area", + "base", + "br", + "col", + "embed", + "hr", + "img", + "input", + "link", + "meta", + "param", + "source", + "track", + "wbr", + ))), + html_attribute: ($) => seq($.attribute_name, optional(seq("=", $.attribute_value))), - // Attribute names: allow @ for directives like @click, but not @if/@for/@let - attribute_name: ($) => /[a-zA-Z_:@][a-zA-Z0-9_:.-]*/, + // Attribute names: allow @ directives like @click, while keeping @if/@for + // visible as `@` + keyword tokens for attribute_control_flow. + attribute_name: ($) => + choice( + /[a-zA-Z_:][a-zA-Z0-9_:.-]*/, + seq("@", /[a-zA-Z_][a-zA-Z0-9_:.-]*/), + ), attribute_value: ($) => choice( @@ -210,7 +287,21 @@ module.exports = grammar({ // Template expressions template_expression: ($) => - choice($.simple_expression, $.complex_expression, $.safe_expression), + choice( + $.simple_expression, + $.complex_expression, + $.safe_expression, + $.format_expression, + $.matches_expression, + $.out_ref, + $.target_ref, + ), + + // Compiler-injected output reference - resolves to &mut __wtz_buffer or __wtz_target + out_ref: ($) => seq("@", "out"), + + // Compiler-injected target reference - DEPRECATED, use out_ref + target_ref: ($) => seq("@", "target"), // High-precedence token to match @identifier before @for/@if etc keywords simple_expression: ($) => @@ -231,6 +322,60 @@ module.exports = grammar({ ")", ), + // Format expression: @format("template {}", arg1, arg2, ...) + // Compiles to Rust's format!() macro. + format_expression: ($) => + seq( + "@", + "format", + "(", + $.string_literal, + repeat(seq(",", $.expression)), + ")", + ), + + // Matches expression: @matches(value, pattern) or @matches(value, pattern if guard) + // Compiles to Rust's matches!() macro. + matches_expression: ($) => + seq( + "@", + "matches", + "(", + $.expression, + ",", + $.pattern, + optional(seq("if", $.expression)), + ")", + ), + + // Inferred enum path: ::Variant — the enum type is resolved from the + // surrounding context (function parameter type). Tokenized so `::` and + // the variant name parse as one unit. + inferred_enum_path: ($) => + token(seq("::", /[a-zA-Z_][a-zA-Z0-9_]*/)), + + // Inferred enum tuple variant: ::Variant(arg1, arg2, ...) + inferred_enum_call: ($) => + prec(4, seq($.inferred_enum_path, "(", optional($.argument_list), ")")), + + // Inferred enum struct variant: ::Variant { field: value, ... } + inferred_enum_struct: ($) => + prec( + 4, + seq( + $.inferred_enum_path, + "{", + optional(seq( + $.struct_field_init, + repeat(seq(",", $.struct_field_init)), + optional(","), + )), + "}", + ), + ), + + struct_field_init: ($) => seq($.identifier, ":", $.expression), + expression_path: ($) => seq( $.identifier, @@ -256,9 +401,13 @@ module.exports = grammar({ ), // Let binding: @let name = expression - // Use simple_pattern to avoid confusion with if/match expressions containing { } + // Use simple_pattern to avoid confusion with if/match expressions + // containing { }. The `prec(3)` outranks `simple_expression`'s prec(2) + // macro form so that `@let n` commits to let_statement rather than + // parsing `@let` as `simple_expression` (= `@` + identifier `let`) and + // leaving the `= 42` orphaned. let_statement: ($) => - seq(seq("@", "let"), $.simple_pattern, "=", $.expression), + prec(3, seq(seq("@", "let"), $.simple_pattern, "=", $.expression, optional(";"))), if_statement: ($) => seq( @@ -318,7 +467,7 @@ module.exports = grammar({ "<@", $.function_path, repeat($.function_attribute), - optional("/"), + "/", ">", ), @@ -328,7 +477,7 @@ module.exports = grammar({ $.function_path, repeat($.function_attribute), ">", - repeat($.template_node), + optional($._template_nodes), "", @@ -357,7 +506,7 @@ module.exports = grammar({ boolean_attribute: ($) => $.identifier, function_attribute_value: ($) => - choice($.string_literal, seq("@", $.expression_path), $.unquoted_value), + choice($.string_literal, seq("@", $.expression_path), $.render_closure, $.unquoted_value), unquoted_value: ($) => /[^\s>=\/]+/, @@ -365,6 +514,7 @@ module.exports = grammar({ pattern: ($) => choice( $.wildcard_pattern, + $.tuple_variant_pattern, $.tuple_pattern, $.struct_pattern, $.literal, @@ -395,169 +545,64 @@ module.exports = grammar({ field_pattern: ($) => seq($.identifier, optional(seq(":", $.pattern))), + tuple_variant_pattern: ($) => + seq( + $.rust_path, + "(", + optional(seq($.pattern, repeat(seq(",", $.pattern)), optional(","))), + ")", + ), + tuple_pattern: ($) => seq("(", $.pattern, repeat(seq(",", $.pattern)), optional(","), ")"), // Expressions + // + // Rust expressions are intentionally kept mostly opaque here. Earlier + // versions modeled Rust expressions recursively (`binary_expression`, + // `method_call`, `statement_block`, etc.), but that gave the LR generator + // too many paths across every Waltzing template-content boundary. The + // compiler remains the authority for Rust expression validity; this grammar + // only needs a stable editor tree around the template syntax. expression: ($) => - choice($.binary_expression, $.unary_expression, $.primary_expression), - - binary_expression: ($) => - prec.left(1, seq($.expression, $.binary_operator, $.expression)), - - unary_expression: ($) => prec(2, seq($.unary_operator, $.expression)), + choice( + $.template_block, + $.render_closure, + $.primary_expression, + ), primary_expression: ($) => choice( - // if/match expressions must come first to match the keywords before rust_path - $.if_expression, - $.match_expression, $.literal, - $.macro_call, - $.method_call, - $.field_access, - $.index_access, - $.parenthesized_expression, - $.array_literal, - $.closure_expression, - // rust_path last as fallback for identifiers + $.inferred_enum_call, + $.inferred_enum_struct, + $.inferred_enum_path, $.rust_path, + $.rust_expression, ), - // If expression (returns a value): if cond { expr } else { expr } - if_expression: ($) => - prec.right( - 10, - seq( - "if", - $.expression, - "{", - $.expression, - "}", - "else", - choice( - $.if_expression, - seq("{", $.expression, "}"), - ), - ), - ), + rust_expression: ($) => + token(prec(-1, /[^{}<@,;)\]\s][^{}<@,;)\]]*/)), - // Match expression (returns a value): match expr { pat => expr, ... } - match_expression: ($) => - prec.right( - 10, - seq( - "match", - $.expression, - "{", - repeat($.expression_match_arm), - "}", - ), - ), + // Template block - explicit template content in expression position + // Use @{ ... } to create template content as an expression + // Example: @let html = @{
Hello
} + template_block: ($) => seq("@", "{", optional($._template_nodes), "}"), - expression_match_arm: ($) => + // Render closure - inline closure that writes to output target + // Generates: |params..., __wtz_target: &mut _WtzTarget| { template_content } + // Auto-threading: calling a @() variable automatically appends @out + render_closure: ($) => seq( - $.pattern, - optional(seq("if", $.expression)), - "=>", - $.expression, - optional(","), + "@", + "(", + optional(seq($.parameter, repeat(seq(",", $.parameter)))), + ")", + $.content_block, ), - - // Rust macro calls: format!(), vec![], println!(), etc. - macro_call: ($) => - prec( - 5, - seq( - $.identifier, - "!", - choice( - seq("(", optional($.macro_args), ")"), - seq("[", optional($.macro_args), "]"), - seq("{", optional($.macro_args), "}"), - ), - ), - ), - - // Macro arguments - macro_args: ($) => - seq( - $.macro_arg, - repeat(seq(",", $.macro_arg)), - optional(","), - ), - - // Macro argument - just use expression - macro_arg: ($) => $.expression, - - method_call: ($) => - prec.left( - 3, - seq( - $.primary_expression, - ".", - $.identifier, - "(", - optional($.argument_list), - ")", - ), - ), - - field_access: ($) => - prec.left(3, seq($.primary_expression, ".", $.identifier)), - - index_access: ($) => - prec.left(3, seq($.primary_expression, "[", $.expression, "]")), - - parenthesized_expression: ($) => seq("(", $.expression, ")"), - - array_literal: ($) => - seq( - "[", - optional( - seq($.expression, repeat(seq(",", $.expression)), optional(",")), - ), - "]", - ), - - closure_expression: ($) => - seq( - "|", - optional($.closure_params), - "|", - choice($.expression, $.content_block), - ), - - closure_params: ($) => seq($.identifier, repeat(seq(",", $.identifier))), - argument_list: ($) => seq($.expression, repeat(seq(",", $.expression)), optional(",")), - // Operators - binary_operator: ($) => - choice( - "+", - "-", - "*", - "/", - "%", - "==", - "!=", - "<", - ">", - "<=", - ">=", - "&&", - "||", - "&", - "|", - "^", - "<<", - ">>", - ), - - unary_operator: ($) => choice("!", "-", "*", "&"), - // Literals literal: ($) => choice( @@ -599,8 +644,39 @@ module.exports = grammar({ $.tuple_type, $.array_type, $.slice_type, + $.closure_type, + $.render_type, + $.out_type, + $.target_type, ), + // Closure type: |[name: ]Type, ...| [-> ReturnType] + closure_type: ($) => + seq( + "|", + optional(seq($.closure_param, repeat(seq(",", $.closure_param)))), + "|", + optional(seq("->", $.rust_type)), + ), + + closure_param: ($) => + seq(optional(seq($.identifier, ":")), $.rust_type), + + // Compiler-injected render callback type - generates impl Fn(T1, T2, ..., &mut _WtzTarget) + // Full syntax: @render(T1, T2, ...) + // Shorthand: @() or @(T1, T2) - equivalent to @render()/@render(T1, T2) + render_type: ($) => + choice( + seq("@", "render", "(", optional(seq($.rust_type, repeat(seq(",", $.rust_type)))), ")"), + seq("@", "(", optional(seq($.rust_type, repeat(seq(",", $.rust_type)))), ")"), + ), + + // Compiler-injected output type - generates &mut _WtzTarget + out_type: ($) => seq("@", "Out"), + + // Compiler-injected target type - DEPRECATED, use out_type + target_type: ($) => seq("@", "Target"), + primitive_type: ($) => choice( "i8", @@ -646,10 +722,13 @@ module.exports = grammar({ // Comments comment: ($) => choice($.template_comment, $.html_comment), - // Template comments: @* ... *@ with varying asterisk counts - template_comment: ($) => choice( - ...Array.from({ length: 22 }, (_, i) => $[`template_comment_${i + 1}`]) - ), + // Template comments: @* ... *@. + // + // The compiler supports arbitrary delimiter depth (`@** ... **@`, etc.), + // but modeling each depth as a separate token made error-recovery table + // construction explode. Keep the common editor token here; deeper comments + // still parse as ordinary text/error recovery until a scanner is added. + template_comment: ($) => $.template_comment_1, template_comment_1: ($) => /@\*([^*]|\*[^@])*\*@/, template_comment_2: ($) => /@\*\*([^*]|\*[^*]|\*\*[^@])*\*\*@/, template_comment_3: ($) => /@\*\*\*([^*]|\*[^*]|\*\*[^*]|\*\*\*[^@])*\*\*\*@/, @@ -676,10 +755,11 @@ module.exports = grammar({ // HTML comment: html_comment: ($) => //, - // Raw blocks: @# ... #@ with varying hash counts - raw_block: ($) => choice( - ...Array.from({ length: 22 }, (_, i) => $[`raw_block_${i + 1}`]) - ), + // Raw blocks: @# ... #@. + // + // See template_comment: deeper delimiter variants are compiler-supported, + // but keeping 22 separate tokens prevents reliable parser regeneration. + raw_block: ($) => $.raw_block_1, raw_block_1: ($) => /@#([^#]|#[^@])*#@/, raw_block_2: ($) => /@##([^#]|#[^#]|##[^@])*##@/, raw_block_3: ($) => /@###([^#]|#{1,2}[^#]|###[^@])*###@/, diff --git a/package-lock.json b/package-lock.json index e7d388e..97819c5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -12,7 +12,7 @@ "nan": "^2.17.0" }, "devDependencies": { - "tree-sitter-cli": "^0.24.0" + "tree-sitter-cli": "^0.25.10" } }, "node_modules/nan": { @@ -22,9 +22,9 @@ "license": "MIT" }, "node_modules/tree-sitter-cli": { - "version": "0.24.7", - "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.24.7.tgz", - "integrity": "sha512-o4gnE82pVmMMhJbWwD6+I9yr4lXii5Ci5qEQ2pFpUbVy1YiD8cizTJaqdcznA0qEbo7l2OneI1GocChPrI4YGQ==", + "version": "0.25.10", + "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.25.10.tgz", + "integrity": "sha512-KoebQguKMCIghisEOdA372TIbrUl0kdnfZ9YQIBRAeOvNSKe85XbU4LuFW7hduRUwJj0rAG7pX5wo9sZhbBF1g==", "dev": true, "hasInstallScript": true, "license": "MIT", diff --git a/package.json b/package.json index 359b108..266f79d 100644 --- a/package.json +++ b/package.json @@ -19,7 +19,7 @@ "nan": "^2.17.0" }, "devDependencies": { - "tree-sitter-cli": "^0.24.0" + "tree-sitter-cli": "^0.25.10" }, "scripts": { "build": "tree-sitter generate", diff --git a/queries/highlights.scm b/queries/highlights.scm index 8a99a21..5769895 100644 --- a/queries/highlights.scm +++ b/queries/highlights.scm @@ -8,19 +8,19 @@ (raw_block) @string.special ; Keywords - only in proper syntactic contexts -(use_statement "@use" @keyword) -(import_statement "@import" @keyword) -(struct_definition "@struct" @keyword) -(enum_definition "@enum" @keyword) -(function_definition "@fn" @keyword) -(let_statement "@let" @keyword) -(if_statement "@if" @keyword) -(for_loop "@for" @keyword) -(match_statement "@match" @keyword) -(break_statement "@break" @keyword) -(continue_statement "@continue" @keyword) -(attribute_if_statement "@if" @keyword) -(attribute_for_loop "@for" @keyword) +(use_statement "@" @keyword "use" @keyword) +(import_statement "@" @keyword "import" @keyword) +(struct_definition "@" @keyword "struct" @keyword) +(enum_definition "@" @keyword "enum" @keyword) +(function_definition "@" @keyword "fn" @keyword) +(let_statement "@" @keyword "let" @keyword) +(if_statement "@" @keyword "if" @keyword) +(for_loop "@" @keyword "for" @keyword) +(match_statement "@" @keyword "match" @keyword) +(break_statement "@" @keyword "break" @keyword) +(continue_statement "@" @keyword "continue" @keyword) +(attribute_if_statement "@" @keyword "if" @keyword) +(attribute_for_loop "@" @keyword "for" @keyword) (else_if_branch "else" @keyword) (else_if_branch "if" @keyword) (else_branch "else" @keyword) @@ -39,15 +39,14 @@ ; Functions (function_definition (identifier) @fn) (function_path) @fn -(method_call (identifier) @fn) ; Parameters (parameter (identifier) @variable) ; Properties (struct_field (identifier) @property) -(field_access (identifier) @property) (field_pattern (identifier) @property) +(struct_field_init (identifier) @property) ; Constructors (enum_variant (identifier) @constructor) @@ -65,8 +64,6 @@ (boolean_literal) @boolean ; Operators -(binary_operator) @operator -(unary_operator) @operator "=>" @operator "=" @operator diff --git a/src/grammar.json b/src/grammar.json index 2ff14eb..3fd1020 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -653,11 +653,16 @@ "value": "{" }, { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "template_node" - } + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_template_nodes" + }, + { + "type": "BLANK" + } + ] }, { "type": "STRING", @@ -665,6 +670,13 @@ } ] }, + "_template_nodes": { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "template_node" + } + }, "template_node": { "type": "CHOICE", "members": [ @@ -745,8 +757,13 @@ "value": "<" }, { - "type": "SYMBOL", - "name": "tag_name" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "void_tag_name" + }, + "named": true, + "value": "tag_name" }, { "type": "REPEAT", @@ -755,6 +772,18 @@ "name": "attribute_or_control" } }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "/" + }, + { + "type": "BLANK" + } + ] + }, { "type": "STRING", "value": ">" @@ -784,11 +813,16 @@ "value": ">" }, { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "template_node" - } + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_template_nodes" + }, + { + "type": "BLANK" + } + ] }, { "type": "STRING", @@ -811,11 +845,11 @@ "members": [ { "type": "SYMBOL", - "name": "html_attribute" + "name": "attribute_control_flow" }, { "type": "SYMBOL", - "name": "attribute_control_flow" + "name": "html_attribute" } ] }, @@ -950,6 +984,74 @@ "type": "PATTERN", "value": "[a-zA-Z][a-zA-Z0-9-]*" }, + "void_tag_name": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "area" + }, + { + "type": "STRING", + "value": "base" + }, + { + "type": "STRING", + "value": "br" + }, + { + "type": "STRING", + "value": "col" + }, + { + "type": "STRING", + "value": "embed" + }, + { + "type": "STRING", + "value": "hr" + }, + { + "type": "STRING", + "value": "img" + }, + { + "type": "STRING", + "value": "input" + }, + { + "type": "STRING", + "value": "link" + }, + { + "type": "STRING", + "value": "meta" + }, + { + "type": "STRING", + "value": "param" + }, + { + "type": "STRING", + "value": "source" + }, + { + "type": "STRING", + "value": "track" + }, + { + "type": "STRING", + "value": "wbr" + } + ] + } + } + }, "html_attribute": { "type": "SEQ", "members": [ @@ -981,8 +1083,26 @@ ] }, "attribute_name": { - "type": "PATTERN", - "value": "[a-zA-Z_:@][a-zA-Z0-9_:.-]*" + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[a-zA-Z_:][a-zA-Z0-9_:.-]*" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "@" + }, + { + "type": "PATTERN", + "value": "[a-zA-Z_][a-zA-Z0-9_:.-]*" + } + ] + } + ] }, "attribute_value": { "type": "CHOICE", @@ -1032,6 +1152,48 @@ { "type": "SYMBOL", "name": "safe_expression" + }, + { + "type": "SYMBOL", + "name": "format_expression" + }, + { + "type": "SYMBOL", + "name": "matches_expression" + }, + { + "type": "SYMBOL", + "name": "out_ref" + }, + { + "type": "SYMBOL", + "name": "target_ref" + } + ] + }, + "out_ref": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "@" + }, + { + "type": "STRING", + "value": "out" + } + ] + }, + "target_ref": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "@" + }, + { + "type": "STRING", + "value": "target" } ] }, @@ -1131,6 +1293,233 @@ } ] }, + "format_expression": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "@" + }, + { + "type": "STRING", + "value": "format" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "string_literal" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + } + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "matches_expression": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "@" + }, + { + "type": "STRING", + "value": "matches" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "pattern" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "if" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "inferred_enum_path": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "::" + }, + { + "type": "PATTERN", + "value": "[a-zA-Z_][a-zA-Z0-9_]*" + } + ] + } + }, + "inferred_enum_call": { + "type": "PREC", + "value": 4, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "inferred_enum_path" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "argument_list" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + } + }, + "inferred_enum_struct": { + "type": "PREC", + "value": 4, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "inferred_enum_path" + }, + { + "type": "STRING", + "value": "{" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "struct_field_init" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "struct_field_init" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "}" + } + ] + } + }, + "struct_field_init": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + }, "expression_path": { "type": "SEQ", "members": [ @@ -1245,34 +1634,50 @@ ] }, "let_statement": { - "type": "SEQ", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "@" - }, - { - "type": "STRING", - "value": "let" - } - ] - }, - { - "type": "SYMBOL", - "name": "simple_pattern" - }, - { - "type": "STRING", - "value": "=" - }, - { - "type": "SYMBOL", - "name": "expression" - } - ] + "type": "PREC", + "value": 3, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "@" + }, + { + "type": "STRING", + "value": "let" + } + ] + }, + { + "type": "SYMBOL", + "name": "simple_pattern" + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": ";" + }, + { + "type": "BLANK" + } + ] + } + ] + } }, "if_statement": { "type": "SEQ", @@ -1679,16 +2084,8 @@ } }, { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "/" - }, - { - "type": "BLANK" - } - ] + "type": "STRING", + "value": "/" }, { "type": "STRING", @@ -1719,11 +2116,16 @@ "value": ">" }, { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "template_node" - } + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_template_nodes" + }, + { + "type": "BLANK" + } + ] }, { "type": "STRING", @@ -1850,6 +2252,10 @@ } ] }, + { + "type": "SYMBOL", + "name": "render_closure" + }, { "type": "SYMBOL", "name": "unquoted_value" @@ -1867,6 +2273,10 @@ "type": "SYMBOL", "name": "wildcard_pattern" }, + { + "type": "SYMBOL", + "name": "tuple_variant_pattern" + }, { "type": "SYMBOL", "name": "tuple_pattern" @@ -1997,6 +2407,68 @@ } ] }, + "tuple_variant_pattern": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "rust_path" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "pattern" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "pattern" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, "tuple_pattern": { "type": "SEQ", "members": [ @@ -2047,11 +2519,11 @@ "members": [ { "type": "SYMBOL", - "name": "binary_expression" + "name": "template_block" }, { "type": "SYMBOL", - "name": "unary_expression" + "name": "render_closure" }, { "type": "SYMBOL", @@ -2059,206 +2531,63 @@ } ] }, - "binary_expression": { - "type": "PREC_LEFT", - "value": 1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "expression" - }, - { - "type": "SYMBOL", - "name": "binary_operator" - }, - { - "type": "SYMBOL", - "name": "expression" - } - ] - } - }, - "unary_expression": { - "type": "PREC", - "value": 2, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "unary_operator" - }, - { - "type": "SYMBOL", - "name": "expression" - } - ] - } - }, "primary_expression": { "type": "CHOICE", "members": [ - { - "type": "SYMBOL", - "name": "if_expression" - }, - { - "type": "SYMBOL", - "name": "match_expression" - }, { "type": "SYMBOL", "name": "literal" }, { "type": "SYMBOL", - "name": "macro_call" + "name": "inferred_enum_call" }, { "type": "SYMBOL", - "name": "method_call" + "name": "inferred_enum_struct" }, { "type": "SYMBOL", - "name": "field_access" - }, - { - "type": "SYMBOL", - "name": "index_access" - }, - { - "type": "SYMBOL", - "name": "parenthesized_expression" - }, - { - "type": "SYMBOL", - "name": "array_literal" - }, - { - "type": "SYMBOL", - "name": "closure_expression" + "name": "inferred_enum_path" }, { "type": "SYMBOL", "name": "rust_path" + }, + { + "type": "SYMBOL", + "name": "rust_expression" } ] }, - "if_expression": { - "type": "PREC_RIGHT", - "value": 10, + "rust_expression": { + "type": "TOKEN", "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "if" - }, - { - "type": "SYMBOL", - "name": "expression" - }, - { - "type": "STRING", - "value": "{" - }, - { - "type": "SYMBOL", - "name": "expression" - }, - { - "type": "STRING", - "value": "}" - }, - { - "type": "STRING", - "value": "else" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "if_expression" - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "{" - }, - { - "type": "SYMBOL", - "name": "expression" - }, - { - "type": "STRING", - "value": "}" - } - ] - } - ] - } - ] + "type": "PREC", + "value": -1, + "content": { + "type": "PATTERN", + "value": "[^{}<@,;)\\]\\s][^{}<@,;)\\]]*" + } } }, - "match_expression": { - "type": "PREC_RIGHT", - "value": 10, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "match" - }, - { - "type": "SYMBOL", - "name": "expression" - }, - { - "type": "STRING", - "value": "{" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "expression_match_arm" - } - }, - { - "type": "STRING", - "value": "}" - } - ] - } - }, - "expression_match_arm": { + "template_block": { "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "pattern" + "type": "STRING", + "value": "@" + }, + { + "type": "STRING", + "value": "{" }, { "type": "CHOICE", "members": [ { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "if" - }, - { - "type": "SYMBOL", - "name": "expression" - } - ] + "type": "SYMBOL", + "name": "_template_nodes" }, { "type": "BLANK" @@ -2267,275 +2596,21 @@ }, { "type": "STRING", - "value": "=>" - }, - { - "type": "SYMBOL", - "name": "expression" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] + "value": "}" } ] }, - "macro_call": { - "type": "PREC", - "value": 5, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "STRING", - "value": "!" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "macro_args" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "macro_args" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "]" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "{" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "macro_args" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "}" - } - ] - } - ] - } - ] - } - }, - "macro_args": { + "render_closure": { "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "macro_arg" + "type": "STRING", + "value": "@" }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "macro_arg" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "macro_arg": { - "type": "SYMBOL", - "name": "expression" - }, - "method_call": { - "type": "PREC_LEFT", - "value": 3, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "primary_expression" - }, - { - "type": "STRING", - "value": "." - }, - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "argument_list" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - } - }, - "field_access": { - "type": "PREC_LEFT", - "value": 3, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "primary_expression" - }, - { - "type": "STRING", - "value": "." - }, - { - "type": "SYMBOL", - "name": "identifier" - } - ] - } - }, - "index_access": { - "type": "PREC_LEFT", - "value": 3, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "primary_expression" - }, - { - "type": "STRING", - "value": "[" - }, - { - "type": "SYMBOL", - "name": "expression" - }, - { - "type": "STRING", - "value": "]" - } - ] - } - }, - "parenthesized_expression": { - "type": "SEQ", - "members": [ { "type": "STRING", "value": "(" }, - { - "type": "SYMBOL", - "name": "expression" - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "array_literal": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[" - }, { "type": "CHOICE", "members": [ @@ -2544,7 +2619,7 @@ "members": [ { "type": "SYMBOL", - "name": "expression" + "name": "parameter" }, { "type": "REPEAT", @@ -2557,22 +2632,10 @@ }, { "type": "SYMBOL", - "name": "expression" + "name": "parameter" } ] } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] } ] }, @@ -2583,70 +2646,11 @@ }, { "type": "STRING", - "value": "]" - } - ] - }, - "closure_expression": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "|" + "value": ")" }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "closure_params" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "|" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "expression" - }, - { - "type": "SYMBOL", - "name": "content_block" - } - ] - } - ] - }, - "closure_params": { - "type": "SEQ", - "members": [ { "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "identifier" - } - ] - } + "name": "content_block" } ] }, @@ -2687,104 +2691,6 @@ } ] }, - "binary_operator": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "+" - }, - { - "type": "STRING", - "value": "-" - }, - { - "type": "STRING", - "value": "*" - }, - { - "type": "STRING", - "value": "/" - }, - { - "type": "STRING", - "value": "%" - }, - { - "type": "STRING", - "value": "==" - }, - { - "type": "STRING", - "value": "!=" - }, - { - "type": "STRING", - "value": "<" - }, - { - "type": "STRING", - "value": ">" - }, - { - "type": "STRING", - "value": "<=" - }, - { - "type": "STRING", - "value": ">=" - }, - { - "type": "STRING", - "value": "&&" - }, - { - "type": "STRING", - "value": "||" - }, - { - "type": "STRING", - "value": "&" - }, - { - "type": "STRING", - "value": "|" - }, - { - "type": "STRING", - "value": "^" - }, - { - "type": "STRING", - "value": "<<" - }, - { - "type": "STRING", - "value": ">>" - } - ] - }, - "unary_operator": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "!" - }, - { - "type": "STRING", - "value": "-" - }, - { - "type": "STRING", - "value": "*" - }, - { - "type": "STRING", - "value": "&" - } - ] - }, "literal": { "type": "CHOICE", "members": [ @@ -2946,6 +2852,254 @@ { "type": "SYMBOL", "name": "slice_type" + }, + { + "type": "SYMBOL", + "name": "closure_type" + }, + { + "type": "SYMBOL", + "name": "render_type" + }, + { + "type": "SYMBOL", + "name": "out_type" + }, + { + "type": "SYMBOL", + "name": "target_type" + } + ] + }, + "closure_type": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "|" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "closure_param" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "closure_param" + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "|" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "->" + }, + { + "type": "SYMBOL", + "name": "rust_type" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "closure_param": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "STRING", + "value": ":" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "rust_type" + } + ] + }, + "render_type": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "@" + }, + { + "type": "STRING", + "value": "render" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "rust_type" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "rust_type" + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "@" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "rust_type" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "rust_type" + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + } + ] + }, + "out_type": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "@" + }, + { + "type": "STRING", + "value": "Out" + } + ] + }, + "target_type": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "@" + }, + { + "type": "STRING", + "value": "Target" } ] }, @@ -3206,97 +3360,8 @@ ] }, "template_comment": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "template_comment_1" - }, - { - "type": "SYMBOL", - "name": "template_comment_2" - }, - { - "type": "SYMBOL", - "name": "template_comment_3" - }, - { - "type": "SYMBOL", - "name": "template_comment_4" - }, - { - "type": "SYMBOL", - "name": "template_comment_5" - }, - { - "type": "SYMBOL", - "name": "template_comment_6" - }, - { - "type": "SYMBOL", - "name": "template_comment_7" - }, - { - "type": "SYMBOL", - "name": "template_comment_8" - }, - { - "type": "SYMBOL", - "name": "template_comment_9" - }, - { - "type": "SYMBOL", - "name": "template_comment_10" - }, - { - "type": "SYMBOL", - "name": "template_comment_11" - }, - { - "type": "SYMBOL", - "name": "template_comment_12" - }, - { - "type": "SYMBOL", - "name": "template_comment_13" - }, - { - "type": "SYMBOL", - "name": "template_comment_14" - }, - { - "type": "SYMBOL", - "name": "template_comment_15" - }, - { - "type": "SYMBOL", - "name": "template_comment_16" - }, - { - "type": "SYMBOL", - "name": "template_comment_17" - }, - { - "type": "SYMBOL", - "name": "template_comment_18" - }, - { - "type": "SYMBOL", - "name": "template_comment_19" - }, - { - "type": "SYMBOL", - "name": "template_comment_20" - }, - { - "type": "SYMBOL", - "name": "template_comment_21" - }, - { - "type": "SYMBOL", - "name": "template_comment_22" - } - ] + "type": "SYMBOL", + "name": "template_comment_1" }, "template_comment_1": { "type": "PATTERN", @@ -3391,97 +3456,8 @@ "value": "" }, "raw_block": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "raw_block_1" - }, - { - "type": "SYMBOL", - "name": "raw_block_2" - }, - { - "type": "SYMBOL", - "name": "raw_block_3" - }, - { - "type": "SYMBOL", - "name": "raw_block_4" - }, - { - "type": "SYMBOL", - "name": "raw_block_5" - }, - { - "type": "SYMBOL", - "name": "raw_block_6" - }, - { - "type": "SYMBOL", - "name": "raw_block_7" - }, - { - "type": "SYMBOL", - "name": "raw_block_8" - }, - { - "type": "SYMBOL", - "name": "raw_block_9" - }, - { - "type": "SYMBOL", - "name": "raw_block_10" - }, - { - "type": "SYMBOL", - "name": "raw_block_11" - }, - { - "type": "SYMBOL", - "name": "raw_block_12" - }, - { - "type": "SYMBOL", - "name": "raw_block_13" - }, - { - "type": "SYMBOL", - "name": "raw_block_14" - }, - { - "type": "SYMBOL", - "name": "raw_block_15" - }, - { - "type": "SYMBOL", - "name": "raw_block_16" - }, - { - "type": "SYMBOL", - "name": "raw_block_17" - }, - { - "type": "SYMBOL", - "name": "raw_block_18" - }, - { - "type": "SYMBOL", - "name": "raw_block_19" - }, - { - "type": "SYMBOL", - "name": "raw_block_20" - }, - { - "type": "SYMBOL", - "name": "raw_block_21" - }, - { - "type": "SYMBOL", - "name": "raw_block_22" - } - ] + "type": "SYMBOL", + "name": "raw_block_1" }, "raw_block_1": { "type": "PATTERN", @@ -3653,23 +3629,12 @@ ], "conflicts": [ [ - "expression", - "pattern" - ], - [ - "rust_path", - "expression" - ], - [ - "html_element" - ], - [ - "self_closing_function_tag", - "container_function_tag" + "closure_type" ] ], "precedences": [], "externals": [], "inline": [], - "supertypes": [] -} + "supertypes": [], + "reserved": {} +} \ No newline at end of file diff --git a/src/node-types.json b/src/node-types.json index 9c9515b..945e093 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -14,21 +14,6 @@ ] } }, - { - "type": "array_literal", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "expression", - "named": true - } - ] - } - }, { "type": "array_type", "named": true, @@ -143,6 +128,11 @@ ] } }, + { + "type": "attribute_name", + "named": true, + "fields": {} + }, { "type": "attribute_or_control", "named": true, @@ -200,30 +190,6 @@ ] } }, - { - "type": "binary_expression", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "binary_operator", - "named": true - }, - { - "type": "expression", - "named": true - } - ] - } - }, - { - "type": "binary_operator", - "named": true, - "fields": {} - }, { "type": "boolean_attribute", "named": true, @@ -275,30 +241,7 @@ } }, { - "type": "closure_expression", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "closure_params", - "named": true - }, - { - "type": "content_block", - "named": true - }, - { - "type": "expression", - "named": true - } - ] - } - }, - { - "type": "closure_params", + "type": "closure_param", "named": true, "fields": {}, "children": { @@ -308,6 +251,29 @@ { "type": "identifier", "named": true + }, + { + "type": "rust_type", + "named": true + } + ] + } + }, + { + "type": "closure_type", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "closure_param", + "named": true + }, + { + "type": "rust_type", + "named": true } ] } @@ -521,16 +487,16 @@ "multiple": false, "required": true, "types": [ - { - "type": "binary_expression", - "named": true - }, { "type": "primary_expression", "named": true }, { - "type": "unary_expression", + "type": "render_closure", + "named": true + }, + { + "type": "template_block", "named": true } ] @@ -559,25 +525,6 @@ ] } }, - { - "type": "field_access", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - }, - { - "type": "primary_expression", - "named": true - } - ] - } - }, { "type": "field_pattern", "named": true, @@ -624,6 +571,25 @@ ] } }, + { + "type": "format_expression", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "string_literal", + "named": true + } + ] + } + }, { "type": "function_attribute", "named": true, @@ -659,6 +625,10 @@ "type": "expression_path", "named": true }, + { + "type": "render_closure", + "named": true + }, { "type": "string_literal", "named": true @@ -863,7 +833,7 @@ } }, { - "type": "index_access", + "type": "inferred_enum_call", "named": true, "fields": {}, "children": { @@ -871,11 +841,30 @@ "required": true, "types": [ { - "type": "expression", + "type": "argument_list", "named": true }, { - "type": "primary_expression", + "type": "inferred_enum_path", + "named": true + } + ] + } + }, + { + "type": "inferred_enum_struct", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "inferred_enum_path", + "named": true + }, + { + "type": "struct_field_init", "named": true } ] @@ -904,7 +893,7 @@ "named": true }, { - "type": "pattern", + "type": "simple_pattern", "named": true } ] @@ -980,7 +969,7 @@ } }, { - "type": "method_call", + "type": "matches_expression", "named": true, "fields": {}, "children": { @@ -988,15 +977,11 @@ "required": true, "types": [ { - "type": "argument_list", + "type": "expression", "named": true }, { - "type": "identifier", - "named": true - }, - { - "type": "primary_expression", + "type": "pattern", "named": true } ] @@ -1040,6 +1025,16 @@ ] } }, + { + "type": "out_ref", + "named": true, + "fields": {} + }, + { + "type": "out_type", + "named": true, + "fields": {} + }, { "type": "parameter", "named": true, @@ -1078,21 +1073,6 @@ ] } }, - { - "type": "parenthesized_expression", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "expression", - "named": true - } - ] - } - }, { "type": "path_type", "named": true, @@ -1132,6 +1112,10 @@ "type": "tuple_pattern", "named": true }, + { + "type": "tuple_variant_pattern", + "named": true + }, { "type": "wildcard_pattern", "named": true @@ -1148,19 +1132,15 @@ "required": true, "types": [ { - "type": "array_literal", + "type": "inferred_enum_call", "named": true }, { - "type": "closure_expression", + "type": "inferred_enum_path", "named": true }, { - "type": "field_access", - "named": true - }, - { - "type": "index_access", + "type": "inferred_enum_struct", "named": true }, { @@ -1168,11 +1148,7 @@ "named": true }, { - "type": "method_call", - "named": true - }, - { - "type": "parenthesized_expression", + "type": "rust_expression", "named": true }, { @@ -1187,6 +1163,21 @@ "named": true, "fields": {} }, + { + "type": "raw_block", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "raw_block_1", + "named": true + } + ] + } + }, { "type": "reference_type", "named": true, @@ -1202,6 +1193,40 @@ ] } }, + { + "type": "render_closure", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "content_block", + "named": true + }, + { + "type": "parameter", + "named": true + } + ] + } + }, + { + "type": "render_type", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "rust_type", + "named": true + } + ] + } + }, { "type": "rust_path", "named": true, @@ -1219,10 +1244,18 @@ "type": "array_type", "named": true }, + { + "type": "closure_type", + "named": true + }, { "type": "generic_type", "named": true }, + { + "type": "out_type", + "named": true + }, { "type": "path_type", "named": true @@ -1235,10 +1268,18 @@ "type": "reference_type", "named": true }, + { + "type": "render_type", + "named": true + }, { "type": "slice_type", "named": true }, + { + "type": "target_type", + "named": true + }, { "type": "tuple_type", "named": true @@ -1286,7 +1327,7 @@ "fields": {}, "children": { "multiple": false, - "required": true, + "required": false, "types": [ { "type": "expression_path", @@ -1402,6 +1443,25 @@ ] } }, + { + "type": "struct_field_init", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "identifier", + "named": true + } + ] + } + }, { "type": "struct_pattern", "named": true, @@ -1421,6 +1481,16 @@ ] } }, + { + "type": "target_ref", + "named": true, + "fields": {} + }, + { + "type": "target_type", + "named": true, + "fields": {} + }, { "type": "template", "named": true, @@ -1437,6 +1507,36 @@ ] } }, + { + "type": "template_block", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "template_node", + "named": true + } + ] + } + }, + { + "type": "template_comment", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "template_comment_1", + "named": true + } + ] + } + }, { "type": "template_control_flow", "named": true, @@ -1519,6 +1619,18 @@ "type": "complex_expression", "named": true }, + { + "type": "format_expression", + "named": true + }, + { + "type": "matches_expression", + "named": true + }, + { + "type": "out_ref", + "named": true + }, { "type": "safe_expression", "named": true @@ -1526,6 +1638,10 @@ { "type": "simple_expression", "named": true + }, + { + "type": "target_ref", + "named": true } ] } @@ -1607,6 +1723,25 @@ ] } }, + { + "type": "tuple_variant_pattern", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "pattern", + "named": true + }, + { + "type": "rust_path", + "named": true + } + ] + } + }, { "type": "type_expression", "named": true, @@ -1622,30 +1757,6 @@ ] } }, - { - "type": "unary_expression", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "expression", - "named": true - }, - { - "type": "unary_operator", - "named": true - } - ] - } - }, - { - "type": "unary_operator", - "named": true, - "fields": {} - }, { "type": "use_statement", "named": true, @@ -1669,26 +1780,14 @@ "type": "!", "named": false }, - { - "type": "!=", - "named": false - }, { "type": "\"", "named": false }, - { - "type": "%", - "named": false - }, { "type": "&", "named": false }, - { - "type": "&&", - "named": false - }, { "type": "'", "named": false @@ -1701,20 +1800,12 @@ "type": ")", "named": false }, - { - "type": "*", - "named": false - }, - { - "type": "+", - "named": false - }, { "type": ",", "named": false }, { - "type": "-", + "type": "->", "named": false }, { @@ -1749,14 +1840,6 @@ "type": "", "named": false @@ -1777,14 +1856,6 @@ "type": ">", "named": false }, - { - "type": ">=", - "named": false - }, - { - "type": ">>", - "named": false - }, { "type": "@", "named": false @@ -1794,53 +1865,17 @@ "named": false }, { - "type": "@break", - "named": false - }, - { - "type": "@continue", - "named": false - }, - { - "type": "@enum", - "named": false - }, - { - "type": "@fn", - "named": false - }, - { - "type": "@for", - "named": false - }, - { - "type": "@if", - "named": false - }, - { - "type": "@import", - "named": false - }, - { - "type": "@let", - "named": false - }, - { - "type": "@match", - "named": false - }, - { - "type": "@struct", - "named": false - }, - { - "type": "@use", + "type": "Out", "named": false }, { "type": "String", "named": false }, + { + "type": "Target", + "named": false + }, { "type": "[", "named": false @@ -1849,10 +1884,6 @@ "type": "]", "named": false }, - { - "type": "^", - "named": false - }, { "type": "```@", "named": false @@ -1869,18 +1900,22 @@ "type": "attribute_content", "named": true }, - { - "type": "attribute_name", - "named": true - }, { "type": "bool", "named": false }, + { + "type": "break", + "named": false + }, { "type": "char", "named": false }, + { + "type": "continue", + "named": false + }, { "type": "css", "named": false @@ -1889,6 +1924,10 @@ "type": "else", "named": false }, + { + "type": "enum", + "named": false + }, { "type": "escape_at", "named": true @@ -1913,6 +1952,18 @@ "type": "float_literal", "named": true }, + { + "type": "fn", + "named": false + }, + { + "type": "for", + "named": false + }, + { + "type": "format", + "named": false + }, { "type": "html", "named": false @@ -1949,6 +2000,10 @@ "type": "if", "named": false }, + { + "type": "import", + "named": false + }, { "type": "import_path", "named": true @@ -1957,6 +2012,10 @@ "type": "in", "named": false }, + { + "type": "inferred_enum_path", + "named": true + }, { "type": "isize", "named": false @@ -1977,12 +2036,32 @@ "type": "let", "named": false }, + { + "type": "match", + "named": false + }, + { + "type": "matches", + "named": false + }, { "type": "mut", "named": false }, { - "type": "raw_block", + "type": "out", + "named": false + }, + { + "type": "raw_block_1", + "named": true + }, + { + "type": "render", + "named": false + }, + { + "type": "rust_expression", "named": true }, { @@ -1993,6 +2072,10 @@ "type": "str", "named": false }, + { + "type": "struct", + "named": false + }, { "type": "style", "named": false @@ -2002,7 +2085,11 @@ "named": true }, { - "type": "template_comment", + "type": "target", + "named": false + }, + { + "type": "template_comment_1", "named": true }, { @@ -2037,6 +2124,10 @@ "type": "unquoted_value", "named": true }, + { + "type": "use", + "named": false + }, { "type": "usize", "named": false @@ -2053,10 +2144,6 @@ "type": "|", "named": false }, - { - "type": "||", - "named": false - }, { "type": "}", "named": false diff --git a/src/parser.c b/src/parser.c index 891b8ba..d62cf8c 100644 --- a/src/parser.c +++ b/src/parser.c @@ -1,4 +1,4 @@ -/* Automatically generated by tree-sitter v0.25.3 */ +/* Automatically @generated by tree-sitter v0.25.10 */ #include "tree_sitter/parser.h" @@ -15,246 +15,254 @@ #endif #define LANGUAGE_VERSION 15 -#define STATE_COUNT 789 +#define STATE_COUNT 775 #define LARGE_STATE_COUNT 2 -#define SYMBOL_COUNT 213 +#define SYMBOL_COUNT 220 #define ALIAS_COUNT 0 -#define TOKEN_COUNT 108 +#define TOKEN_COUNT 106 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 0 -#define MAX_ALIAS_SEQUENCE_LENGTH 9 +#define MAX_ALIAS_SEQUENCE_LENGTH 10 #define MAX_RESERVED_WORD_SET_SIZE 0 #define PRODUCTION_ID_COUNT 1 #define SUPERTYPE_COUNT 0 enum ts_symbol_identifiers { - anon_sym_ATuse = 1, - anon_sym_as = 2, - aux_sym_rust_path_token1 = 3, - anon_sym_ATimport = 4, - sym_import_path = 5, - anon_sym_ATstruct = 6, - anon_sym_LBRACE = 7, - anon_sym_RBRACE = 8, - anon_sym_COLON = 9, - anon_sym_COMMA = 10, - anon_sym_ATenum = 11, - anon_sym_LPAREN = 12, - anon_sym_RPAREN = 13, - anon_sym_LBRACK = 14, - anon_sym_RBRACK = 15, - sym_attribute_content = 16, - anon_sym_LT = 17, - anon_sym_GT = 18, - anon_sym_ATfn = 19, - anon_sym_EQ = 20, - anon_sym_SLASH = 21, - anon_sym_LT_SLASH = 22, - anon_sym_ATif = 23, - anon_sym_else = 24, - anon_sym_ATfor = 25, - anon_sym_in = 26, - sym_tag_name = 27, - sym_attribute_name = 28, - anon_sym_AT = 29, - anon_sym_safe = 30, - anon_sym_DOT = 31, - anon_sym_ATlet = 32, - anon_sym_let = 33, - anon_sym_if = 34, - anon_sym_ATmatch = 35, - anon_sym_EQ_GT = 36, - anon_sym_ATbreak = 37, - anon_sym_SEMI = 38, - anon_sym_ATcontinue = 39, - anon_sym_LT_AT = 40, - anon_sym_LT_SLASH_AT = 41, - anon_sym_AMP = 42, - sym_unquoted_value = 43, - sym_wildcard_pattern = 44, - anon_sym_DOT_DOT = 45, - anon_sym_PIPE = 46, - anon_sym_PLUS = 47, - anon_sym_DASH = 48, - anon_sym_STAR = 49, - anon_sym_PERCENT = 50, - anon_sym_EQ_EQ = 51, - anon_sym_BANG_EQ = 52, - anon_sym_LT_EQ = 53, - anon_sym_GT_EQ = 54, - anon_sym_AMP_AMP = 55, - anon_sym_PIPE_PIPE = 56, - anon_sym_CARET = 57, - anon_sym_LT_LT = 58, - anon_sym_GT_GT = 59, - anon_sym_BANG = 60, - anon_sym_DQUOTE = 61, - aux_sym_string_literal_token1 = 62, - anon_sym_SQUOTE = 63, - aux_sym_char_literal_token1 = 64, - sym_escape_sequence = 65, - aux_sym_integer_literal_token1 = 66, - aux_sym_integer_literal_token2 = 67, - aux_sym_integer_literal_token3 = 68, - aux_sym_integer_literal_token4 = 69, - sym_float_literal = 70, - anon_sym_true = 71, - anon_sym_false = 72, - anon_sym_i8 = 73, - anon_sym_i16 = 74, - anon_sym_i32 = 75, - anon_sym_i64 = 76, - anon_sym_i128 = 77, - anon_sym_isize = 78, - anon_sym_u8 = 79, - anon_sym_u16 = 80, - anon_sym_u32 = 81, - anon_sym_u64 = 82, - anon_sym_u128 = 83, - anon_sym_usize = 84, - anon_sym_f32 = 85, - anon_sym_f64 = 86, - anon_sym_bool = 87, - anon_sym_char = 88, - anon_sym_str = 89, - anon_sym_String = 90, - anon_sym_mut = 91, - sym_template_comment = 92, - sym_html_comment = 93, - sym_raw_block = 94, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE = 95, - aux_sym_embedded_language_token1 = 96, - anon_sym_BQUOTE_BQUOTE_BQUOTE_AT = 97, - anon_sym_html = 98, - anon_sym_css = 99, - anon_sym_js = 100, - anon_sym_javascript = 101, - anon_sym_json = 102, - anon_sym_alpine = 103, - anon_sym_style = 104, - sym_escape_at = 105, - sym_text_content = 106, - sym_identifier = 107, - sym_template = 108, - sym_template_element = 109, - sym_use_statement = 110, - sym_rust_path = 111, - sym_import_statement = 112, - sym_struct_definition = 113, - sym_struct_field = 114, - sym_enum_definition = 115, - sym_enum_variant = 116, - sym_attribute_list = 117, - sym_attribute = 118, - sym_generic_params = 119, - sym_type_expression = 120, - sym_function_definition = 121, - sym_parameter_list = 122, - sym_parameter = 123, - sym_default_value = 124, - sym_content_block = 125, - sym_template_node = 126, - sym_html_element = 127, - sym_attribute_or_control = 128, - sym_attribute_control_flow = 129, - sym_attribute_if_statement = 130, - sym_attribute_for_loop = 131, - sym_html_attribute = 132, + anon_sym_AT = 1, + anon_sym_use = 2, + anon_sym_as = 3, + aux_sym_rust_path_token1 = 4, + anon_sym_import = 5, + sym_import_path = 6, + anon_sym_struct = 7, + anon_sym_LBRACE = 8, + anon_sym_RBRACE = 9, + anon_sym_COLON = 10, + anon_sym_COMMA = 11, + anon_sym_enum = 12, + anon_sym_LPAREN = 13, + anon_sym_RPAREN = 14, + anon_sym_LBRACK = 15, + anon_sym_RBRACK = 16, + sym_attribute_content = 17, + anon_sym_LT = 18, + anon_sym_GT = 19, + anon_sym_fn = 20, + anon_sym_EQ = 21, + anon_sym_SLASH = 22, + anon_sym_LT_SLASH = 23, + anon_sym_if = 24, + anon_sym_else = 25, + anon_sym_for = 26, + anon_sym_in = 27, + sym_tag_name = 28, + sym_void_tag_name = 29, + aux_sym_attribute_name_token1 = 30, + aux_sym_attribute_name_token2 = 31, + anon_sym_out = 32, + anon_sym_target = 33, + aux_sym_simple_expression_token1 = 34, + anon_sym_safe = 35, + anon_sym_format = 36, + anon_sym_matches = 37, + sym_inferred_enum_path = 38, + anon_sym_BANG = 39, + anon_sym_DOT = 40, + anon_sym_let = 41, + anon_sym_SEMI = 42, + anon_sym_match = 43, + anon_sym_EQ_GT = 44, + anon_sym_break = 45, + anon_sym_continue = 46, + anon_sym_LT_AT = 47, + anon_sym_LT_SLASH_AT = 48, + anon_sym_AMP = 49, + sym_unquoted_value = 50, + sym_wildcard_pattern = 51, + anon_sym_DOT_DOT = 52, + sym_rust_expression = 53, + anon_sym_DQUOTE = 54, + aux_sym_string_literal_token1 = 55, + anon_sym_SQUOTE = 56, + aux_sym_char_literal_token1 = 57, + sym_escape_sequence = 58, + aux_sym_integer_literal_token1 = 59, + aux_sym_integer_literal_token2 = 60, + aux_sym_integer_literal_token3 = 61, + aux_sym_integer_literal_token4 = 62, + sym_float_literal = 63, + anon_sym_true = 64, + anon_sym_false = 65, + anon_sym_PIPE = 66, + anon_sym_DASH_GT = 67, + anon_sym_render = 68, + anon_sym_Out = 69, + anon_sym_Target = 70, + anon_sym_i8 = 71, + anon_sym_i16 = 72, + anon_sym_i32 = 73, + anon_sym_i64 = 74, + anon_sym_i128 = 75, + anon_sym_isize = 76, + anon_sym_u8 = 77, + anon_sym_u16 = 78, + anon_sym_u32 = 79, + anon_sym_u64 = 80, + anon_sym_u128 = 81, + anon_sym_usize = 82, + anon_sym_f32 = 83, + anon_sym_f64 = 84, + anon_sym_bool = 85, + anon_sym_char = 86, + anon_sym_str = 87, + anon_sym_String = 88, + anon_sym_mut = 89, + sym_template_comment_1 = 90, + sym_html_comment = 91, + sym_raw_block_1 = 92, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE = 93, + aux_sym_embedded_language_token1 = 94, + anon_sym_BQUOTE_BQUOTE_BQUOTE_AT = 95, + anon_sym_html = 96, + anon_sym_css = 97, + anon_sym_js = 98, + anon_sym_javascript = 99, + anon_sym_json = 100, + anon_sym_alpine = 101, + anon_sym_style = 102, + sym_escape_at = 103, + sym_text_content = 104, + sym_identifier = 105, + sym_template = 106, + sym_template_element = 107, + sym_use_statement = 108, + sym_rust_path = 109, + sym_import_statement = 110, + sym_struct_definition = 111, + sym_struct_field = 112, + sym_enum_definition = 113, + sym_enum_variant = 114, + sym_attribute_list = 115, + sym_attribute = 116, + sym_generic_params = 117, + sym_type_expression = 118, + sym_function_definition = 119, + sym_parameter_list = 120, + sym_parameter = 121, + sym_default_value = 122, + sym_content_block = 123, + aux_sym__template_nodes = 124, + sym_template_node = 125, + sym_html_element = 126, + sym_attribute_or_control = 127, + sym_attribute_control_flow = 128, + sym_attribute_if_statement = 129, + sym_attribute_for_loop = 130, + sym_html_attribute = 131, + sym_attribute_name = 132, sym_attribute_value = 133, sym_template_expression = 134, - sym_simple_expression = 135, - sym_complex_expression = 136, - sym_safe_expression = 137, - sym_expression_path = 138, - sym_template_control_flow = 139, - sym_let_statement = 140, - sym_if_statement = 141, - sym_else_if_branch = 142, - sym_else_branch = 143, - sym_for_loop = 144, - sym_match_statement = 145, - sym_match_arm = 146, - sym_break_statement = 147, - sym_continue_statement = 148, - sym_function_tag = 149, - sym_self_closing_function_tag = 150, - sym_container_function_tag = 151, - sym_function_path = 152, - sym_function_attribute = 153, - sym_attribute_reference = 154, - sym_named_function_attribute = 155, - sym_boolean_attribute = 156, - sym_function_attribute_value = 157, - sym_pattern = 158, - sym_simple_pattern = 159, - sym_identifier_pattern = 160, - sym_struct_pattern = 161, - sym_field_pattern = 162, - sym_tuple_pattern = 163, - sym_expression = 164, - sym_binary_expression = 165, - sym_unary_expression = 166, - sym_primary_expression = 167, - sym_method_call = 168, - sym_field_access = 169, - sym_index_access = 170, - sym_parenthesized_expression = 171, - sym_array_literal = 172, - sym_closure_expression = 173, - sym_closure_params = 174, - sym_argument_list = 175, - sym_binary_operator = 176, - sym_unary_operator = 177, - sym_literal = 178, - sym_string_literal = 179, - sym_char_literal = 180, - sym_number_literal = 181, - sym_integer_literal = 182, - sym_boolean_literal = 183, - sym_rust_type = 184, - sym_primitive_type = 185, - sym_reference_type = 186, - sym_generic_type = 187, - sym_path_type = 188, - sym_tuple_type = 189, - sym_array_type = 190, - sym_slice_type = 191, - sym_comment = 192, - sym_embedded_language = 193, - sym_language_name = 194, - aux_sym_template_repeat1 = 195, - aux_sym_struct_definition_repeat1 = 196, - aux_sym_enum_definition_repeat1 = 197, - aux_sym_enum_variant_repeat1 = 198, - aux_sym_attribute_list_repeat1 = 199, - aux_sym_generic_params_repeat1 = 200, - aux_sym_parameter_list_repeat1 = 201, - aux_sym_content_block_repeat1 = 202, - aux_sym_html_element_repeat1 = 203, - aux_sym_expression_path_repeat1 = 204, - aux_sym_if_statement_repeat1 = 205, - aux_sym_match_statement_repeat1 = 206, - aux_sym_self_closing_function_tag_repeat1 = 207, - aux_sym_struct_pattern_repeat1 = 208, - aux_sym_tuple_pattern_repeat1 = 209, - aux_sym_array_literal_repeat1 = 210, - aux_sym_string_literal_repeat1 = 211, - aux_sym_generic_type_repeat1 = 212, + sym_out_ref = 135, + sym_target_ref = 136, + sym_simple_expression = 137, + sym_complex_expression = 138, + sym_safe_expression = 139, + sym_format_expression = 140, + sym_matches_expression = 141, + sym_inferred_enum_call = 142, + sym_inferred_enum_struct = 143, + sym_struct_field_init = 144, + sym_expression_path = 145, + sym_template_control_flow = 146, + sym_let_statement = 147, + sym_if_statement = 148, + sym_else_if_branch = 149, + sym_else_branch = 150, + sym_for_loop = 151, + sym_match_statement = 152, + sym_match_arm = 153, + sym_break_statement = 154, + sym_continue_statement = 155, + sym_function_tag = 156, + sym_self_closing_function_tag = 157, + sym_container_function_tag = 158, + sym_function_path = 159, + sym_function_attribute = 160, + sym_attribute_reference = 161, + sym_named_function_attribute = 162, + sym_boolean_attribute = 163, + sym_function_attribute_value = 164, + sym_pattern = 165, + sym_simple_pattern = 166, + sym_identifier_pattern = 167, + sym_struct_pattern = 168, + sym_field_pattern = 169, + sym_tuple_variant_pattern = 170, + sym_tuple_pattern = 171, + sym_expression = 172, + sym_primary_expression = 173, + sym_template_block = 174, + sym_render_closure = 175, + sym_argument_list = 176, + sym_literal = 177, + sym_string_literal = 178, + sym_char_literal = 179, + sym_number_literal = 180, + sym_integer_literal = 181, + sym_boolean_literal = 182, + sym_rust_type = 183, + sym_closure_type = 184, + sym_closure_param = 185, + sym_render_type = 186, + sym_out_type = 187, + sym_target_type = 188, + sym_primitive_type = 189, + sym_reference_type = 190, + sym_generic_type = 191, + sym_path_type = 192, + sym_tuple_type = 193, + sym_array_type = 194, + sym_slice_type = 195, + sym_comment = 196, + sym_template_comment = 197, + sym_raw_block = 198, + sym_embedded_language = 199, + sym_language_name = 200, + aux_sym_template_repeat1 = 201, + aux_sym_struct_definition_repeat1 = 202, + aux_sym_enum_definition_repeat1 = 203, + aux_sym_enum_variant_repeat1 = 204, + aux_sym_attribute_list_repeat1 = 205, + aux_sym_generic_params_repeat1 = 206, + aux_sym_parameter_list_repeat1 = 207, + aux_sym_html_element_repeat1 = 208, + aux_sym_format_expression_repeat1 = 209, + aux_sym_inferred_enum_struct_repeat1 = 210, + aux_sym_expression_path_repeat1 = 211, + aux_sym_if_statement_repeat1 = 212, + aux_sym_match_statement_repeat1 = 213, + aux_sym_self_closing_function_tag_repeat1 = 214, + aux_sym_struct_pattern_repeat1 = 215, + aux_sym_tuple_variant_pattern_repeat1 = 216, + aux_sym_string_literal_repeat1 = 217, + aux_sym_closure_type_repeat1 = 218, + aux_sym_render_type_repeat1 = 219, }; static const char * const ts_symbol_names[] = { [ts_builtin_sym_end] = "end", - [anon_sym_ATuse] = "@use", + [anon_sym_AT] = "@", + [anon_sym_use] = "use", [anon_sym_as] = "as", [aux_sym_rust_path_token1] = "rust_path_token1", - [anon_sym_ATimport] = "@import", + [anon_sym_import] = "import", [sym_import_path] = "import_path", - [anon_sym_ATstruct] = "@struct", + [anon_sym_struct] = "struct", [anon_sym_LBRACE] = "{", [anon_sym_RBRACE] = "}", [anon_sym_COLON] = ":", [anon_sym_COMMA] = ",", - [anon_sym_ATenum] = "@enum", + [anon_sym_enum] = "enum", [anon_sym_LPAREN] = "(", [anon_sym_RPAREN] = ")", [anon_sym_LBRACK] = "[", @@ -262,48 +270,40 @@ static const char * const ts_symbol_names[] = { [sym_attribute_content] = "attribute_content", [anon_sym_LT] = "<", [anon_sym_GT] = ">", - [anon_sym_ATfn] = "@fn", + [anon_sym_fn] = "fn", [anon_sym_EQ] = "=", [anon_sym_SLASH] = "/", [anon_sym_LT_SLASH] = "", - [anon_sym_ATbreak] = "@break", [anon_sym_SEMI] = ";", - [anon_sym_ATcontinue] = "@continue", + [anon_sym_match] = "match", + [anon_sym_EQ_GT] = "=>", + [anon_sym_break] = "break", + [anon_sym_continue] = "continue", [anon_sym_LT_AT] = "<@", [anon_sym_LT_SLASH_AT] = "=", - [anon_sym_AMP_AMP] = "&&", - [anon_sym_PIPE_PIPE] = "||", - [anon_sym_CARET] = "^", - [anon_sym_LT_LT] = "<<", - [anon_sym_GT_GT] = ">>", - [anon_sym_BANG] = "!", + [sym_rust_expression] = "rust_expression", [anon_sym_DQUOTE] = "\"", [aux_sym_string_literal_token1] = "string_literal_token1", [anon_sym_SQUOTE] = "'", @@ -316,6 +316,11 @@ static const char * const ts_symbol_names[] = { [sym_float_literal] = "float_literal", [anon_sym_true] = "true", [anon_sym_false] = "false", + [anon_sym_PIPE] = "|", + [anon_sym_DASH_GT] = "->", + [anon_sym_render] = "render", + [anon_sym_Out] = "Out", + [anon_sym_Target] = "Target", [anon_sym_i8] = "i8", [anon_sym_i16] = "i16", [anon_sym_i32] = "i32", @@ -335,9 +340,9 @@ static const char * const ts_symbol_names[] = { [anon_sym_str] = "str", [anon_sym_String] = "String", [anon_sym_mut] = "mut", - [sym_template_comment] = "template_comment", + [sym_template_comment_1] = "template_comment_1", [sym_html_comment] = "html_comment", - [sym_raw_block] = "raw_block", + [sym_raw_block_1] = "raw_block_1", [anon_sym_AT_BQUOTE_BQUOTE_BQUOTE] = "@```", [aux_sym_embedded_language_token1] = "embedded_language_token1", [anon_sym_BQUOTE_BQUOTE_BQUOTE_AT] = "```@", @@ -369,6 +374,7 @@ static const char * const ts_symbol_names[] = { [sym_parameter] = "parameter", [sym_default_value] = "default_value", [sym_content_block] = "content_block", + [aux_sym__template_nodes] = "_template_nodes", [sym_template_node] = "template_node", [sym_html_element] = "html_element", [sym_attribute_or_control] = "attribute_or_control", @@ -376,11 +382,19 @@ static const char * const ts_symbol_names[] = { [sym_attribute_if_statement] = "attribute_if_statement", [sym_attribute_for_loop] = "attribute_for_loop", [sym_html_attribute] = "html_attribute", + [sym_attribute_name] = "attribute_name", [sym_attribute_value] = "attribute_value", [sym_template_expression] = "template_expression", + [sym_out_ref] = "out_ref", + [sym_target_ref] = "target_ref", [sym_simple_expression] = "simple_expression", [sym_complex_expression] = "complex_expression", [sym_safe_expression] = "safe_expression", + [sym_format_expression] = "format_expression", + [sym_matches_expression] = "matches_expression", + [sym_inferred_enum_call] = "inferred_enum_call", + [sym_inferred_enum_struct] = "inferred_enum_struct", + [sym_struct_field_init] = "struct_field_init", [sym_expression_path] = "expression_path", [sym_template_control_flow] = "template_control_flow", [sym_let_statement] = "let_statement", @@ -406,21 +420,13 @@ static const char * const ts_symbol_names[] = { [sym_identifier_pattern] = "identifier_pattern", [sym_struct_pattern] = "struct_pattern", [sym_field_pattern] = "field_pattern", + [sym_tuple_variant_pattern] = "tuple_variant_pattern", [sym_tuple_pattern] = "tuple_pattern", [sym_expression] = "expression", - [sym_binary_expression] = "binary_expression", - [sym_unary_expression] = "unary_expression", [sym_primary_expression] = "primary_expression", - [sym_method_call] = "method_call", - [sym_field_access] = "field_access", - [sym_index_access] = "index_access", - [sym_parenthesized_expression] = "parenthesized_expression", - [sym_array_literal] = "array_literal", - [sym_closure_expression] = "closure_expression", - [sym_closure_params] = "closure_params", + [sym_template_block] = "template_block", + [sym_render_closure] = "render_closure", [sym_argument_list] = "argument_list", - [sym_binary_operator] = "binary_operator", - [sym_unary_operator] = "unary_operator", [sym_literal] = "literal", [sym_string_literal] = "string_literal", [sym_char_literal] = "char_literal", @@ -428,6 +434,11 @@ static const char * const ts_symbol_names[] = { [sym_integer_literal] = "integer_literal", [sym_boolean_literal] = "boolean_literal", [sym_rust_type] = "rust_type", + [sym_closure_type] = "closure_type", + [sym_closure_param] = "closure_param", + [sym_render_type] = "render_type", + [sym_out_type] = "out_type", + [sym_target_type] = "target_type", [sym_primitive_type] = "primitive_type", [sym_reference_type] = "reference_type", [sym_generic_type] = "generic_type", @@ -436,6 +447,8 @@ static const char * const ts_symbol_names[] = { [sym_array_type] = "array_type", [sym_slice_type] = "slice_type", [sym_comment] = "comment", + [sym_template_comment] = "template_comment", + [sym_raw_block] = "raw_block", [sym_embedded_language] = "embedded_language", [sym_language_name] = "language_name", [aux_sym_template_repeat1] = "template_repeat1", @@ -445,32 +458,34 @@ static const char * const ts_symbol_names[] = { [aux_sym_attribute_list_repeat1] = "attribute_list_repeat1", [aux_sym_generic_params_repeat1] = "generic_params_repeat1", [aux_sym_parameter_list_repeat1] = "parameter_list_repeat1", - [aux_sym_content_block_repeat1] = "content_block_repeat1", [aux_sym_html_element_repeat1] = "html_element_repeat1", + [aux_sym_format_expression_repeat1] = "format_expression_repeat1", + [aux_sym_inferred_enum_struct_repeat1] = "inferred_enum_struct_repeat1", [aux_sym_expression_path_repeat1] = "expression_path_repeat1", [aux_sym_if_statement_repeat1] = "if_statement_repeat1", [aux_sym_match_statement_repeat1] = "match_statement_repeat1", [aux_sym_self_closing_function_tag_repeat1] = "self_closing_function_tag_repeat1", [aux_sym_struct_pattern_repeat1] = "struct_pattern_repeat1", - [aux_sym_tuple_pattern_repeat1] = "tuple_pattern_repeat1", - [aux_sym_array_literal_repeat1] = "array_literal_repeat1", + [aux_sym_tuple_variant_pattern_repeat1] = "tuple_variant_pattern_repeat1", [aux_sym_string_literal_repeat1] = "string_literal_repeat1", - [aux_sym_generic_type_repeat1] = "generic_type_repeat1", + [aux_sym_closure_type_repeat1] = "closure_type_repeat1", + [aux_sym_render_type_repeat1] = "render_type_repeat1", }; static const TSSymbol ts_symbol_map[] = { [ts_builtin_sym_end] = ts_builtin_sym_end, - [anon_sym_ATuse] = anon_sym_ATuse, + [anon_sym_AT] = anon_sym_AT, + [anon_sym_use] = anon_sym_use, [anon_sym_as] = anon_sym_as, [aux_sym_rust_path_token1] = aux_sym_rust_path_token1, - [anon_sym_ATimport] = anon_sym_ATimport, + [anon_sym_import] = anon_sym_import, [sym_import_path] = sym_import_path, - [anon_sym_ATstruct] = anon_sym_ATstruct, + [anon_sym_struct] = anon_sym_struct, [anon_sym_LBRACE] = anon_sym_LBRACE, [anon_sym_RBRACE] = anon_sym_RBRACE, [anon_sym_COLON] = anon_sym_COLON, [anon_sym_COMMA] = anon_sym_COMMA, - [anon_sym_ATenum] = anon_sym_ATenum, + [anon_sym_enum] = anon_sym_enum, [anon_sym_LPAREN] = anon_sym_LPAREN, [anon_sym_RPAREN] = anon_sym_RPAREN, [anon_sym_LBRACK] = anon_sym_LBRACK, @@ -478,48 +493,40 @@ static const TSSymbol ts_symbol_map[] = { [sym_attribute_content] = sym_attribute_content, [anon_sym_LT] = anon_sym_LT, [anon_sym_GT] = anon_sym_GT, - [anon_sym_ATfn] = anon_sym_ATfn, + [anon_sym_fn] = anon_sym_fn, [anon_sym_EQ] = anon_sym_EQ, [anon_sym_SLASH] = anon_sym_SLASH, [anon_sym_LT_SLASH] = anon_sym_LT_SLASH, - [anon_sym_ATif] = anon_sym_ATif, + [anon_sym_if] = anon_sym_if, [anon_sym_else] = anon_sym_else, - [anon_sym_ATfor] = anon_sym_ATfor, + [anon_sym_for] = anon_sym_for, [anon_sym_in] = anon_sym_in, [sym_tag_name] = sym_tag_name, - [sym_attribute_name] = sym_attribute_name, - [anon_sym_AT] = anon_sym_AT, + [sym_void_tag_name] = sym_tag_name, + [aux_sym_attribute_name_token1] = aux_sym_attribute_name_token1, + [aux_sym_attribute_name_token2] = aux_sym_attribute_name_token2, + [anon_sym_out] = anon_sym_out, + [anon_sym_target] = anon_sym_target, + [aux_sym_simple_expression_token1] = aux_sym_simple_expression_token1, [anon_sym_safe] = anon_sym_safe, + [anon_sym_format] = anon_sym_format, + [anon_sym_matches] = anon_sym_matches, + [sym_inferred_enum_path] = sym_inferred_enum_path, + [anon_sym_BANG] = anon_sym_BANG, [anon_sym_DOT] = anon_sym_DOT, - [anon_sym_ATlet] = anon_sym_ATlet, [anon_sym_let] = anon_sym_let, - [anon_sym_if] = anon_sym_if, - [anon_sym_ATmatch] = anon_sym_ATmatch, - [anon_sym_EQ_GT] = anon_sym_EQ_GT, - [anon_sym_ATbreak] = anon_sym_ATbreak, [anon_sym_SEMI] = anon_sym_SEMI, - [anon_sym_ATcontinue] = anon_sym_ATcontinue, + [anon_sym_match] = anon_sym_match, + [anon_sym_EQ_GT] = anon_sym_EQ_GT, + [anon_sym_break] = anon_sym_break, + [anon_sym_continue] = anon_sym_continue, [anon_sym_LT_AT] = anon_sym_LT_AT, [anon_sym_LT_SLASH_AT] = anon_sym_LT_SLASH_AT, [anon_sym_AMP] = anon_sym_AMP, [sym_unquoted_value] = sym_unquoted_value, [sym_wildcard_pattern] = sym_wildcard_pattern, [anon_sym_DOT_DOT] = anon_sym_DOT_DOT, - [anon_sym_PIPE] = anon_sym_PIPE, - [anon_sym_PLUS] = anon_sym_PLUS, - [anon_sym_DASH] = anon_sym_DASH, - [anon_sym_STAR] = anon_sym_STAR, - [anon_sym_PERCENT] = anon_sym_PERCENT, - [anon_sym_EQ_EQ] = anon_sym_EQ_EQ, - [anon_sym_BANG_EQ] = anon_sym_BANG_EQ, - [anon_sym_LT_EQ] = anon_sym_LT_EQ, - [anon_sym_GT_EQ] = anon_sym_GT_EQ, - [anon_sym_AMP_AMP] = anon_sym_AMP_AMP, - [anon_sym_PIPE_PIPE] = anon_sym_PIPE_PIPE, - [anon_sym_CARET] = anon_sym_CARET, - [anon_sym_LT_LT] = anon_sym_LT_LT, - [anon_sym_GT_GT] = anon_sym_GT_GT, - [anon_sym_BANG] = anon_sym_BANG, + [sym_rust_expression] = sym_rust_expression, [anon_sym_DQUOTE] = anon_sym_DQUOTE, [aux_sym_string_literal_token1] = aux_sym_string_literal_token1, [anon_sym_SQUOTE] = anon_sym_SQUOTE, @@ -532,6 +539,11 @@ static const TSSymbol ts_symbol_map[] = { [sym_float_literal] = sym_float_literal, [anon_sym_true] = anon_sym_true, [anon_sym_false] = anon_sym_false, + [anon_sym_PIPE] = anon_sym_PIPE, + [anon_sym_DASH_GT] = anon_sym_DASH_GT, + [anon_sym_render] = anon_sym_render, + [anon_sym_Out] = anon_sym_Out, + [anon_sym_Target] = anon_sym_Target, [anon_sym_i8] = anon_sym_i8, [anon_sym_i16] = anon_sym_i16, [anon_sym_i32] = anon_sym_i32, @@ -551,9 +563,9 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_str] = anon_sym_str, [anon_sym_String] = anon_sym_String, [anon_sym_mut] = anon_sym_mut, - [sym_template_comment] = sym_template_comment, + [sym_template_comment_1] = sym_template_comment_1, [sym_html_comment] = sym_html_comment, - [sym_raw_block] = sym_raw_block, + [sym_raw_block_1] = sym_raw_block_1, [anon_sym_AT_BQUOTE_BQUOTE_BQUOTE] = anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, [aux_sym_embedded_language_token1] = aux_sym_embedded_language_token1, [anon_sym_BQUOTE_BQUOTE_BQUOTE_AT] = anon_sym_BQUOTE_BQUOTE_BQUOTE_AT, @@ -585,6 +597,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_parameter] = sym_parameter, [sym_default_value] = sym_default_value, [sym_content_block] = sym_content_block, + [aux_sym__template_nodes] = aux_sym__template_nodes, [sym_template_node] = sym_template_node, [sym_html_element] = sym_html_element, [sym_attribute_or_control] = sym_attribute_or_control, @@ -592,11 +605,19 @@ static const TSSymbol ts_symbol_map[] = { [sym_attribute_if_statement] = sym_attribute_if_statement, [sym_attribute_for_loop] = sym_attribute_for_loop, [sym_html_attribute] = sym_html_attribute, + [sym_attribute_name] = sym_attribute_name, [sym_attribute_value] = sym_attribute_value, [sym_template_expression] = sym_template_expression, + [sym_out_ref] = sym_out_ref, + [sym_target_ref] = sym_target_ref, [sym_simple_expression] = sym_simple_expression, [sym_complex_expression] = sym_complex_expression, [sym_safe_expression] = sym_safe_expression, + [sym_format_expression] = sym_format_expression, + [sym_matches_expression] = sym_matches_expression, + [sym_inferred_enum_call] = sym_inferred_enum_call, + [sym_inferred_enum_struct] = sym_inferred_enum_struct, + [sym_struct_field_init] = sym_struct_field_init, [sym_expression_path] = sym_expression_path, [sym_template_control_flow] = sym_template_control_flow, [sym_let_statement] = sym_let_statement, @@ -622,21 +643,13 @@ static const TSSymbol ts_symbol_map[] = { [sym_identifier_pattern] = sym_identifier_pattern, [sym_struct_pattern] = sym_struct_pattern, [sym_field_pattern] = sym_field_pattern, + [sym_tuple_variant_pattern] = sym_tuple_variant_pattern, [sym_tuple_pattern] = sym_tuple_pattern, [sym_expression] = sym_expression, - [sym_binary_expression] = sym_binary_expression, - [sym_unary_expression] = sym_unary_expression, [sym_primary_expression] = sym_primary_expression, - [sym_method_call] = sym_method_call, - [sym_field_access] = sym_field_access, - [sym_index_access] = sym_index_access, - [sym_parenthesized_expression] = sym_parenthesized_expression, - [sym_array_literal] = sym_array_literal, - [sym_closure_expression] = sym_closure_expression, - [sym_closure_params] = sym_closure_params, + [sym_template_block] = sym_template_block, + [sym_render_closure] = sym_render_closure, [sym_argument_list] = sym_argument_list, - [sym_binary_operator] = sym_binary_operator, - [sym_unary_operator] = sym_unary_operator, [sym_literal] = sym_literal, [sym_string_literal] = sym_string_literal, [sym_char_literal] = sym_char_literal, @@ -644,6 +657,11 @@ static const TSSymbol ts_symbol_map[] = { [sym_integer_literal] = sym_integer_literal, [sym_boolean_literal] = sym_boolean_literal, [sym_rust_type] = sym_rust_type, + [sym_closure_type] = sym_closure_type, + [sym_closure_param] = sym_closure_param, + [sym_render_type] = sym_render_type, + [sym_out_type] = sym_out_type, + [sym_target_type] = sym_target_type, [sym_primitive_type] = sym_primitive_type, [sym_reference_type] = sym_reference_type, [sym_generic_type] = sym_generic_type, @@ -652,6 +670,8 @@ static const TSSymbol ts_symbol_map[] = { [sym_array_type] = sym_array_type, [sym_slice_type] = sym_slice_type, [sym_comment] = sym_comment, + [sym_template_comment] = sym_template_comment, + [sym_raw_block] = sym_raw_block, [sym_embedded_language] = sym_embedded_language, [sym_language_name] = sym_language_name, [aux_sym_template_repeat1] = aux_sym_template_repeat1, @@ -661,17 +681,18 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_attribute_list_repeat1] = aux_sym_attribute_list_repeat1, [aux_sym_generic_params_repeat1] = aux_sym_generic_params_repeat1, [aux_sym_parameter_list_repeat1] = aux_sym_parameter_list_repeat1, - [aux_sym_content_block_repeat1] = aux_sym_content_block_repeat1, [aux_sym_html_element_repeat1] = aux_sym_html_element_repeat1, + [aux_sym_format_expression_repeat1] = aux_sym_format_expression_repeat1, + [aux_sym_inferred_enum_struct_repeat1] = aux_sym_inferred_enum_struct_repeat1, [aux_sym_expression_path_repeat1] = aux_sym_expression_path_repeat1, [aux_sym_if_statement_repeat1] = aux_sym_if_statement_repeat1, [aux_sym_match_statement_repeat1] = aux_sym_match_statement_repeat1, [aux_sym_self_closing_function_tag_repeat1] = aux_sym_self_closing_function_tag_repeat1, [aux_sym_struct_pattern_repeat1] = aux_sym_struct_pattern_repeat1, - [aux_sym_tuple_pattern_repeat1] = aux_sym_tuple_pattern_repeat1, - [aux_sym_array_literal_repeat1] = aux_sym_array_literal_repeat1, + [aux_sym_tuple_variant_pattern_repeat1] = aux_sym_tuple_variant_pattern_repeat1, [aux_sym_string_literal_repeat1] = aux_sym_string_literal_repeat1, - [aux_sym_generic_type_repeat1] = aux_sym_generic_type_repeat1, + [aux_sym_closure_type_repeat1] = aux_sym_closure_type_repeat1, + [aux_sym_render_type_repeat1] = aux_sym_render_type_repeat1, }; static const TSSymbolMetadata ts_symbol_metadata[] = { @@ -679,7 +700,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, - [anon_sym_ATuse] = { + [anon_sym_AT] = { + .visible = true, + .named = false, + }, + [anon_sym_use] = { .visible = true, .named = false, }, @@ -691,7 +716,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [anon_sym_ATimport] = { + [anon_sym_import] = { .visible = true, .named = false, }, @@ -699,7 +724,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [anon_sym_ATstruct] = { + [anon_sym_struct] = { .visible = true, .named = false, }, @@ -719,7 +744,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_ATenum] = { + [anon_sym_enum] = { .visible = true, .named = false, }, @@ -751,7 +776,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_ATfn] = { + [anon_sym_fn] = { .visible = true, .named = false, }, @@ -767,7 +792,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_ATif] = { + [anon_sym_if] = { .visible = true, .named = false, }, @@ -775,7 +800,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_ATfor] = { + [anon_sym_for] = { .visible = true, .named = false, }, @@ -787,51 +812,75 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_attribute_name] = { + [sym_void_tag_name] = { .visible = true, .named = true, }, - [anon_sym_AT] = { + [aux_sym_attribute_name_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_attribute_name_token2] = { + .visible = false, + .named = false, + }, + [anon_sym_out] = { .visible = true, .named = false, }, + [anon_sym_target] = { + .visible = true, + .named = false, + }, + [aux_sym_simple_expression_token1] = { + .visible = false, + .named = false, + }, [anon_sym_safe] = { .visible = true, .named = false, }, + [anon_sym_format] = { + .visible = true, + .named = false, + }, + [anon_sym_matches] = { + .visible = true, + .named = false, + }, + [sym_inferred_enum_path] = { + .visible = true, + .named = true, + }, + [anon_sym_BANG] = { + .visible = true, + .named = false, + }, [anon_sym_DOT] = { .visible = true, .named = false, }, - [anon_sym_ATlet] = { - .visible = true, - .named = false, - }, [anon_sym_let] = { .visible = true, .named = false, }, - [anon_sym_if] = { - .visible = true, - .named = false, - }, - [anon_sym_ATmatch] = { - .visible = true, - .named = false, - }, - [anon_sym_EQ_GT] = { - .visible = true, - .named = false, - }, - [anon_sym_ATbreak] = { - .visible = true, - .named = false, - }, [anon_sym_SEMI] = { .visible = true, .named = false, }, - [anon_sym_ATcontinue] = { + [anon_sym_match] = { + .visible = true, + .named = false, + }, + [anon_sym_EQ_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_break] = { + .visible = true, + .named = false, + }, + [anon_sym_continue] = { .visible = true, .named = false, }, @@ -859,65 +908,9 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_PIPE] = { + [sym_rust_expression] = { .visible = true, - .named = false, - }, - [anon_sym_PLUS] = { - .visible = true, - .named = false, - }, - [anon_sym_DASH] = { - .visible = true, - .named = false, - }, - [anon_sym_STAR] = { - .visible = true, - .named = false, - }, - [anon_sym_PERCENT] = { - .visible = true, - .named = false, - }, - [anon_sym_EQ_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_BANG_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_LT_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_GT_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_AMP_AMP] = { - .visible = true, - .named = false, - }, - [anon_sym_PIPE_PIPE] = { - .visible = true, - .named = false, - }, - [anon_sym_CARET] = { - .visible = true, - .named = false, - }, - [anon_sym_LT_LT] = { - .visible = true, - .named = false, - }, - [anon_sym_GT_GT] = { - .visible = true, - .named = false, - }, - [anon_sym_BANG] = { - .visible = true, - .named = false, + .named = true, }, [anon_sym_DQUOTE] = { .visible = true, @@ -967,6 +960,26 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_PIPE] = { + .visible = true, + .named = false, + }, + [anon_sym_DASH_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_render] = { + .visible = true, + .named = false, + }, + [anon_sym_Out] = { + .visible = true, + .named = false, + }, + [anon_sym_Target] = { + .visible = true, + .named = false, + }, [anon_sym_i8] = { .visible = true, .named = false, @@ -1043,7 +1056,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [sym_template_comment] = { + [sym_template_comment_1] = { .visible = true, .named = true, }, @@ -1051,7 +1064,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_raw_block] = { + [sym_raw_block_1] = { .visible = true, .named = true, }, @@ -1179,6 +1192,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [aux_sym__template_nodes] = { + .visible = false, + .named = false, + }, [sym_template_node] = { .visible = true, .named = true, @@ -1207,6 +1224,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_attribute_name] = { + .visible = true, + .named = true, + }, [sym_attribute_value] = { .visible = true, .named = true, @@ -1215,6 +1236,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_out_ref] = { + .visible = true, + .named = true, + }, + [sym_target_ref] = { + .visible = true, + .named = true, + }, [sym_simple_expression] = { .visible = true, .named = true, @@ -1227,6 +1256,26 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_format_expression] = { + .visible = true, + .named = true, + }, + [sym_matches_expression] = { + .visible = true, + .named = true, + }, + [sym_inferred_enum_call] = { + .visible = true, + .named = true, + }, + [sym_inferred_enum_struct] = { + .visible = true, + .named = true, + }, + [sym_struct_field_init] = { + .visible = true, + .named = true, + }, [sym_expression_path] = { .visible = true, .named = true, @@ -1327,6 +1376,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_tuple_variant_pattern] = { + .visible = true, + .named = true, + }, [sym_tuple_pattern] = { .visible = true, .named = true, @@ -1335,43 +1388,15 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_binary_expression] = { - .visible = true, - .named = true, - }, - [sym_unary_expression] = { - .visible = true, - .named = true, - }, [sym_primary_expression] = { .visible = true, .named = true, }, - [sym_method_call] = { + [sym_template_block] = { .visible = true, .named = true, }, - [sym_field_access] = { - .visible = true, - .named = true, - }, - [sym_index_access] = { - .visible = true, - .named = true, - }, - [sym_parenthesized_expression] = { - .visible = true, - .named = true, - }, - [sym_array_literal] = { - .visible = true, - .named = true, - }, - [sym_closure_expression] = { - .visible = true, - .named = true, - }, - [sym_closure_params] = { + [sym_render_closure] = { .visible = true, .named = true, }, @@ -1379,14 +1404,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_binary_operator] = { - .visible = true, - .named = true, - }, - [sym_unary_operator] = { - .visible = true, - .named = true, - }, [sym_literal] = { .visible = true, .named = true, @@ -1415,6 +1432,26 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_closure_type] = { + .visible = true, + .named = true, + }, + [sym_closure_param] = { + .visible = true, + .named = true, + }, + [sym_render_type] = { + .visible = true, + .named = true, + }, + [sym_out_type] = { + .visible = true, + .named = true, + }, + [sym_target_type] = { + .visible = true, + .named = true, + }, [sym_primitive_type] = { .visible = true, .named = true, @@ -1447,6 +1484,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_template_comment] = { + .visible = true, + .named = true, + }, + [sym_raw_block] = { + .visible = true, + .named = true, + }, [sym_embedded_language] = { .visible = true, .named = true, @@ -1483,11 +1528,15 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_content_block_repeat1] = { + [aux_sym_html_element_repeat1] = { .visible = false, .named = false, }, - [aux_sym_html_element_repeat1] = { + [aux_sym_format_expression_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_inferred_enum_struct_repeat1] = { .visible = false, .named = false, }, @@ -1511,11 +1560,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_tuple_pattern_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_array_literal_repeat1] = { + [aux_sym_tuple_variant_pattern_repeat1] = { .visible = false, .named = false, }, @@ -1523,7 +1568,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_generic_type_repeat1] = { + [aux_sym_closure_type_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_render_type_repeat1] = { .visible = false, .named = false, }, @@ -1542,18 +1591,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1] = 1, [2] = 2, [3] = 3, - [4] = 4, + [4] = 2, [5] = 5, - [6] = 6, - [7] = 7, + [6] = 2, + [7] = 2, [8] = 8, [9] = 9, [10] = 10, [11] = 11, [12] = 12, - [13] = 13, - [14] = 14, - [15] = 15, + [13] = 12, + [14] = 12, + [15] = 12, [16] = 16, [17] = 17, [18] = 18, @@ -1563,87 +1612,87 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [22] = 22, [23] = 23, [24] = 24, - [25] = 25, - [26] = 26, - [27] = 27, - [28] = 28, - [29] = 29, - [30] = 30, - [31] = 31, - [32] = 32, + [25] = 23, + [26] = 17, + [27] = 18, + [28] = 20, + [29] = 16, + [30] = 19, + [31] = 16, + [32] = 16, [33] = 33, [34] = 34, [35] = 35, [36] = 36, - [37] = 34, - [38] = 10, - [39] = 35, - [40] = 4, - [41] = 31, - [42] = 7, - [43] = 4, - [44] = 10, - [45] = 8, - [46] = 6, - [47] = 35, - [48] = 48, - [49] = 49, - [50] = 13, - [51] = 14, - [52] = 15, - [53] = 16, - [54] = 48, - [55] = 17, - [56] = 18, - [57] = 11, - [58] = 20, + [37] = 37, + [38] = 38, + [39] = 39, + [40] = 34, + [41] = 37, + [42] = 38, + [43] = 33, + [44] = 33, + [45] = 45, + [46] = 34, + [47] = 37, + [48] = 38, + [49] = 39, + [50] = 45, + [51] = 33, + [52] = 34, + [53] = 37, + [54] = 38, + [55] = 55, + [56] = 56, + [57] = 57, + [58] = 56, [59] = 59, - [60] = 49, - [61] = 12, - [62] = 22, - [63] = 23, - [64] = 24, - [65] = 49, - [66] = 25, - [67] = 26, - [68] = 29, - [69] = 5, - [70] = 70, - [71] = 33, - [72] = 27, - [73] = 28, - [74] = 32, - [75] = 30, - [76] = 31, - [77] = 19, - [78] = 21, - [79] = 59, - [80] = 9, - [81] = 34, - [82] = 48, - [83] = 70, - [84] = 48, - [85] = 70, - [86] = 59, + [60] = 60, + [61] = 61, + [62] = 60, + [63] = 63, + [64] = 64, + [65] = 60, + [66] = 63, + [67] = 67, + [68] = 60, + [69] = 63, + [70] = 63, + [71] = 71, + [72] = 72, + [73] = 73, + [74] = 61, + [75] = 60, + [76] = 76, + [77] = 63, + [78] = 78, + [79] = 79, + [80] = 78, + [81] = 81, + [82] = 82, + [83] = 78, + [84] = 84, + [85] = 82, + [86] = 86, [87] = 87, [88] = 88, - [89] = 10, + [89] = 89, [90] = 90, [91] = 91, - [92] = 90, + [92] = 92, [93] = 93, - [94] = 87, - [95] = 93, + [94] = 94, + [95] = 95, [96] = 96, - [97] = 90, + [97] = 97, [98] = 98, - [99] = 87, - [100] = 93, - [101] = 36, - [102] = 4, - [103] = 91, + [99] = 99, + [100] = 100, + [101] = 101, + [102] = 102, + [103] = 103, [104] = 104, - [105] = 96, + [105] = 105, [106] = 106, [107] = 107, [108] = 108, @@ -1651,77 +1700,77 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [110] = 110, [111] = 111, [112] = 112, - [113] = 11, + [113] = 113, [114] = 114, [115] = 115, - [116] = 114, - [117] = 12, + [116] = 116, + [117] = 117, [118] = 118, - [119] = 119, - [120] = 106, - [121] = 121, + [119] = 113, + [120] = 120, + [121] = 120, [122] = 122, [123] = 123, [124] = 124, [125] = 125, - [126] = 126, + [126] = 115, [127] = 127, - [128] = 111, - [129] = 114, - [130] = 9, + [128] = 128, + [129] = 129, + [130] = 130, [131] = 131, - [132] = 111, - [133] = 133, - [134] = 5, - [135] = 135, - [136] = 31, - [137] = 137, - [138] = 138, + [132] = 113, + [133] = 123, + [134] = 115, + [135] = 116, + [136] = 136, + [137] = 120, + [138] = 123, [139] = 139, [140] = 140, - [141] = 115, - [142] = 122, - [143] = 127, - [144] = 111, - [145] = 114, + [141] = 109, + [142] = 142, + [143] = 143, + [144] = 117, + [145] = 125, [146] = 111, - [147] = 114, - [148] = 115, + [147] = 127, + [148] = 148, [149] = 149, - [150] = 127, + [150] = 95, [151] = 151, - [152] = 115, - [153] = 127, - [154] = 115, - [155] = 127, - [156] = 115, - [157] = 127, - [158] = 115, - [159] = 127, - [160] = 124, - [161] = 110, - [162] = 118, - [163] = 119, - [164] = 121, - [165] = 126, - [166] = 137, - [167] = 138, - [168] = 108, - [169] = 109, - [170] = 124, - [171] = 110, - [172] = 118, - [173] = 106, - [174] = 121, - [175] = 138, - [176] = 121, - [177] = 125, - [178] = 123, - [179] = 131, - [180] = 107, - [181] = 135, - [182] = 140, - [183] = 107, + [152] = 140, + [153] = 153, + [154] = 154, + [155] = 155, + [156] = 116, + [157] = 111, + [158] = 158, + [159] = 159, + [160] = 160, + [161] = 161, + [162] = 162, + [163] = 163, + [164] = 164, + [165] = 165, + [166] = 166, + [167] = 165, + [168] = 165, + [169] = 164, + [170] = 170, + [171] = 171, + [172] = 172, + [173] = 173, + [174] = 174, + [175] = 175, + [176] = 176, + [177] = 177, + [178] = 178, + [179] = 179, + [180] = 180, + [181] = 181, + [182] = 182, + [183] = 183, [184] = 184, [185] = 185, [186] = 186, @@ -1730,73 +1779,73 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [189] = 189, [190] = 190, [191] = 191, - [192] = 192, - [193] = 190, - [194] = 192, - [195] = 188, - [196] = 189, - [197] = 190, + [192] = 180, + [193] = 176, + [194] = 176, + [195] = 195, + [196] = 196, + [197] = 197, [198] = 198, [199] = 199, [200] = 200, - [201] = 199, + [201] = 201, [202] = 202, [203] = 203, - [204] = 203, - [205] = 200, - [206] = 198, - [207] = 200, - [208] = 21, - [209] = 19, - [210] = 25, - [211] = 13, - [212] = 18, - [213] = 14, - [214] = 15, - [215] = 30, + [204] = 204, + [205] = 205, + [206] = 79, + [207] = 207, + [208] = 208, + [209] = 209, + [210] = 210, + [211] = 180, + [212] = 212, + [213] = 213, + [214] = 214, + [215] = 215, [216] = 216, [217] = 217, - [218] = 4, - [219] = 10, - [220] = 217, - [221] = 7, - [222] = 8, - [223] = 216, - [224] = 224, - [225] = 6, - [226] = 20, - [227] = 30, - [228] = 33, - [229] = 26, - [230] = 31, - [231] = 32, - [232] = 29, - [233] = 27, - [234] = 22, - [235] = 17, - [236] = 28, - [237] = 16, - [238] = 23, - [239] = 24, + [218] = 218, + [219] = 219, + [220] = 220, + [221] = 221, + [222] = 222, + [223] = 223, + [224] = 207, + [225] = 225, + [226] = 226, + [227] = 227, + [228] = 228, + [229] = 229, + [230] = 230, + [231] = 231, + [232] = 180, + [233] = 233, + [234] = 234, + [235] = 176, + [236] = 236, + [237] = 237, + [238] = 238, + [239] = 239, [240] = 240, [241] = 241, - [242] = 241, + [242] = 208, [243] = 243, - [244] = 244, + [244] = 79, [245] = 245, [246] = 246, [247] = 247, [248] = 248, [249] = 249, [250] = 250, - [251] = 240, + [251] = 251, [252] = 252, - [253] = 252, + [253] = 253, [254] = 254, [255] = 255, [256] = 256, [257] = 257, - [258] = 254, + [258] = 258, [259] = 259, [260] = 260, [261] = 261, @@ -1811,230 +1860,230 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [270] = 270, [271] = 271, [272] = 272, - [273] = 263, + [273] = 273, [274] = 274, [275] = 275, [276] = 276, - [277] = 277, - [278] = 277, + [277] = 79, + [278] = 278, [279] = 279, - [280] = 30, + [280] = 280, [281] = 281, [282] = 282, - [283] = 248, + [283] = 283, [284] = 284, - [285] = 245, - [286] = 250, + [285] = 285, + [286] = 286, [287] = 287, - [288] = 244, - [289] = 34, - [290] = 243, + [288] = 288, + [289] = 289, + [290] = 290, [291] = 291, - [292] = 284, + [292] = 292, [293] = 293, [294] = 294, - [295] = 247, + [295] = 295, [296] = 296, [297] = 297, - [298] = 246, - [299] = 299, - [300] = 284, - [301] = 35, - [302] = 35, + [298] = 196, + [299] = 202, + [300] = 300, + [301] = 200, + [302] = 302, [303] = 303, [304] = 304, [305] = 305, [306] = 306, - [307] = 307, + [307] = 88, [308] = 308, - [309] = 309, - [310] = 310, - [311] = 311, - [312] = 312, + [309] = 175, + [310] = 175, + [311] = 182, + [312] = 177, [313] = 313, - [314] = 314, - [315] = 315, - [316] = 316, - [317] = 317, + [314] = 131, + [315] = 98, + [316] = 108, + [317] = 99, [318] = 318, - [319] = 319, - [320] = 320, + [319] = 100, + [320] = 159, [321] = 321, - [322] = 322, - [323] = 323, + [322] = 102, + [323] = 101, [324] = 324, - [325] = 325, - [326] = 34, - [327] = 262, - [328] = 328, - [329] = 329, - [330] = 276, - [331] = 255, - [332] = 332, - [333] = 333, - [334] = 334, - [335] = 335, - [336] = 336, - [337] = 337, - [338] = 338, - [339] = 339, + [325] = 154, + [326] = 96, + [327] = 97, + [328] = 103, + [329] = 104, + [330] = 184, + [331] = 185, + [332] = 136, + [333] = 139, + [334] = 110, + [335] = 149, + [336] = 112, + [337] = 155, + [338] = 122, + [339] = 129, [340] = 340, - [341] = 341, - [342] = 342, - [343] = 343, - [344] = 344, - [345] = 345, - [346] = 346, - [347] = 347, - [348] = 348, - [349] = 349, - [350] = 350, - [351] = 323, - [352] = 352, - [353] = 340, - [354] = 342, - [355] = 355, - [356] = 304, - [357] = 357, - [358] = 358, - [359] = 319, - [360] = 355, - [361] = 342, + [341] = 189, + [342] = 223, + [343] = 210, + [344] = 212, + [345] = 213, + [346] = 218, + [347] = 186, + [348] = 184, + [349] = 185, + [350] = 182, + [351] = 177, + [352] = 207, + [353] = 207, + [354] = 186, + [355] = 208, + [356] = 91, + [357] = 187, + [358] = 90, + [359] = 189, + [360] = 208, + [361] = 220, [362] = 362, - [363] = 363, - [364] = 364, - [365] = 365, - [366] = 366, + [363] = 197, + [364] = 208, + [365] = 215, + [366] = 201, [367] = 367, [368] = 368, - [369] = 369, - [370] = 364, - [371] = 310, - [372] = 357, - [373] = 373, + [369] = 209, + [370] = 203, + [371] = 371, + [372] = 198, + [373] = 207, [374] = 374, - [375] = 374, - [376] = 376, - [377] = 377, + [375] = 222, + [376] = 195, + [377] = 219, [378] = 378, [379] = 379, [380] = 380, [381] = 381, - [382] = 377, + [382] = 382, [383] = 383, [384] = 384, - [385] = 373, - [386] = 374, - [387] = 383, - [388] = 377, - [389] = 381, - [390] = 381, - [391] = 391, - [392] = 377, - [393] = 279, - [394] = 282, - [395] = 373, - [396] = 380, - [397] = 384, - [398] = 384, - [399] = 299, - [400] = 294, - [401] = 35, - [402] = 34, - [403] = 296, - [404] = 293, - [405] = 303, - [406] = 314, - [407] = 315, - [408] = 317, - [409] = 318, - [410] = 320, - [411] = 328, - [412] = 335, - [413] = 336, - [414] = 337, - [415] = 338, - [416] = 343, - [417] = 345, - [418] = 34, - [419] = 35, - [420] = 329, - [421] = 313, - [422] = 341, - [423] = 344, - [424] = 346, - [425] = 347, - [426] = 348, - [427] = 349, - [428] = 358, - [429] = 362, - [430] = 363, - [431] = 365, - [432] = 366, - [433] = 368, - [434] = 369, - [435] = 312, - [436] = 306, - [437] = 309, - [438] = 311, - [439] = 339, - [440] = 440, + [385] = 385, + [386] = 386, + [387] = 387, + [388] = 388, + [389] = 389, + [390] = 390, + [391] = 272, + [392] = 266, + [393] = 227, + [394] = 229, + [395] = 395, + [396] = 226, + [397] = 275, + [398] = 248, + [399] = 264, + [400] = 228, + [401] = 230, + [402] = 402, + [403] = 403, + [404] = 255, + [405] = 405, + [406] = 406, + [407] = 210, + [408] = 212, + [409] = 213, + [410] = 218, + [411] = 223, + [412] = 381, + [413] = 403, + [414] = 414, + [415] = 381, + [416] = 403, + [417] = 417, + [418] = 238, + [419] = 419, + [420] = 420, + [421] = 419, + [422] = 422, + [423] = 405, + [424] = 424, + [425] = 395, + [426] = 426, + [427] = 427, + [428] = 428, + [429] = 429, + [430] = 430, + [431] = 431, + [432] = 432, + [433] = 91, + [434] = 434, + [435] = 435, + [436] = 436, + [437] = 437, + [438] = 438, + [439] = 90, + [440] = 406, [441] = 441, - [442] = 442, - [443] = 443, - [444] = 444, + [442] = 441, + [443] = 428, + [444] = 432, [445] = 445, [446] = 446, [447] = 447, - [448] = 448, - [449] = 447, - [450] = 447, - [451] = 448, - [452] = 448, + [448] = 420, + [449] = 424, + [450] = 434, + [451] = 451, + [452] = 452, [453] = 453, - [454] = 454, - [455] = 243, - [456] = 456, - [457] = 457, - [458] = 248, + [454] = 180, + [455] = 176, + [456] = 445, + [457] = 419, + [458] = 458, [459] = 459, - [460] = 460, + [460] = 452, [461] = 461, [462] = 462, - [463] = 245, + [463] = 445, [464] = 464, - [465] = 262, + [465] = 419, [466] = 466, - [467] = 466, - [468] = 464, - [469] = 466, - [470] = 464, - [471] = 255, + [467] = 467, + [468] = 446, + [469] = 445, + [470] = 470, + [471] = 471, [472] = 472, - [473] = 249, - [474] = 243, - [475] = 275, - [476] = 267, - [477] = 248, - [478] = 270, - [479] = 268, - [480] = 245, - [481] = 271, - [482] = 265, - [483] = 274, - [484] = 256, - [485] = 266, + [473] = 445, + [474] = 419, + [475] = 475, + [476] = 445, + [477] = 419, + [478] = 383, + [479] = 479, + [480] = 480, + [481] = 481, + [482] = 475, + [483] = 483, + [484] = 484, + [485] = 485, [486] = 486, - [487] = 272, + [487] = 487, [488] = 488, - [489] = 269, - [490] = 260, - [491] = 488, - [492] = 21, + [489] = 489, + [490] = 490, + [491] = 491, + [492] = 492, [493] = 493, - [494] = 19, - [495] = 262, - [496] = 255, + [494] = 494, + [495] = 495, + [496] = 496, [497] = 497, [498] = 498, [499] = 499, @@ -2042,205 +2091,205 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [501] = 501, [502] = 502, [503] = 503, - [504] = 335, + [504] = 504, [505] = 505, [506] = 506, [507] = 507, - [508] = 338, - [509] = 19, - [510] = 21, + [508] = 508, + [509] = 509, + [510] = 510, [511] = 511, - [512] = 366, - [513] = 313, + [512] = 512, + [513] = 513, [514] = 514, [515] = 515, [516] = 516, [517] = 517, - [518] = 518, - [519] = 341, + [518] = 483, + [519] = 519, [520] = 520, - [521] = 520, + [521] = 521, [522] = 522, - [523] = 523, - [524] = 522, - [525] = 525, + [523] = 158, + [524] = 489, + [525] = 492, [526] = 526, [527] = 527, [528] = 528, - [529] = 529, - [530] = 530, - [531] = 531, - [532] = 532, - [533] = 533, - [534] = 534, + [529] = 496, + [530] = 510, + [531] = 493, + [532] = 494, + [533] = 521, + [534] = 502, [535] = 535, [536] = 536, [537] = 537, [538] = 538, - [539] = 534, + [539] = 484, [540] = 540, - [541] = 541, - [542] = 542, + [541] = 495, + [542] = 490, [543] = 543, - [544] = 544, - [545] = 545, - [546] = 546, - [547] = 547, - [548] = 548, + [544] = 497, + [545] = 506, + [546] = 507, + [547] = 515, + [548] = 517, [549] = 549, [550] = 550, [551] = 551, [552] = 552, - [553] = 526, - [554] = 554, - [555] = 506, - [556] = 541, - [557] = 499, - [558] = 558, - [559] = 528, - [560] = 541, - [561] = 561, + [553] = 553, + [554] = 489, + [555] = 550, + [556] = 537, + [557] = 557, + [558] = 496, + [559] = 502, + [560] = 560, + [561] = 538, [562] = 562, [563] = 563, - [564] = 13, - [565] = 540, - [566] = 541, - [567] = 14, - [568] = 568, - [569] = 540, - [570] = 541, - [571] = 15, - [572] = 18, - [573] = 540, - [574] = 517, - [575] = 525, - [576] = 505, - [577] = 25, - [578] = 578, - [579] = 579, - [580] = 580, - [581] = 581, - [582] = 530, - [583] = 583, - [584] = 540, + [564] = 527, + [565] = 551, + [566] = 538, + [567] = 483, + [568] = 513, + [569] = 569, + [570] = 491, + [571] = 571, + [572] = 572, + [573] = 573, + [574] = 483, + [575] = 513, + [576] = 491, + [577] = 91, + [578] = 90, + [579] = 513, + [580] = 491, + [581] = 495, + [582] = 506, + [583] = 495, + [584] = 506, [585] = 585, [586] = 586, [587] = 587, - [588] = 588, - [589] = 589, + [588] = 383, + [589] = 405, [590] = 590, - [591] = 591, + [591] = 395, [592] = 592, - [593] = 593, - [594] = 594, - [595] = 595, - [596] = 596, + [593] = 210, + [594] = 212, + [595] = 213, + [596] = 218, [597] = 597, [598] = 598, - [599] = 599, - [600] = 592, + [599] = 223, + [600] = 600, [601] = 601, [602] = 602, [603] = 603, - [604] = 604, - [605] = 605, - [606] = 588, + [604] = 207, + [605] = 208, + [606] = 606, [607] = 607, [608] = 608, - [609] = 604, - [610] = 610, - [611] = 593, + [609] = 609, + [610] = 428, + [611] = 432, [612] = 612, [613] = 613, - [614] = 587, + [614] = 614, [615] = 615, - [616] = 616, + [616] = 614, [617] = 617, - [618] = 595, - [619] = 612, - [620] = 620, + [618] = 612, + [619] = 619, + [620] = 613, [621] = 621, - [622] = 613, - [623] = 623, - [624] = 604, + [622] = 446, + [623] = 475, + [624] = 624, [625] = 625, [626] = 626, - [627] = 605, + [627] = 627, [628] = 628, [629] = 629, [630] = 630, [631] = 631, - [632] = 632, + [632] = 600, [633] = 633, - [634] = 631, - [635] = 635, - [636] = 636, - [637] = 595, - [638] = 259, + [634] = 634, + [635] = 406, + [636] = 420, + [637] = 424, + [638] = 628, [639] = 639, [640] = 640, [641] = 641, [642] = 642, [643] = 643, - [644] = 644, - [645] = 645, + [644] = 614, + [645] = 434, [646] = 646, - [647] = 647, + [647] = 613, [648] = 648, - [649] = 644, + [649] = 649, [650] = 650, - [651] = 651, + [651] = 628, [652] = 652, [653] = 653, [654] = 654, - [655] = 655, - [656] = 656, + [655] = 652, + [656] = 630, [657] = 657, - [658] = 643, - [659] = 659, - [660] = 660, - [661] = 661, - [662] = 650, - [663] = 663, - [664] = 644, - [665] = 659, - [666] = 650, - [667] = 667, - [668] = 650, + [658] = 658, + [659] = 646, + [660] = 631, + [661] = 614, + [662] = 441, + [663] = 624, + [664] = 664, + [665] = 613, + [666] = 666, + [667] = 628, + [668] = 668, [669] = 669, - [670] = 670, + [670] = 630, [671] = 671, - [672] = 672, - [673] = 661, + [672] = 631, + [673] = 673, [674] = 674, [675] = 675, - [676] = 676, - [677] = 677, + [676] = 630, + [677] = 652, [678] = 678, - [679] = 648, - [680] = 656, + [679] = 679, + [680] = 680, [681] = 681, [682] = 682, [683] = 683, [684] = 684, - [685] = 683, + [685] = 685, [686] = 686, [687] = 687, [688] = 688, [689] = 689, - [690] = 684, + [690] = 690, [691] = 691, - [692] = 682, - [693] = 693, + [692] = 692, + [693] = 686, [694] = 694, [695] = 695, [696] = 696, [697] = 697, [698] = 698, [699] = 699, - [700] = 700, + [700] = 698, [701] = 701, - [702] = 702, + [702] = 686, [703] = 703, [704] = 704, [705] = 705, @@ -2248,85 +2297,76 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [707] = 707, [708] = 708, [709] = 709, - [710] = 702, - [711] = 684, - [712] = 712, - [713] = 712, - [714] = 695, - [715] = 715, - [716] = 702, - [717] = 691, + [710] = 710, + [711] = 711, + [712] = 688, + [713] = 706, + [714] = 691, + [715] = 679, + [716] = 688, + [717] = 703, [718] = 718, - [719] = 719, + [719] = 688, [720] = 720, [721] = 721, [722] = 722, - [723] = 721, - [724] = 693, + [723] = 723, + [724] = 724, [725] = 725, - [726] = 726, + [726] = 706, [727] = 727, [728] = 728, - [729] = 728, - [730] = 730, - [731] = 687, - [732] = 732, - [733] = 733, + [729] = 729, + [730] = 685, + [731] = 731, + [732] = 691, + [733] = 679, [734] = 734, - [735] = 681, + [735] = 735, [736] = 736, [737] = 737, [738] = 738, - [739] = 700, + [739] = 681, [740] = 740, [741] = 741, - [742] = 737, - [743] = 707, - [744] = 696, + [742] = 742, + [743] = 743, + [744] = 698, [745] = 745, - [746] = 707, + [746] = 746, [747] = 747, [748] = 748, - [749] = 741, + [749] = 749, [750] = 750, [751] = 751, [752] = 752, - [753] = 752, - [754] = 736, - [755] = 738, - [756] = 689, - [757] = 726, - [758] = 684, - [759] = 719, - [760] = 760, - [761] = 733, - [762] = 697, - [763] = 734, - [764] = 764, - [765] = 695, - [766] = 682, + [753] = 753, + [754] = 754, + [755] = 755, + [756] = 756, + [757] = 757, + [758] = 720, + [759] = 759, + [760] = 727, + [761] = 682, + [762] = 729, + [763] = 763, + [764] = 741, + [765] = 699, + [766] = 766, [767] = 767, [768] = 768, [769] = 769, - [770] = 760, + [770] = 770, [771] = 771, - [772] = 681, - [773] = 725, + [772] = 772, + [773] = 767, [774] = 774, - [775] = 775, - [776] = 751, - [777] = 777, - [778] = 778, - [779] = 702, - [780] = 730, - [781] = 695, - [782] = 726, - [783] = 783, - [784] = 750, - [785] = 775, - [786] = 771, - [787] = 689, - [788] = 745, +}; + +static const TSCharacterRange sym_rust_expression_character_set_1[] = { + {0, 0x08}, {0x0e, 0x1f}, {'!', '('}, {'*', '+'}, {'-', ':'}, {'=', '?'}, {'A', '\\'}, {'^', 'z'}, + {'|', '|'}, {'~', 0x10ffff}, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -2334,3628 +2374,4388 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(170); + if (eof) ADVANCE(144); ADVANCE_MAP( - '!', 303, - '"', 304, - '%', 292, - '&', 281, - '\'', 308, - '(', 225, - ')', 226, - '*', 291, - '+', 289, - ',', 223, - '-', 290, - '.', 268, - '/', 243, - '0', 313, - ':', 222, - ';', 276, - '<', 232, - '=', 241, - '>', 238, - '@', 262, - 'S', 487, - '[', 227, - '\\', 488, - ']', 228, - '^', 299, - '_', 283, - 'a', 459, - 'b', 469, - 'c', 449, - 'e', 462, - 'f', 411, - 'h', 483, - 'i', 391, - 'j', 429, - 'l', 446, - 'm', 489, - 's', 430, - 't', 475, - 'u', 392, - '{', 220, - '|', 288, - '}', 221, + '!', 297, + '"', 472, + '&', 313, + '\'', 476, + '(', 213, + ')', 214, + ',', 210, + '.', 299, + '/', 228, + '0', 481, + ':', 209, + ';', 303, + '<', 220, + '=', 227, + '>', 224, + '@', 146, + 'O', 453, + 'S', 439, + 'T', 360, + '[', 215, + ']', 216, + '_', 315, + 'a', 405, + 'b', 419, + 'c', 394, + 'e', 408, + 'f', 339, + 'h', 440, + 'i', 319, + 'j', 357, + 'l', 385, + 'm', 363, + 'o', 455, + 'r', 384, + 's', 358, + 't', 365, + 'u', 320, + '{', 207, + '|', 507, + '}', 208, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(0); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(314); - if (lookahead != 0) ADVANCE(506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(482); + if (lookahead != 0) ADVANCE(471); END_STATE(); case 1: ADVANCE_MAP( - '!', 427, - '%', 292, - '&', 281, - '(', 225, - '*', 291, - '+', 289, - '-', 290, - '.', 267, - '/', 243, - '<', 232, - '=', 428, - '>', 238, - '@', 263, - '[', 227, - '^', 299, - '|', 288, - '}', 221, + '!', 297, + '&', 313, + '(', 213, + ')', 214, + ',', 210, + '-', 55, + '.', 298, + '/', 228, + ':', 209, + ';', 303, + '<', 219, + '=', 227, + '>', 224, + '@', 145, + '[', 215, + ']', 216, + '{', 207, + '|', 507, + '}', 208, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(1); - if (lookahead != 0 && - (lookahead < '{' || '}' < lookahead)) ADVANCE(506); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); END_STATE(); case 2: ADVANCE_MAP( - '!', 427, - '%', 292, - '&', 281, - '*', 291, - '+', 289, - '-', 290, - '.', 267, - '/', 243, - '<', 232, - '=', 428, - '>', 238, - '@', 263, - '[', 227, - '^', 299, - '|', 288, - '}', 221, + '!', 297, + '(', 213, + '.', 298, + '/', 228, + '=', 56, + '>', 224, + '@', 145, + '[', 215, + '}', 208, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(2); - if (lookahead != 0 && - (lookahead < '{' || '}' < lookahead)) ADVANCE(506); + if (lookahead == ':' || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(280); END_STATE(); case 3: - ADVANCE_MAP( - '!', 427, - '%', 292, - '&', 281, - '*', 291, - '+', 289, - '-', 290, - '/', 243, - '<', 232, - '=', 428, - '>', 238, - '@', 263, - '^', 299, - '|', 288, - '}', 221, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(3); - if (lookahead != 0 && - (lookahead < '{' || '}' < lookahead)) ADVANCE(506); + if (lookahead == '!') ADVANCE(289); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(3); END_STATE(); case 4: ADVANCE_MAP( - '!', 56, - '"', 304, - '%', 292, - '&', 281, - '\'', 308, - '(', 225, - ')', 226, - '*', 291, - '+', 289, - ',', 223, - '-', 290, - '.', 267, - '/', 243, - '0', 315, - ';', 276, - '<', 236, - '=', 57, - '>', 238, - '@', 261, - '[', 227, - ']', 228, - '^', 299, - '_', 284, - '`', 70, - 'f', 186, - 't', 203, - '{', 220, - '|', 288, - '}', 221, + '"', 472, + '&', 313, + '(', 213, + ')', 214, + ',', 210, + '-', 55, + '/', 134, + ':', 209, + ';', 303, + '<', 219, + '=', 227, + '>', 224, + '@', 145, + 'S', 185, + '[', 215, + ']', 216, + '`', 67, + 'b', 179, + 'c', 171, + 'f', 158, + 'i', 151, + 's', 187, + 'u', 152, + '{', 207, + '|', 507, + '}', 208, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(4); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(316); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(192); END_STATE(); case 5: ADVANCE_MAP( - '!', 56, - '%', 292, - '&', 281, - '(', 225, - ')', 226, - '*', 291, - '+', 289, - ',', 223, - '-', 290, - '.', 267, - '/', 243, - ':', 222, - ';', 276, - '<', 236, - '=', 241, - '>', 238, - '[', 227, - ']', 228, - '^', 299, - '{', 220, - '|', 288, - '}', 221, + '"', 472, + '\'', 476, + '(', 213, + ')', 214, + ',', 210, + '0', 483, + '=', 56, + ']', 216, + '_', 316, + 'f', 165, + 't', 183, + '}', 208, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(5); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(484); if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(517); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); END_STATE(); case 6: - ADVANCE_MAP( - '!', 56, - '%', 292, - '&', 281, - ')', 226, - '*', 291, - '+', 289, - ',', 223, - '-', 290, - '.', 267, - '/', 243, - ':', 222, - '<', 236, - '=', 241, - '>', 238, - '[', 227, - ']', 228, - '^', 299, - 'a', 102, - 'c', 125, - 'h', 134, - 'i', 89, - 'j', 72, - 's', 133, - '{', 220, - '|', 288, - '}', 221, - ); + if (lookahead == '"') ADVANCE(472); + if (lookahead == '\'') ADVANCE(476); + if (lookahead == '(') ADVANCE(213); + if (lookahead == '0') ADVANCE(483); + if (lookahead == '_') ADVANCE(317); + if (lookahead == 'f') ADVANCE(571); + if (lookahead == 't') ADVANCE(611); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(6); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(484); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); END_STATE(); case 7: ADVANCE_MAP( - '!', 302, - '"', 304, - '&', 280, - '\'', 308, - '(', 225, - ')', 226, - '*', 291, - ',', 223, - '-', 290, - '/', 159, - '0', 315, - '=', 240, - '>', 237, - '[', 227, - ']', 228, - 'f', 186, - 't', 203, - '{', 220, - '|', 287, + '"', 472, + '\'', 476, + ')', 214, + '0', 481, + ':', 355, + '@', 145, + 'f', 193, + 't', 198, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(7); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(316); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(482); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(202); + if (lookahead != 0 && + lookahead != ',' && + (lookahead < '0' || '<' < lookahead) && + lookahead != ']' && + (lookahead < 'a' || '{' < lookahead) && + lookahead != '}') ADVANCE(471); END_STATE(); case 8: ADVANCE_MAP( - '!', 302, - '"', 304, - '&', 280, - '\'', 308, - '(', 225, - '*', 291, - '-', 290, - '0', 315, - '[', 227, - 'f', 186, - 'l', 190, - 't', 203, - '|', 287, + '"', 472, + '\'', 476, + '0', 481, + ':', 355, + '@', 145, + 'f', 193, + 'l', 196, + 't', 198, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(8); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(316); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(482); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(202); + if (lookahead != 0 && + lookahead != ')' && + lookahead != ',' && + (lookahead < '0' || '<' < lookahead) && + lookahead != ']' && + (lookahead < 'a' || '{' < lookahead) && + lookahead != '}') ADVANCE(471); END_STATE(); case 9: - if (lookahead == '"') ADVANCE(304); - if (lookahead == '\'') ADVANCE(308); - if (lookahead == '(') ADVANCE(225); - if (lookahead == '0') ADVANCE(315); - if (lookahead == '_') ADVANCE(285); - if (lookahead == 'f') ADVANCE(507); - if (lookahead == 't') ADVANCE(514); + if (lookahead == '"') ADVANCE(472); + if (lookahead == '\\') ADVANCE(113); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(9); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(316); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(517); + lookahead == ' ') ADVANCE(475); + if (lookahead != 0) ADVANCE(474); END_STATE(); case 10: - if (lookahead == '"') ADVANCE(304); - if (lookahead == '\\') ADVANCE(137); + if (lookahead == '"') ADVANCE(473); + if (lookahead == '@') ADVANCE(147); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(307); - if (lookahead != 0) ADVANCE(306); - END_STATE(); - case 11: - if (lookahead == '"') ADVANCE(305); - if (lookahead == '@') ADVANCE(264); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(11); + lookahead == ' ') SKIP(10); if (lookahead != 0 && lookahead != '/' && lookahead != '=' && - lookahead != '>') ADVANCE(282); + lookahead != '>') ADVANCE(314); + END_STATE(); + case 11: + if (lookahead == '#') ADVANCE(58); + if (lookahead != 0) ADVANCE(11); END_STATE(); case 12: - if (lookahead == '#') ADVANCE(61); - if (lookahead != 0) ADVANCE(12); + ADVANCE_MAP( + '&', 313, + '(', 213, + ')', 214, + ',', 210, + '-', 55, + '<', 219, + '=', 56, + '@', 145, + 'S', 185, + '[', 215, + ']', 216, + 'b', 179, + 'c', 171, + 'f', 158, + 'i', 151, + 's', 187, + 'u', 152, + '{', 207, + '|', 507, + '}', 208, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(12); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); END_STATE(); case 13: ADVANCE_MAP( - '&', 280, - '(', 225, - ')', 226, - ',', 223, - '.', 267, - '/', 243, - ';', 276, - '<', 231, - '=', 240, - '>', 237, - '@', 261, - '[', 227, - ']', 228, - '|', 287, - '}', 221, + '&', 313, + '(', 213, + '@', 145, + 'S', 185, + '[', 215, + 'b', 179, + 'c', 171, + 'f', 158, + 'i', 151, + 'm', 188, + 's', 187, + 'u', 152, + '|', 507, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(13); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(517); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); END_STATE(); case 14: ADVANCE_MAP( - '&', 280, - '(', 225, - ')', 226, - ',', 223, - '<', 231, - '>', 237, - 'S', 210, - '[', 227, - 'b', 202, - 'c', 194, - 'f', 180, - 'i', 173, - 's', 211, - 'u', 174, + '(', 213, + ')', 214, + ',', 210, + ':', 209, + '=', 227, + 'O', 114, + 'T', 68, + ']', 216, + 'a', 94, + 'c', 107, + 'h', 111, + 'i', 84, + 'j', 69, + 'r', 80, + 's', 112, + '{', 207, + '}', 208, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(14); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); END_STATE(); case 15: ADVANCE_MAP( - '&', 280, - '(', 225, - 'S', 210, - '[', 227, - 'b', 202, - 'c', 194, - 'f', 180, - 'i', 173, - 'm', 213, - 's', 211, - 'u', 174, + '(', 213, + 'b', 616, + 'c', 606, + 'e', 603, + 'f', 602, + 'i', 591, + 'l', 584, + 'm', 575, + 'o', 633, + 's', 572, + 't', 576, + 'u', 620, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(15); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); END_STATE(); case 16: ADVANCE_MAP( - '(', 225, - '.', 267, - '/', 243, - '=', 240, - '>', 237, - '@', 254, - '[', 227, - '}', 221, + '(', 213, + 'b', 616, + 'c', 606, + 'f', 607, + 'i', 592, + 'l', 584, + 'm', 575, + 'o', 633, + 's', 573, + 't', 576, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(16); - if (lookahead == ':' || - ('A' <= lookahead && lookahead <= 'Z') || + if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(260); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); END_STATE(); case 17: - if (lookahead == '(') ADVANCE(225); - if (lookahead == '.') ADVANCE(267); - if (lookahead == '<') ADVANCE(233); - if (lookahead == '@') ADVANCE(263); - if (lookahead == '[') ADVANCE(227); - if (lookahead == '}') ADVANCE(221); + if (lookahead == '(') ADVANCE(213); + if (lookahead == 'f') ADVANCE(609); + if (lookahead == 'm') ADVANCE(578); + if (lookahead == 'o') ADVANCE(633); + if (lookahead == 's') ADVANCE(573); + if (lookahead == 't') ADVANCE(576); + if (lookahead == '{') ADVANCE(207); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(17); - if (lookahead != 0 && - lookahead != '{') ADVANCE(506); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); END_STATE(); case 18: - if (lookahead == '(') ADVANCE(225); - if (lookahead == 's') ADVANCE(508); - if (lookahead == '{') ADVANCE(220); + ADVANCE_MAP( + ')', 214, + ',', 210, + '.', 24, + '/', 228, + ':', 209, + '=', 56, + '>', 224, + '@', 145, + ']', 216, + '{', 207, + '}', 208, + ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(18); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(517); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); END_STATE(); case 19: - if (lookahead == ')') ADVANCE(226); - if (lookahead == ',') ADVANCE(223); - if (lookahead == '=') ADVANCE(242); - if (lookahead == 'i') ADVANCE(89); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(19); + if (lookahead == '*') ADVANCE(59); + if (lookahead != 0) ADVANCE(19); END_STATE(); case 20: - if (lookahead == '*') ADVANCE(62); - if (lookahead != 0) ADVANCE(20); + if (lookahead == '-') ADVANCE(23); END_STATE(); case 21: - if (lookahead == ',') ADVANCE(223); - if (lookahead == '.') ADVANCE(26); - if (lookahead == '/') ADVANCE(243); - if (lookahead == ':') ADVANCE(222); - if (lookahead == '>') ADVANCE(237); - if (lookahead == '@') ADVANCE(261); - if (lookahead == '}') ADVANCE(221); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(21); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(517); + if (lookahead == '-') ADVANCE(54); + if (lookahead != 0) ADVANCE(23); END_STATE(); case 22: - if (lookahead == '-') ADVANCE(25); + if (lookahead == '-') ADVANCE(20); END_STATE(); case 23: - if (lookahead == '-') ADVANCE(60); - if (lookahead != 0) ADVANCE(25); + if (lookahead == '-') ADVANCE(21); + if (lookahead != 0) ADVANCE(23); END_STATE(); case 24: - if (lookahead == '-') ADVANCE(22); + if (lookahead == '.') ADVANCE(318); END_STATE(); case 25: - if (lookahead == '-') ADVANCE(23); - if (lookahead != 0) ADVANCE(25); - END_STATE(); - case 26: - if (lookahead == '.') ADVANCE(286); - END_STATE(); - case 27: - if (lookahead == '/') ADVANCE(243); - if (lookahead == '>') ADVANCE(237); - if (lookahead == '@') ADVANCE(254); - if (lookahead == 'e') ADVANCE(256); - if (lookahead == '}') ADVANCE(221); + if (lookahead == '/') ADVANCE(228); + if (lookahead == '=') ADVANCE(227); + if (lookahead == '>') ADVANCE(224); + if (lookahead == '@') ADVANCE(145); + if (lookahead == '}') ADVANCE(208); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(27); + lookahead == ' ') SKIP(25); if (lookahead == ':' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(260); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(280); + END_STATE(); + case 26: + if (lookahead == '/') ADVANCE(228); + if (lookahead == '>') ADVANCE(224); + if (lookahead == '@') ADVANCE(145); + if (lookahead == 'e') ADVANCE(278); + if (lookahead == '}') ADVANCE(208); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(26); + if (lookahead == ':' || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(280); + END_STATE(); + case 27: + if (lookahead == '1') ADVANCE(36); + if (lookahead == '3') ADVANCE(31); + if (lookahead == '6') ADVANCE(41); + if (lookahead == '8') ADVANCE(480); + if (lookahead == 's') ADVANCE(87); END_STATE(); case 28: if (lookahead == '1') ADVANCE(37); - if (lookahead == '3') ADVANCE(32); - if (lookahead == '6') ADVANCE(42); - if (lookahead == '8') ADVANCE(312); - if (lookahead == 's') ADVANCE(93); + if (lookahead == '3') ADVANCE(33); + if (lookahead == '6') ADVANCE(43); + if (lookahead == '8') ADVANCE(491); + if (lookahead == 's') ADVANCE(90); END_STATE(); case 29: if (lookahead == '1') ADVANCE(38); if (lookahead == '3') ADVANCE(34); if (lookahead == '6') ADVANCE(44); - if (lookahead == '8') ADVANCE(323); - if (lookahead == 's') ADVANCE(97); + if (lookahead == '8') ADVANCE(488); + if (lookahead == 's') ADVANCE(91); END_STATE(); case 30: if (lookahead == '1') ADVANCE(39); if (lookahead == '3') ADVANCE(35); if (lookahead == '6') ADVANCE(45); - if (lookahead == '8') ADVANCE(320); - if (lookahead == 's') ADVANCE(98); + if (lookahead == '8') ADVANCE(485); + if (lookahead == 's') ADVANCE(92); END_STATE(); case 31: - if (lookahead == '1') ADVANCE(40); - if (lookahead == '3') ADVANCE(36); - if (lookahead == '6') ADVANCE(46); - if (lookahead == '8') ADVANCE(317); - if (lookahead == 's') ADVANCE(99); + if (lookahead == '2') ADVANCE(480); END_STATE(); case 32: - if (lookahead == '2') ADVANCE(312); + if (lookahead == '2') ADVANCE(494); END_STATE(); case 33: - if (lookahead == '2') ADVANCE(326); + if (lookahead == '2') ADVANCE(491); END_STATE(); case 34: - if (lookahead == '2') ADVANCE(323); + if (lookahead == '2') ADVANCE(488); END_STATE(); case 35: - if (lookahead == '2') ADVANCE(320); + if (lookahead == '2') ADVANCE(485); END_STATE(); case 36: - if (lookahead == '2') ADVANCE(317); + if (lookahead == '2') ADVANCE(46); + if (lookahead == '6') ADVANCE(480); END_STATE(); case 37: if (lookahead == '2') ADVANCE(47); - if (lookahead == '6') ADVANCE(312); + if (lookahead == '6') ADVANCE(491); END_STATE(); case 38: if (lookahead == '2') ADVANCE(48); - if (lookahead == '6') ADVANCE(323); + if (lookahead == '6') ADVANCE(488); END_STATE(); case 39: if (lookahead == '2') ADVANCE(49); - if (lookahead == '6') ADVANCE(320); + if (lookahead == '6') ADVANCE(485); END_STATE(); case 40: - if (lookahead == '2') ADVANCE(50); - if (lookahead == '6') ADVANCE(317); + if (lookahead == '3') ADVANCE(32); + if (lookahead == '6') ADVANCE(42); END_STATE(); case 41: - if (lookahead == '3') ADVANCE(33); - if (lookahead == '6') ADVANCE(43); + if (lookahead == '4') ADVANCE(480); END_STATE(); case 42: - if (lookahead == '4') ADVANCE(312); + if (lookahead == '4') ADVANCE(494); END_STATE(); case 43: - if (lookahead == '4') ADVANCE(326); + if (lookahead == '4') ADVANCE(491); END_STATE(); case 44: - if (lookahead == '4') ADVANCE(323); + if (lookahead == '4') ADVANCE(488); END_STATE(); case 45: - if (lookahead == '4') ADVANCE(320); + if (lookahead == '4') ADVANCE(485); END_STATE(); case 46: - if (lookahead == '4') ADVANCE(317); + if (lookahead == '8') ADVANCE(480); END_STATE(); case 47: - if (lookahead == '8') ADVANCE(312); + if (lookahead == '8') ADVANCE(491); END_STATE(); case 48: - if (lookahead == '8') ADVANCE(323); + if (lookahead == '8') ADVANCE(488); END_STATE(); case 49: - if (lookahead == '8') ADVANCE(320); + if (lookahead == '8') ADVANCE(485); END_STATE(); case 50: - if (lookahead == '8') ADVANCE(317); + if (lookahead == ':') ADVANCE(133); END_STATE(); case 51: - if (lookahead == ':') ADVANCE(222); - if (lookahead == ';') ADVANCE(276); - if (lookahead == '<') ADVANCE(233); - if (lookahead == '@') ADVANCE(263); - if (lookahead == '}') ADVANCE(221); + if (lookahead == '<') ADVANCE(221); + if (lookahead == '@') ADVANCE(146); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(51); if (lookahead != 0 && - lookahead != '{') ADVANCE(506); + lookahead != '{' && + lookahead != '}') ADVANCE(570); END_STATE(); case 52: - if (lookahead == ':') ADVANCE(158); + if (lookahead == '<') ADVANCE(222); + if (lookahead == '@') ADVANCE(146); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(52); + if (lookahead != 0 && + lookahead != '{' && + lookahead != '}') ADVANCE(570); END_STATE(); case 53: - if (lookahead == ';') ADVANCE(276); - if (lookahead == '<') ADVANCE(233); - if (lookahead == '@') ADVANCE(263); - if (lookahead == '}') ADVANCE(221); + if (lookahead == '=') ADVANCE(56); + if (lookahead == 'i') ADVANCE(83); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(53); - if (lookahead != 0 && - lookahead != '{') ADVANCE(506); END_STATE(); case 54: - if (lookahead == '<') ADVANCE(233); - if (lookahead == '@') ADVANCE(263); - if (lookahead == 'e') ADVANCE(462); - if (lookahead == '}') ADVANCE(221); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(54); - if (lookahead != 0 && - lookahead != '{') ADVANCE(506); + if (lookahead == '>') ADVANCE(551); + if (lookahead != 0) ADVANCE(23); END_STATE(); case 55: - if (lookahead == '<') ADVANCE(233); - if (lookahead == '@') ADVANCE(263); - if (lookahead == '}') ADVANCE(221); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(55); - if (lookahead != 0 && - lookahead != '{') ADVANCE(506); + if (lookahead == '>') ADVANCE(508); END_STATE(); case 56: - if (lookahead == '=') ADVANCE(294); + if (lookahead == '>') ADVANCE(306); END_STATE(); case 57: - if (lookahead == '=') ADVANCE(293); - if (lookahead == '>') ADVANCE(274); + if (lookahead == '@') ADVANCE(312); END_STATE(); case 58: - if (lookahead == '=') ADVANCE(59); - if (lookahead == 'i') ADVANCE(88); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(58); + if (lookahead == '@') ADVANCE(552); + if (lookahead != 0) ADVANCE(11); END_STATE(); case 59: - if (lookahead == '>') ADVANCE(274); + if (lookahead == '@') ADVANCE(550); + if (lookahead != 0) ADVANCE(19); END_STATE(); case 60: - if (lookahead == '>') ADVANCE(376); - if (lookahead != 0) ADVANCE(25); + if (lookahead == '@') ADVANCE(556); END_STATE(); case 61: - if (lookahead == '@') ADVANCE(377); - if (lookahead != 0) ADVANCE(12); + if (lookahead == '\\') ADVANCE(113); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(478); + if (lookahead != 0 && + lookahead != '\'') ADVANCE(477); END_STATE(); case 62: - if (lookahead == '@') ADVANCE(375); - if (lookahead != 0) ADVANCE(20); + if (lookahead == '`') ADVANCE(553); END_STATE(); case 63: - if (lookahead == '@') ADVANCE(381); + if (lookahead == '`') ADVANCE(60); END_STATE(); case 64: - if (lookahead == '\\') ADVANCE(137); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(310); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(309); + if (lookahead == '`') ADVANCE(135); + if (lookahead != 0) ADVANCE(555); END_STATE(); case 65: - if (lookahead == '`') ADVANCE(378); + if (lookahead == '`') ADVANCE(62); END_STATE(); case 66: - if (lookahead == '`') ADVANCE(63); + if (lookahead == '`') ADVANCE(64); + if (lookahead != 0) ADVANCE(555); END_STATE(); case 67: - if (lookahead == '`') ADVANCE(160); - if (lookahead != 0) ADVANCE(380); + if (lookahead == '`') ADVANCE(63); END_STATE(); case 68: - if (lookahead == '`') ADVANCE(65); + if (lookahead == 'a') ADVANCE(103); END_STATE(); case 69: - if (lookahead == '`') ADVANCE(67); - if (lookahead != 0) ADVANCE(380); + if (lookahead == 'a') ADVANCE(115); + if (lookahead == 's') ADVANCE(559); END_STATE(); case 70: - if (lookahead == '`') ADVANCE(66); + ADVANCE_MAP( + 'a', 266, + 'b', 240, + 'c', 262, + 'e', 260, + 'h', 265, + 'i', 259, + 'l', 255, + 'm', 251, + 'p', 244, + 's', 263, + 't', 267, + 'w', 245, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(70); + if (('A' <= lookahead && lookahead <= 'Z') || + ('d' <= lookahead && lookahead <= 'z')) ADVANCE(275); END_STATE(); case 71: - if (lookahead == 'a') ADVANCE(100); + if (lookahead == 'a') ADVANCE(106); END_STATE(); case 72: - if (lookahead == 'a') ADVANCE(140); - if (lookahead == 's') ADVANCE(385); + if (lookahead == 'c') ADVANCE(104); END_STATE(); case 73: - if (lookahead == 'a') ADVANCE(128); + if (lookahead == 'd') ADVANCE(81); END_STATE(); case 74: - if (lookahead == 'a') ADVANCE(126); + if (lookahead == 'e') ADVANCE(480); END_STATE(); case 75: - if (lookahead == 'c') ADVANCE(92); + if (lookahead == 'e') ADVANCE(491); END_STATE(); case 76: - if (lookahead == 'c') ADVANCE(121); + if (lookahead == 'e') ADVANCE(488); END_STATE(); case 77: - if (lookahead == 'c') ADVANCE(131); + if (lookahead == 'e') ADVANCE(485); END_STATE(); case 78: - if (lookahead == 'e') ADVANCE(312); + if (lookahead == 'e') ADVANCE(564); END_STATE(); case 79: - if (lookahead == 'e') ADVANCE(171); + if (lookahead == 'e') ADVANCE(563); END_STATE(); case 80: - if (lookahead == 'e') ADVANCE(323); + if (lookahead == 'e') ADVANCE(98); END_STATE(); case 81: - if (lookahead == 'e') ADVANCE(320); + if (lookahead == 'e') ADVANCE(102); END_STATE(); case 82: - if (lookahead == 'e') ADVANCE(317); + if (lookahead == 'e') ADVANCE(109); END_STATE(); case 83: - if (lookahead == 'e') ADVANCE(389); + if (lookahead == 'f') ADVANCE(231); END_STATE(); case 84: - if (lookahead == 'e') ADVANCE(388); + if (lookahead == 'f') ADVANCE(231); + if (lookahead == 'n') ADVANCE(239); END_STATE(); case 85: - if (lookahead == 'e') ADVANCE(277); + if (lookahead == 'f') ADVANCE(282); + if (lookahead == 'i') ADVANCE(281); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(85); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(284); END_STATE(); case 86: - if (lookahead == 'e') ADVANCE(71); + if (lookahead == 'g') ADVANCE(82); END_STATE(); case 87: - if (lookahead == 'e') ADVANCE(127); - END_STATE(); - case 88: - if (lookahead == 'f') ADVANCE(272); - END_STATE(); - case 89: - if (lookahead == 'f') ADVANCE(272); - if (lookahead == 'n') ADVANCE(251); - END_STATE(); - case 90: - if (lookahead == 'f') ADVANCE(245); - END_STATE(); - case 91: - if (lookahead == 'f') ADVANCE(245); - if (lookahead == 'm') ADVANCE(115); - END_STATE(); - case 92: - if (lookahead == 'h') ADVANCE(273); - END_STATE(); - case 93: - if (lookahead == 'i') ADVANCE(142); - END_STATE(); - case 94: if (lookahead == 'i') ADVANCE(117); END_STATE(); + case 88: + if (lookahead == 'i') ADVANCE(101); + END_STATE(); + case 89: + if (lookahead == 'i') ADVANCE(99); + END_STATE(); + case 90: + if (lookahead == 'i') ADVANCE(118); + END_STATE(); + case 91: + if (lookahead == 'i') ADVANCE(119); + END_STATE(); + case 92: + if (lookahead == 'i') ADVANCE(120); + END_STATE(); + case 93: + if (lookahead == 'l') ADVANCE(557); + END_STATE(); + case 94: + if (lookahead == 'l') ADVANCE(100); + END_STATE(); case 95: - if (lookahead == 'i') ADVANCE(111); + if (lookahead == 'l') ADVANCE(78); END_STATE(); case 96: - if (lookahead == 'i') ADVANCE(109); + if (lookahead == 'm') ADVANCE(93); END_STATE(); case 97: - if (lookahead == 'i') ADVANCE(143); + if (lookahead == 'n') ADVANCE(562); END_STATE(); case 98: - if (lookahead == 'i') ADVANCE(144); + if (lookahead == 'n') ADVANCE(73); END_STATE(); case 99: - if (lookahead == 'i') ADVANCE(145); + if (lookahead == 'n') ADVANCE(79); END_STATE(); case 100: - if (lookahead == 'k') ADVANCE(275); + if (lookahead == 'p') ADVANCE(89); END_STATE(); case 101: - if (lookahead == 'l') ADVANCE(382); + if (lookahead == 'p') ADVANCE(110); END_STATE(); case 102: - if (lookahead == 'l') ADVANCE(116); - if (lookahead == 's') ADVANCE(172); + if (lookahead == 'r') ADVANCE(509); END_STATE(); case 103: - if (lookahead == 'l') ADVANCE(83); - END_STATE(); - case 104: - if (lookahead == 'm') ADVANCE(224); - END_STATE(); - case 105: - if (lookahead == 'm') ADVANCE(101); - END_STATE(); - case 106: - if (lookahead == 'n') ADVANCE(136); - END_STATE(); - case 107: - if (lookahead == 'n') ADVANCE(239); - if (lookahead == 'o') ADVANCE(118); - END_STATE(); - case 108: - if (lookahead == 'n') ADVANCE(387); - END_STATE(); - case 109: - if (lookahead == 'n') ADVANCE(139); - END_STATE(); - case 110: - if (lookahead == 'n') ADVANCE(129); - END_STATE(); - case 111: - if (lookahead == 'n') ADVANCE(84); - END_STATE(); - case 112: - if (lookahead == 'o') ADVANCE(118); - END_STATE(); - case 113: - if (lookahead == 'o') ADVANCE(110); - END_STATE(); - case 114: - if (lookahead == 'o') ADVANCE(122); - END_STATE(); - case 115: - if (lookahead == 'p') ADVANCE(114); - END_STATE(); - case 116: - if (lookahead == 'p') ADVANCE(95); - END_STATE(); - case 117: - if (lookahead == 'p') ADVANCE(132); - END_STATE(); - case 118: - if (lookahead == 'r') ADVANCE(249); - END_STATE(); - case 119: if (lookahead == 'r') ADVANCE(86); END_STATE(); - case 120: - if (lookahead == 'r') ADVANCE(138); + case 104: + if (lookahead == 'r') ADVANCE(88); END_STATE(); - case 121: - if (lookahead == 'r') ADVANCE(94); + case 105: + if (lookahead == 's') ADVANCE(558); END_STATE(); - case 122: - if (lookahead == 'r') ADVANCE(130); + case 106: + if (lookahead == 's') ADVANCE(72); END_STATE(); - case 123: - if (lookahead == 's') ADVANCE(383); + case 107: + if (lookahead == 's') ADVANCE(105); END_STATE(); - case 124: - if (lookahead == 's') ADVANCE(79); + case 108: + if (lookahead == 't') ADVANCE(510); END_STATE(); - case 125: - if (lookahead == 's') ADVANCE(123); + case 109: + if (lookahead == 't') ADVANCE(511); END_STATE(); - case 126: - if (lookahead == 's') ADVANCE(76); + case 110: + if (lookahead == 't') ADVANCE(561); END_STATE(); - case 127: - if (lookahead == 't') ADVANCE(269); - END_STATE(); - case 128: - if (lookahead == 't') ADVANCE(75); - END_STATE(); - case 129: + case 111: if (lookahead == 't') ADVANCE(96); END_STATE(); + case 112: + if (lookahead == 't') ADVANCE(116); + END_STATE(); + case 113: + ADVANCE_MAP( + 'u', 121, + 'x', 132, + '"', 479, + '\'', 479, + '0', 479, + '\\', 479, + 'n', 479, + 'r', 479, + 't', 479, + ); + END_STATE(); + case 114: + if (lookahead == 'u') ADVANCE(108); + END_STATE(); + case 115: + if (lookahead == 'v') ADVANCE(71); + END_STATE(); + case 116: + if (lookahead == 'y') ADVANCE(95); + END_STATE(); + case 117: + if (lookahead == 'z') ADVANCE(74); + END_STATE(); + case 118: + if (lookahead == 'z') ADVANCE(75); + END_STATE(); + case 119: + if (lookahead == 'z') ADVANCE(76); + END_STATE(); + case 120: + if (lookahead == 'z') ADVANCE(77); + END_STATE(); + case 121: + if (lookahead == '{') ADVANCE(130); + END_STATE(); + case 122: + if (lookahead == '}') ADVANCE(479); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(122); + END_STATE(); + case 123: + if (lookahead == '+' || + lookahead == '-') ADVANCE(128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(498); + END_STATE(); + case 124: + if (lookahead == '0' || + lookahead == '1') ADVANCE(492); + END_STATE(); + case 125: + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(125); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); + END_STATE(); + case 126: + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(126); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 127: + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(489); + END_STATE(); + case 128: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(498); + END_STATE(); + case 129: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(479); + END_STATE(); case 130: - if (lookahead == 't') ADVANCE(217); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(122); END_STATE(); case 131: - if (lookahead == 't') ADVANCE(219); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(486); END_STATE(); case 132: - if (lookahead == 't') ADVANCE(386); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(129); END_STATE(); case 133: - if (lookahead == 't') ADVANCE(141); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); END_STATE(); case 134: - if (lookahead == 't') ADVANCE(105); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ') ADVANCE(205); END_STATE(); case 135: - if (lookahead == 't') ADVANCE(120); + if (lookahead != 0 && + lookahead != '@') ADVANCE(555); END_STATE(); case 136: - if (lookahead == 'u') ADVANCE(104); + if (eof) ADVANCE(144); + if (lookahead == '!') ADVANCE(297); + if (lookahead == '(') ADVANCE(213); + if (lookahead == '.') ADVANCE(298); + if (lookahead == '<') ADVANCE(220); + if (lookahead == '@') ADVANCE(146); + if (lookahead == '[') ADVANCE(215); + if (lookahead == '}') ADVANCE(208); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(136); + if (lookahead != 0 && + lookahead != '{') ADVANCE(570); END_STATE(); case 137: - ADVANCE_MAP( - 'u', 146, - 'x', 157, - '"', 311, - '\'', 311, - '0', 311, - '\\', 311, - 'n', 311, - 'r', 311, - 't', 311, - ); + if (eof) ADVANCE(144); + if (lookahead == '(') ADVANCE(213); + if (lookahead == '.') ADVANCE(298); + if (lookahead == '<') ADVANCE(220); + if (lookahead == '@') ADVANCE(146); + if (lookahead == '[') ADVANCE(215); + if (lookahead == '}') ADVANCE(208); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(137); + if (lookahead != 0 && + lookahead != '{') ADVANCE(570); END_STATE(); case 138: - if (lookahead == 'u') ADVANCE(77); + if (eof) ADVANCE(144); + if (lookahead == '(') ADVANCE(213); + if (lookahead == ';') ADVANCE(303); + if (lookahead == '<') ADVANCE(220); + if (lookahead == '@') ADVANCE(146); + if (lookahead == '{') ADVANCE(207); + if (lookahead == '}') ADVANCE(208); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(138); + if (lookahead != 0) ADVANCE(570); END_STATE(); case 139: - if (lookahead == 'u') ADVANCE(85); + if (eof) ADVANCE(144); + if (lookahead == ':') ADVANCE(209); + if (lookahead == ';') ADVANCE(303); + if (lookahead == '<') ADVANCE(220); + if (lookahead == '@') ADVANCE(146); + if (lookahead == '}') ADVANCE(208); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(139); + if (lookahead != 0 && + lookahead != '{') ADVANCE(570); END_STATE(); case 140: - if (lookahead == 'v') ADVANCE(74); + if (eof) ADVANCE(144); + if (lookahead == ';') ADVANCE(303); + if (lookahead == '<') ADVANCE(220); + if (lookahead == '@') ADVANCE(146); + if (lookahead == '}') ADVANCE(208); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(140); + if (lookahead != 0 && + lookahead != '{') ADVANCE(570); END_STATE(); case 141: - if (lookahead == 'y') ADVANCE(103); + if (eof) ADVANCE(144); + if (lookahead == '<') ADVANCE(220); + if (lookahead == '@') ADVANCE(146); + if (lookahead == 'e') ADVANCE(567); + if (lookahead == '{') ADVANCE(207); + if (lookahead == '}') ADVANCE(208); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(141); + if (lookahead != 0) ADVANCE(570); END_STATE(); case 142: - if (lookahead == 'z') ADVANCE(78); + if (eof) ADVANCE(144); + if (lookahead == '<') ADVANCE(220); + if (lookahead == '@') ADVANCE(146); + if (lookahead == '}') ADVANCE(208); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(142); + if (lookahead != 0 && + lookahead != '{') ADVANCE(570); END_STATE(); case 143: - if (lookahead == 'z') ADVANCE(80); + if (eof) ADVANCE(144); + if (lookahead == '<') ADVANCE(223); + if (lookahead == '@') ADVANCE(146); + if (lookahead == 'a') ADVANCE(568); + if (lookahead == '{') ADVANCE(207); + if (lookahead == '}') ADVANCE(208); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(143); + if (lookahead != 0) ADVANCE(570); END_STATE(); case 144: - if (lookahead == 'z') ADVANCE(81); - END_STATE(); - case 145: - if (lookahead == 'z') ADVANCE(82); - END_STATE(); - case 146: - if (lookahead == '{') ADVANCE(155); - END_STATE(); - case 147: - if (lookahead == '}') ADVANCE(311); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(147); - END_STATE(); - case 148: - if (lookahead == '+' || - lookahead == '-') ADVANCE(153); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(330); - END_STATE(); - case 149: - if (lookahead == '0' || - lookahead == '1') ADVANCE(324); - END_STATE(); - case 150: - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(150); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 151: - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(151); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(252); - END_STATE(); - case 152: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(321); - END_STATE(); - case 153: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(330); - END_STATE(); - case 154: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(311); - END_STATE(); - case 155: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(147); - END_STATE(); - case 156: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(318); - END_STATE(); - case 157: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(154); - END_STATE(); - case 158: - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 159: - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(218); - END_STATE(); - case 160: - if (lookahead != 0 && - lookahead != '@') ADVANCE(380); - END_STATE(); - case 161: - if (eof) ADVANCE(170); - ADVANCE_MAP( - '!', 427, - '%', 292, - '&', 281, - '(', 225, - '*', 291, - '+', 289, - '-', 290, - '.', 267, - '/', 243, - '<', 234, - '=', 428, - '>', 238, - '@', 262, - '[', 227, - '^', 299, - '|', 288, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(161); - if (lookahead != 0 && - (lookahead < '{' || '}' < lookahead)) ADVANCE(506); - END_STATE(); - case 162: - if (eof) ADVANCE(170); - ADVANCE_MAP( - '!', 427, - '%', 292, - '&', 281, - '*', 291, - '+', 289, - '-', 290, - '.', 267, - '/', 243, - '<', 234, - '=', 428, - '>', 238, - '@', 262, - '[', 227, - '^', 299, - '|', 288, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(162); - if (lookahead != 0 && - (lookahead < '{' || '}' < lookahead)) ADVANCE(506); - END_STATE(); - case 163: - if (eof) ADVANCE(170); - ADVANCE_MAP( - '!', 427, - '%', 292, - '&', 281, - '*', 291, - '+', 289, - '-', 290, - '/', 243, - '<', 234, - '=', 428, - '>', 238, - '@', 262, - '^', 299, - '|', 288, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(163); - if (lookahead != 0 && - (lookahead < '{' || '}' < lookahead)) ADVANCE(506); - END_STATE(); - case 164: - if (eof) ADVANCE(170); - if (lookahead == '(') ADVANCE(225); - if (lookahead == '.') ADVANCE(267); - if (lookahead == '<') ADVANCE(235); - if (lookahead == '@') ADVANCE(262); - if (lookahead == '[') ADVANCE(227); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(164); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 165: - if (eof) ADVANCE(170); - if (lookahead == ':') ADVANCE(222); - if (lookahead == ';') ADVANCE(276); - if (lookahead == '<') ADVANCE(235); - if (lookahead == '@') ADVANCE(262); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(165); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 166: - if (eof) ADVANCE(170); - if (lookahead == ';') ADVANCE(276); - if (lookahead == '<') ADVANCE(235); - if (lookahead == '@') ADVANCE(262); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(166); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 167: - if (eof) ADVANCE(170); - if (lookahead == '<') ADVANCE(233); - if (lookahead == '@') ADVANCE(262); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(167); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 168: - if (eof) ADVANCE(170); - if (lookahead == '<') ADVANCE(235); - if (lookahead == '@') ADVANCE(262); - if (lookahead == 'a') ADVANCE(478); - if (lookahead == '{') ADVANCE(220); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(168); - if (lookahead != 0 && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 169: - if (eof) ADVANCE(170); - if (lookahead == '<') ADVANCE(235); - if (lookahead == '@') ADVANCE(262); - if (lookahead == 'e') ADVANCE(462); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(169); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 170: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 171: - ACCEPT_TOKEN(anon_sym_ATuse); - END_STATE(); - case 172: - ACCEPT_TOKEN(anon_sym_as); - END_STATE(); - case 173: - ACCEPT_TOKEN(aux_sym_rust_path_token1); - if (lookahead == '1') ADVANCE(176); - if (lookahead == '3') ADVANCE(177); - if (lookahead == '6') ADVANCE(182); - if (lookahead == '8') ADVANCE(338); - if (lookahead == ':') ADVANCE(52); - if (lookahead == 's') ADVANCE(195); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 174: - ACCEPT_TOKEN(aux_sym_rust_path_token1); - if (lookahead == '1') ADVANCE(179); - if (lookahead == '3') ADVANCE(178); - if (lookahead == '6') ADVANCE(183); - if (lookahead == '8') ADVANCE(350); - if (lookahead == ':') ADVANCE(52); - if (lookahead == 's') ADVANCE(197); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 175: - ACCEPT_TOKEN(aux_sym_rust_path_token1); - if (lookahead == '2') ADVANCE(362); - if (lookahead == ':') ADVANCE(52); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 176: - ACCEPT_TOKEN(aux_sym_rust_path_token1); - if (lookahead == '2') ADVANCE(184); - if (lookahead == '6') ADVANCE(340); - if (lookahead == ':') ADVANCE(52); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 177: - ACCEPT_TOKEN(aux_sym_rust_path_token1); - if (lookahead == '2') ADVANCE(342); - if (lookahead == ':') ADVANCE(52); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 178: - ACCEPT_TOKEN(aux_sym_rust_path_token1); - if (lookahead == '2') ADVANCE(354); - if (lookahead == ':') ADVANCE(52); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 179: - ACCEPT_TOKEN(aux_sym_rust_path_token1); - if (lookahead == '2') ADVANCE(185); - if (lookahead == '6') ADVANCE(352); - if (lookahead == ':') ADVANCE(52); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 180: - ACCEPT_TOKEN(aux_sym_rust_path_token1); - if (lookahead == '3') ADVANCE(175); - if (lookahead == '6') ADVANCE(181); - if (lookahead == ':') ADVANCE(52); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 181: - ACCEPT_TOKEN(aux_sym_rust_path_token1); - if (lookahead == '4') ADVANCE(364); - if (lookahead == ':') ADVANCE(52); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 182: - ACCEPT_TOKEN(aux_sym_rust_path_token1); - if (lookahead == '4') ADVANCE(344); - if (lookahead == ':') ADVANCE(52); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 183: - ACCEPT_TOKEN(aux_sym_rust_path_token1); - if (lookahead == '4') ADVANCE(356); - if (lookahead == ':') ADVANCE(52); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 184: - ACCEPT_TOKEN(aux_sym_rust_path_token1); - if (lookahead == '8') ADVANCE(346); - if (lookahead == ':') ADVANCE(52); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 185: - ACCEPT_TOKEN(aux_sym_rust_path_token1); - if (lookahead == '8') ADVANCE(358); - if (lookahead == ':') ADVANCE(52); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 186: - ACCEPT_TOKEN(aux_sym_rust_path_token1); - if (lookahead == ':') ADVANCE(52); - if (lookahead == 'a') ADVANCE(198); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 187: - ACCEPT_TOKEN(aux_sym_rust_path_token1); - if (lookahead == ':') ADVANCE(52); - if (lookahead == 'a') ADVANCE(205); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 188: - ACCEPT_TOKEN(aux_sym_rust_path_token1); - if (lookahead == ':') ADVANCE(52); - if (lookahead == 'e') ADVANCE(332); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 189: - ACCEPT_TOKEN(aux_sym_rust_path_token1); - if (lookahead == ':') ADVANCE(52); - if (lookahead == 'e') ADVANCE(335); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 190: - ACCEPT_TOKEN(aux_sym_rust_path_token1); - if (lookahead == ':') ADVANCE(52); - if (lookahead == 'e') ADVANCE(208); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 191: - ACCEPT_TOKEN(aux_sym_rust_path_token1); - if (lookahead == ':') ADVANCE(52); - if (lookahead == 'e') ADVANCE(348); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 192: - ACCEPT_TOKEN(aux_sym_rust_path_token1); - if (lookahead == ':') ADVANCE(52); - if (lookahead == 'e') ADVANCE(360); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 193: - ACCEPT_TOKEN(aux_sym_rust_path_token1); - if (lookahead == ':') ADVANCE(52); - if (lookahead == 'g') ADVANCE(372); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 194: - ACCEPT_TOKEN(aux_sym_rust_path_token1); - if (lookahead == ':') ADVANCE(52); - if (lookahead == 'h') ADVANCE(187); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 195: - ACCEPT_TOKEN(aux_sym_rust_path_token1); - if (lookahead == ':') ADVANCE(52); - if (lookahead == 'i') ADVANCE(214); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 196: - ACCEPT_TOKEN(aux_sym_rust_path_token1); - if (lookahead == ':') ADVANCE(52); - if (lookahead == 'i') ADVANCE(200); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 197: - ACCEPT_TOKEN(aux_sym_rust_path_token1); - if (lookahead == ':') ADVANCE(52); - if (lookahead == 'i') ADVANCE(215); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 198: - ACCEPT_TOKEN(aux_sym_rust_path_token1); - if (lookahead == ':') ADVANCE(52); - if (lookahead == 'l') ADVANCE(207); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 199: - ACCEPT_TOKEN(aux_sym_rust_path_token1); - if (lookahead == ':') ADVANCE(52); - if (lookahead == 'l') ADVANCE(366); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 200: - ACCEPT_TOKEN(aux_sym_rust_path_token1); - if (lookahead == ':') ADVANCE(52); - if (lookahead == 'n') ADVANCE(193); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 201: - ACCEPT_TOKEN(aux_sym_rust_path_token1); - if (lookahead == ':') ADVANCE(52); - if (lookahead == 'o') ADVANCE(199); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 202: - ACCEPT_TOKEN(aux_sym_rust_path_token1); - if (lookahead == ':') ADVANCE(52); - if (lookahead == 'o') ADVANCE(201); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 203: - ACCEPT_TOKEN(aux_sym_rust_path_token1); - if (lookahead == ':') ADVANCE(52); - if (lookahead == 'r') ADVANCE(212); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 204: - ACCEPT_TOKEN(aux_sym_rust_path_token1); - if (lookahead == ':') ADVANCE(52); - if (lookahead == 'r') ADVANCE(370); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 205: - ACCEPT_TOKEN(aux_sym_rust_path_token1); - if (lookahead == ':') ADVANCE(52); - if (lookahead == 'r') ADVANCE(368); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 206: - ACCEPT_TOKEN(aux_sym_rust_path_token1); - if (lookahead == ':') ADVANCE(52); - if (lookahead == 'r') ADVANCE(196); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 207: - ACCEPT_TOKEN(aux_sym_rust_path_token1); - if (lookahead == ':') ADVANCE(52); - if (lookahead == 's') ADVANCE(189); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 208: - ACCEPT_TOKEN(aux_sym_rust_path_token1); - if (lookahead == ':') ADVANCE(52); - if (lookahead == 't') ADVANCE(271); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 209: - ACCEPT_TOKEN(aux_sym_rust_path_token1); - if (lookahead == ':') ADVANCE(52); - if (lookahead == 't') ADVANCE(374); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 210: - ACCEPT_TOKEN(aux_sym_rust_path_token1); - if (lookahead == ':') ADVANCE(52); - if (lookahead == 't') ADVANCE(206); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 211: - ACCEPT_TOKEN(aux_sym_rust_path_token1); - if (lookahead == ':') ADVANCE(52); - if (lookahead == 't') ADVANCE(204); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 212: - ACCEPT_TOKEN(aux_sym_rust_path_token1); - if (lookahead == ':') ADVANCE(52); - if (lookahead == 'u') ADVANCE(188); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 213: - ACCEPT_TOKEN(aux_sym_rust_path_token1); - if (lookahead == ':') ADVANCE(52); - if (lookahead == 'u') ADVANCE(209); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 214: - ACCEPT_TOKEN(aux_sym_rust_path_token1); - if (lookahead == ':') ADVANCE(52); - if (lookahead == 'z') ADVANCE(191); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'y')) ADVANCE(216); - END_STATE(); - case 215: - ACCEPT_TOKEN(aux_sym_rust_path_token1); - if (lookahead == ':') ADVANCE(52); - if (lookahead == 'z') ADVANCE(192); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'y')) ADVANCE(216); - END_STATE(); - case 216: - ACCEPT_TOKEN(aux_sym_rust_path_token1); - if (lookahead == ':') ADVANCE(52); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 217: - ACCEPT_TOKEN(anon_sym_ATimport); - END_STATE(); - case 218: - ACCEPT_TOKEN(sym_import_path); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(218); - END_STATE(); - case 219: - ACCEPT_TOKEN(anon_sym_ATstruct); - END_STATE(); - case 220: - ACCEPT_TOKEN(anon_sym_LBRACE); - END_STATE(); - case 221: - ACCEPT_TOKEN(anon_sym_RBRACE); - END_STATE(); - case 222: - ACCEPT_TOKEN(anon_sym_COLON); - END_STATE(); - case 223: - ACCEPT_TOKEN(anon_sym_COMMA); - END_STATE(); - case 224: - ACCEPT_TOKEN(anon_sym_ATenum); - END_STATE(); - case 225: - ACCEPT_TOKEN(anon_sym_LPAREN); - END_STATE(); - case 226: - ACCEPT_TOKEN(anon_sym_RPAREN); - END_STATE(); - case 227: - ACCEPT_TOKEN(anon_sym_LBRACK); - END_STATE(); - case 228: - ACCEPT_TOKEN(anon_sym_RBRACK); - END_STATE(); - case 229: - ACCEPT_TOKEN(sym_attribute_content); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(229); - if (lookahead != 0 && - lookahead != ')') ADVANCE(230); - END_STATE(); - case 230: - ACCEPT_TOKEN(sym_attribute_content); - if (lookahead != 0 && - lookahead != ')') ADVANCE(230); - END_STATE(); - case 231: - ACCEPT_TOKEN(anon_sym_LT); - END_STATE(); - case 232: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '!') ADVANCE(24); - if (lookahead == '/') ADVANCE(244); - if (lookahead == '<') ADVANCE(300); - if (lookahead == '=') ADVANCE(295); - if (lookahead == '@') ADVANCE(278); - END_STATE(); - case 233: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '!') ADVANCE(24); - if (lookahead == '/') ADVANCE(244); - if (lookahead == '@') ADVANCE(278); - END_STATE(); - case 234: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '!') ADVANCE(24); - if (lookahead == '<') ADVANCE(300); - if (lookahead == '=') ADVANCE(295); - if (lookahead == '@') ADVANCE(278); - END_STATE(); - case 235: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '!') ADVANCE(24); - if (lookahead == '@') ADVANCE(278); - END_STATE(); - case 236: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(300); - if (lookahead == '=') ADVANCE(295); - END_STATE(); - case 237: - ACCEPT_TOKEN(anon_sym_GT); - END_STATE(); - case 238: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(296); - if (lookahead == '>') ADVANCE(301); - END_STATE(); - case 239: - ACCEPT_TOKEN(anon_sym_ATfn); - END_STATE(); - case 240: - ACCEPT_TOKEN(anon_sym_EQ); - END_STATE(); - case 241: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(293); - if (lookahead == '>') ADVANCE(274); - END_STATE(); - case 242: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '>') ADVANCE(274); - END_STATE(); - case 243: - ACCEPT_TOKEN(anon_sym_SLASH); - END_STATE(); - case 244: - ACCEPT_TOKEN(anon_sym_LT_SLASH); - if (lookahead == '@') ADVANCE(279); - END_STATE(); - case 245: - ACCEPT_TOKEN(anon_sym_ATif); - END_STATE(); - case 246: - ACCEPT_TOKEN(anon_sym_ATif); - if (lookahead == '-' || - lookahead == '.' || - ('0' <= lookahead && lookahead <= ':') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(260); - END_STATE(); - case 247: - ACCEPT_TOKEN(anon_sym_else); - END_STATE(); - case 248: - ACCEPT_TOKEN(anon_sym_else); - if (lookahead == '-' || - lookahead == '.' || - ('0' <= lookahead && lookahead <= ':') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(260); - END_STATE(); - case 249: - ACCEPT_TOKEN(anon_sym_ATfor); - END_STATE(); - case 250: - ACCEPT_TOKEN(anon_sym_ATfor); - if (lookahead == '-' || - lookahead == '.' || - ('0' <= lookahead && lookahead <= ':') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(260); - END_STATE(); - case 251: - ACCEPT_TOKEN(anon_sym_in); - END_STATE(); - case 252: - ACCEPT_TOKEN(sym_tag_name); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(252); - END_STATE(); - case 253: - ACCEPT_TOKEN(sym_attribute_name); - if (lookahead == 'e') ADVANCE(248); - if (lookahead == '-' || - lookahead == '.' || - ('0' <= lookahead && lookahead <= ':') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(260); - END_STATE(); - case 254: - ACCEPT_TOKEN(sym_attribute_name); - if (lookahead == 'f') ADVANCE(257); - if (lookahead == 'i') ADVANCE(255); - if (lookahead == '-' || - lookahead == '.' || - ('0' <= lookahead && lookahead <= ':') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(260); - END_STATE(); - case 255: - ACCEPT_TOKEN(sym_attribute_name); - if (lookahead == 'f') ADVANCE(246); - if (lookahead == '-' || - lookahead == '.' || - ('0' <= lookahead && lookahead <= ':') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(260); - END_STATE(); - case 256: - ACCEPT_TOKEN(sym_attribute_name); - if (lookahead == 'l') ADVANCE(259); - if (lookahead == '-' || - lookahead == '.' || - ('0' <= lookahead && lookahead <= ':') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(260); - END_STATE(); - case 257: - ACCEPT_TOKEN(sym_attribute_name); - if (lookahead == 'o') ADVANCE(258); - if (lookahead == '-' || - lookahead == '.' || - ('0' <= lookahead && lookahead <= ':') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(260); - END_STATE(); - case 258: - ACCEPT_TOKEN(sym_attribute_name); - if (lookahead == 'r') ADVANCE(250); - if (lookahead == '-' || - lookahead == '.' || - ('0' <= lookahead && lookahead <= ':') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(260); - END_STATE(); - case 259: - ACCEPT_TOKEN(sym_attribute_name); - if (lookahead == 's') ADVANCE(253); - if (lookahead == '-' || - lookahead == '.' || - ('0' <= lookahead && lookahead <= ':') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(260); - END_STATE(); - case 260: - ACCEPT_TOKEN(sym_attribute_name); - if (lookahead == '-' || - lookahead == '.' || - ('0' <= lookahead && lookahead <= ':') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(260); - END_STATE(); - case 261: + case 145: ACCEPT_TOKEN(anon_sym_AT); END_STATE(); - case 262: + case 146: ACCEPT_TOKEN(anon_sym_AT); - ADVANCE_MAP( - '#', 12, - '*', 20, - '@', 390, - '`', 68, - 'b', 119, - 'c', 113, - 'e', 106, - 'f', 107, - 'i', 91, - 'l', 87, - 'm', 73, - 's', 135, - 'u', 124, - ); + if (lookahead == '#') ADVANCE(11); + if (lookahead == '*') ADVANCE(19); + if (lookahead == '@') ADVANCE(565); + if (lookahead == '`') ADVANCE(65); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(3); END_STATE(); - case 263: - ACCEPT_TOKEN(anon_sym_AT); - ADVANCE_MAP( - '#', 12, - '*', 20, - '@', 390, - '`', 68, - 'b', 119, - 'c', 113, - 'f', 112, - 'i', 90, - 'l', 87, - 'm', 73, - ); - END_STATE(); - case 264: + case 147: ACCEPT_TOKEN(anon_sym_AT); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && lookahead != '/' && lookahead != '=' && - lookahead != '>') ADVANCE(282); + lookahead != '>') ADVANCE(314); END_STATE(); - case 265: - ACCEPT_TOKEN(anon_sym_safe); + case 148: + ACCEPT_TOKEN(anon_sym_use); END_STATE(); - case 266: - ACCEPT_TOKEN(anon_sym_safe); + case 149: + ACCEPT_TOKEN(anon_sym_use); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(517); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); END_STATE(); - case 267: - ACCEPT_TOKEN(anon_sym_DOT); + case 150: + ACCEPT_TOKEN(anon_sym_as); END_STATE(); - case 268: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(286); - END_STATE(); - case 269: - ACCEPT_TOKEN(anon_sym_ATlet); - END_STATE(); - case 270: - ACCEPT_TOKEN(anon_sym_let); - END_STATE(); - case 271: - ACCEPT_TOKEN(anon_sym_let); - if (lookahead == ':') ADVANCE(52); + case 151: + ACCEPT_TOKEN(aux_sym_rust_path_token1); + if (lookahead == '1') ADVANCE(154); + if (lookahead == '3') ADVANCE(155); + if (lookahead == '6') ADVANCE(160); + if (lookahead == '8') ADVANCE(513); + if (lookahead == ':') ADVANCE(50); + if (lookahead == 's') ADVANCE(172); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); END_STATE(); - case 272: + case 152: + ACCEPT_TOKEN(aux_sym_rust_path_token1); + if (lookahead == '1') ADVANCE(157); + if (lookahead == '3') ADVANCE(156); + if (lookahead == '6') ADVANCE(161); + if (lookahead == '8') ADVANCE(525); + if (lookahead == ':') ADVANCE(50); + if (lookahead == 's') ADVANCE(174); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); + END_STATE(); + case 153: + ACCEPT_TOKEN(aux_sym_rust_path_token1); + if (lookahead == '2') ADVANCE(537); + if (lookahead == ':') ADVANCE(50); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); + END_STATE(); + case 154: + ACCEPT_TOKEN(aux_sym_rust_path_token1); + if (lookahead == '2') ADVANCE(162); + if (lookahead == '6') ADVANCE(515); + if (lookahead == ':') ADVANCE(50); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); + END_STATE(); + case 155: + ACCEPT_TOKEN(aux_sym_rust_path_token1); + if (lookahead == '2') ADVANCE(517); + if (lookahead == ':') ADVANCE(50); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); + END_STATE(); + case 156: + ACCEPT_TOKEN(aux_sym_rust_path_token1); + if (lookahead == '2') ADVANCE(529); + if (lookahead == ':') ADVANCE(50); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); + END_STATE(); + case 157: + ACCEPT_TOKEN(aux_sym_rust_path_token1); + if (lookahead == '2') ADVANCE(163); + if (lookahead == '6') ADVANCE(527); + if (lookahead == ':') ADVANCE(50); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); + END_STATE(); + case 158: + ACCEPT_TOKEN(aux_sym_rust_path_token1); + if (lookahead == '3') ADVANCE(153); + if (lookahead == '6') ADVANCE(159); + if (lookahead == ':') ADVANCE(50); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); + END_STATE(); + case 159: + ACCEPT_TOKEN(aux_sym_rust_path_token1); + if (lookahead == '4') ADVANCE(539); + if (lookahead == ':') ADVANCE(50); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); + END_STATE(); + case 160: + ACCEPT_TOKEN(aux_sym_rust_path_token1); + if (lookahead == '4') ADVANCE(519); + if (lookahead == ':') ADVANCE(50); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); + END_STATE(); + case 161: + ACCEPT_TOKEN(aux_sym_rust_path_token1); + if (lookahead == '4') ADVANCE(531); + if (lookahead == ':') ADVANCE(50); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); + END_STATE(); + case 162: + ACCEPT_TOKEN(aux_sym_rust_path_token1); + if (lookahead == '8') ADVANCE(521); + if (lookahead == ':') ADVANCE(50); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); + END_STATE(); + case 163: + ACCEPT_TOKEN(aux_sym_rust_path_token1); + if (lookahead == '8') ADVANCE(533); + if (lookahead == ':') ADVANCE(50); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); + END_STATE(); + case 164: + ACCEPT_TOKEN(aux_sym_rust_path_token1); + if (lookahead == ':') ADVANCE(50); + if (lookahead == 'a') ADVANCE(181); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(192); + END_STATE(); + case 165: + ACCEPT_TOKEN(aux_sym_rust_path_token1); + if (lookahead == ':') ADVANCE(50); + if (lookahead == 'a') ADVANCE(176); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(192); + END_STATE(); + case 166: + ACCEPT_TOKEN(aux_sym_rust_path_token1); + if (lookahead == ':') ADVANCE(50); + if (lookahead == 'e') ADVANCE(523); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); + END_STATE(); + case 167: + ACCEPT_TOKEN(aux_sym_rust_path_token1); + if (lookahead == ':') ADVANCE(50); + if (lookahead == 'e') ADVANCE(535); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); + END_STATE(); + case 168: + ACCEPT_TOKEN(aux_sym_rust_path_token1); + if (lookahead == ':') ADVANCE(50); + if (lookahead == 'e') ADVANCE(500); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); + END_STATE(); + case 169: + ACCEPT_TOKEN(aux_sym_rust_path_token1); + if (lookahead == ':') ADVANCE(50); + if (lookahead == 'e') ADVANCE(504); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); + END_STATE(); + case 170: + ACCEPT_TOKEN(aux_sym_rust_path_token1); + if (lookahead == ':') ADVANCE(50); + if (lookahead == 'g') ADVANCE(547); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); + END_STATE(); + case 171: + ACCEPT_TOKEN(aux_sym_rust_path_token1); + if (lookahead == ':') ADVANCE(50); + if (lookahead == 'h') ADVANCE(164); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); + END_STATE(); + case 172: + ACCEPT_TOKEN(aux_sym_rust_path_token1); + if (lookahead == ':') ADVANCE(50); + if (lookahead == 'i') ADVANCE(190); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); + END_STATE(); + case 173: + ACCEPT_TOKEN(aux_sym_rust_path_token1); + if (lookahead == ':') ADVANCE(50); + if (lookahead == 'i') ADVANCE(177); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); + END_STATE(); + case 174: + ACCEPT_TOKEN(aux_sym_rust_path_token1); + if (lookahead == ':') ADVANCE(50); + if (lookahead == 'i') ADVANCE(191); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); + END_STATE(); + case 175: + ACCEPT_TOKEN(aux_sym_rust_path_token1); + if (lookahead == ':') ADVANCE(50); + if (lookahead == 'l') ADVANCE(541); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); + END_STATE(); + case 176: + ACCEPT_TOKEN(aux_sym_rust_path_token1); + if (lookahead == ':') ADVANCE(50); + if (lookahead == 'l') ADVANCE(184); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); + END_STATE(); + case 177: + ACCEPT_TOKEN(aux_sym_rust_path_token1); + if (lookahead == ':') ADVANCE(50); + if (lookahead == 'n') ADVANCE(170); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); + END_STATE(); + case 178: + ACCEPT_TOKEN(aux_sym_rust_path_token1); + if (lookahead == ':') ADVANCE(50); + if (lookahead == 'o') ADVANCE(175); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); + END_STATE(); + case 179: + ACCEPT_TOKEN(aux_sym_rust_path_token1); + if (lookahead == ':') ADVANCE(50); + if (lookahead == 'o') ADVANCE(178); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); + END_STATE(); + case 180: + ACCEPT_TOKEN(aux_sym_rust_path_token1); + if (lookahead == ':') ADVANCE(50); + if (lookahead == 'r') ADVANCE(545); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); + END_STATE(); + case 181: + ACCEPT_TOKEN(aux_sym_rust_path_token1); + if (lookahead == ':') ADVANCE(50); + if (lookahead == 'r') ADVANCE(543); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); + END_STATE(); + case 182: + ACCEPT_TOKEN(aux_sym_rust_path_token1); + if (lookahead == ':') ADVANCE(50); + if (lookahead == 'r') ADVANCE(173); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); + END_STATE(); + case 183: + ACCEPT_TOKEN(aux_sym_rust_path_token1); + if (lookahead == ':') ADVANCE(50); + if (lookahead == 'r') ADVANCE(189); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); + END_STATE(); + case 184: + ACCEPT_TOKEN(aux_sym_rust_path_token1); + if (lookahead == ':') ADVANCE(50); + if (lookahead == 's') ADVANCE(169); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); + END_STATE(); + case 185: + ACCEPT_TOKEN(aux_sym_rust_path_token1); + if (lookahead == ':') ADVANCE(50); + if (lookahead == 't') ADVANCE(182); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); + END_STATE(); + case 186: + ACCEPT_TOKEN(aux_sym_rust_path_token1); + if (lookahead == ':') ADVANCE(50); + if (lookahead == 't') ADVANCE(549); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); + END_STATE(); + case 187: + ACCEPT_TOKEN(aux_sym_rust_path_token1); + if (lookahead == ':') ADVANCE(50); + if (lookahead == 't') ADVANCE(180); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); + END_STATE(); + case 188: + ACCEPT_TOKEN(aux_sym_rust_path_token1); + if (lookahead == ':') ADVANCE(50); + if (lookahead == 'u') ADVANCE(186); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); + END_STATE(); + case 189: + ACCEPT_TOKEN(aux_sym_rust_path_token1); + if (lookahead == ':') ADVANCE(50); + if (lookahead == 'u') ADVANCE(168); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); + END_STATE(); + case 190: + ACCEPT_TOKEN(aux_sym_rust_path_token1); + if (lookahead == ':') ADVANCE(50); + if (lookahead == 'z') ADVANCE(166); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'y')) ADVANCE(192); + END_STATE(); + case 191: + ACCEPT_TOKEN(aux_sym_rust_path_token1); + if (lookahead == ':') ADVANCE(50); + if (lookahead == 'z') ADVANCE(167); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'y')) ADVANCE(192); + END_STATE(); + case 192: + ACCEPT_TOKEN(aux_sym_rust_path_token1); + if (lookahead == ':') ADVANCE(50); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); + END_STATE(); + case 193: + ACCEPT_TOKEN(aux_sym_rust_path_token1); + if (lookahead == ':') ADVANCE(356); + if (lookahead == 'a') ADVANCE(197); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(202); + END_STATE(); + case 194: + ACCEPT_TOKEN(aux_sym_rust_path_token1); + if (lookahead == ':') ADVANCE(356); + if (lookahead == 'e') ADVANCE(501); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(202); + END_STATE(); + case 195: + ACCEPT_TOKEN(aux_sym_rust_path_token1); + if (lookahead == ':') ADVANCE(356); + if (lookahead == 'e') ADVANCE(505); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(202); + END_STATE(); + case 196: + ACCEPT_TOKEN(aux_sym_rust_path_token1); + if (lookahead == ':') ADVANCE(356); + if (lookahead == 'e') ADVANCE(200); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(202); + END_STATE(); + case 197: + ACCEPT_TOKEN(aux_sym_rust_path_token1); + if (lookahead == ':') ADVANCE(356); + if (lookahead == 'l') ADVANCE(199); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(202); + END_STATE(); + case 198: + ACCEPT_TOKEN(aux_sym_rust_path_token1); + if (lookahead == ':') ADVANCE(356); + if (lookahead == 'r') ADVANCE(201); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(202); + END_STATE(); + case 199: + ACCEPT_TOKEN(aux_sym_rust_path_token1); + if (lookahead == ':') ADVANCE(356); + if (lookahead == 's') ADVANCE(195); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(202); + END_STATE(); + case 200: + ACCEPT_TOKEN(aux_sym_rust_path_token1); + if (lookahead == ':') ADVANCE(356); + if (lookahead == 't') ADVANCE(301); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(202); + END_STATE(); + case 201: + ACCEPT_TOKEN(aux_sym_rust_path_token1); + if (lookahead == ':') ADVANCE(356); + if (lookahead == 'u') ADVANCE(194); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(202); + END_STATE(); + case 202: + ACCEPT_TOKEN(aux_sym_rust_path_token1); + if (lookahead == ':') ADVANCE(356); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(202); + END_STATE(); + case 203: + ACCEPT_TOKEN(anon_sym_import); + END_STATE(); + case 204: + ACCEPT_TOKEN(anon_sym_import); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 205: + ACCEPT_TOKEN(sym_import_path); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ') ADVANCE(205); + END_STATE(); + case 206: + ACCEPT_TOKEN(anon_sym_struct); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 207: + ACCEPT_TOKEN(anon_sym_LBRACE); + END_STATE(); + case 208: + ACCEPT_TOKEN(anon_sym_RBRACE); + END_STATE(); + case 209: + ACCEPT_TOKEN(anon_sym_COLON); + END_STATE(); + case 210: + ACCEPT_TOKEN(anon_sym_COMMA); + END_STATE(); + case 211: + ACCEPT_TOKEN(anon_sym_enum); + END_STATE(); + case 212: + ACCEPT_TOKEN(anon_sym_enum); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 213: + ACCEPT_TOKEN(anon_sym_LPAREN); + END_STATE(); + case 214: + ACCEPT_TOKEN(anon_sym_RPAREN); + END_STATE(); + case 215: + ACCEPT_TOKEN(anon_sym_LBRACK); + END_STATE(); + case 216: + ACCEPT_TOKEN(anon_sym_RBRACK); + END_STATE(); + case 217: + ACCEPT_TOKEN(sym_attribute_content); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(217); + if (lookahead != 0 && + lookahead != ')') ADVANCE(218); + END_STATE(); + case 218: + ACCEPT_TOKEN(sym_attribute_content); + if (lookahead != 0 && + lookahead != ')') ADVANCE(218); + END_STATE(); + case 219: + ACCEPT_TOKEN(anon_sym_LT); + END_STATE(); + case 220: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '!') ADVANCE(22); + if (lookahead == '/') ADVANCE(230); + if (lookahead == '@') ADVANCE(311); + END_STATE(); + case 221: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '!') ADVANCE(22); + if (lookahead == '/') ADVANCE(229); + if (lookahead == '@') ADVANCE(311); + END_STATE(); + case 222: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '!') ADVANCE(22); + if (lookahead == '/') ADVANCE(57); + if (lookahead == '@') ADVANCE(311); + END_STATE(); + case 223: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '!') ADVANCE(22); + if (lookahead == '@') ADVANCE(311); + END_STATE(); + case 224: + ACCEPT_TOKEN(anon_sym_GT); + END_STATE(); + case 225: + ACCEPT_TOKEN(anon_sym_fn); + END_STATE(); + case 226: + ACCEPT_TOKEN(anon_sym_fn); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 227: + ACCEPT_TOKEN(anon_sym_EQ); + END_STATE(); + case 228: + ACCEPT_TOKEN(anon_sym_SLASH); + END_STATE(); + case 229: + ACCEPT_TOKEN(anon_sym_LT_SLASH); + END_STATE(); + case 230: + ACCEPT_TOKEN(anon_sym_LT_SLASH); + if (lookahead == '@') ADVANCE(312); + END_STATE(); + case 231: ACCEPT_TOKEN(anon_sym_if); END_STATE(); + case 232: + ACCEPT_TOKEN(anon_sym_if); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 233: + ACCEPT_TOKEN(anon_sym_if); + if (lookahead == '-' || + lookahead == '.' || + ('0' <= lookahead && lookahead <= ':') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(284); + END_STATE(); + case 234: + ACCEPT_TOKEN(anon_sym_else); + END_STATE(); + case 235: + ACCEPT_TOKEN(anon_sym_else); + if (lookahead == '-' || + lookahead == '.' || + ('0' <= lookahead && lookahead <= ':') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(280); + END_STATE(); + case 236: + ACCEPT_TOKEN(anon_sym_for); + if (lookahead == 'm') ADVANCE(364); + END_STATE(); + case 237: + ACCEPT_TOKEN(anon_sym_for); + if (lookahead == 'm') ADVANCE(577); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 238: + ACCEPT_TOKEN(anon_sym_for); + if (lookahead == '-' || + lookahead == '.' || + ('0' <= lookahead && lookahead <= ':') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(284); + END_STATE(); + case 239: + ACCEPT_TOKEN(anon_sym_in); + END_STATE(); + case 240: + ACCEPT_TOKEN(sym_tag_name); + if (lookahead == 'a') ADVANCE(270); + if (lookahead == 'r') ADVANCE(276); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 241: + ACCEPT_TOKEN(sym_tag_name); + if (lookahead == 'a') ADVANCE(276); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 242: + ACCEPT_TOKEN(sym_tag_name); + if (lookahead == 'a') ADVANCE(247); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 243: + ACCEPT_TOKEN(sym_tag_name); + if (lookahead == 'a') ADVANCE(258); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 244: + ACCEPT_TOKEN(sym_tag_name); + if (lookahead == 'a') ADVANCE(269); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 245: + ACCEPT_TOKEN(sym_tag_name); + if (lookahead == 'b') ADVANCE(265); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 246: + ACCEPT_TOKEN(sym_tag_name); + if (lookahead == 'b') ADVANCE(252); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 247: + ACCEPT_TOKEN(sym_tag_name); + if (lookahead == 'c') ADVANCE(256); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 248: + ACCEPT_TOKEN(sym_tag_name); + if (lookahead == 'c') ADVANCE(250); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 249: + ACCEPT_TOKEN(sym_tag_name); + if (lookahead == 'd') ADVANCE(276); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 250: + ACCEPT_TOKEN(sym_tag_name); + if (lookahead == 'e') ADVANCE(276); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 251: + ACCEPT_TOKEN(sym_tag_name); + if (lookahead == 'e') ADVANCE(272); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 252: + ACCEPT_TOKEN(sym_tag_name); + if (lookahead == 'e') ADVANCE(249); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 253: + ACCEPT_TOKEN(sym_tag_name); + if (lookahead == 'e') ADVANCE(241); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 254: + ACCEPT_TOKEN(sym_tag_name); + if (lookahead == 'g') ADVANCE(276); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 255: + ACCEPT_TOKEN(sym_tag_name); + if (lookahead == 'i') ADVANCE(261); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 256: + ACCEPT_TOKEN(sym_tag_name); + if (lookahead == 'k') ADVANCE(276); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 257: + ACCEPT_TOKEN(sym_tag_name); + if (lookahead == 'l') ADVANCE(276); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 258: + ACCEPT_TOKEN(sym_tag_name); + if (lookahead == 'm') ADVANCE(276); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 259: + ACCEPT_TOKEN(sym_tag_name); + if (lookahead == 'm') ADVANCE(254); + if (lookahead == 'n') ADVANCE(264); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 260: + ACCEPT_TOKEN(sym_tag_name); + if (lookahead == 'm') ADVANCE(246); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 261: + ACCEPT_TOKEN(sym_tag_name); + if (lookahead == 'n') ADVANCE(256); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 262: + ACCEPT_TOKEN(sym_tag_name); + if (lookahead == 'o') ADVANCE(257); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 263: + ACCEPT_TOKEN(sym_tag_name); + if (lookahead == 'o') ADVANCE(274); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 264: + ACCEPT_TOKEN(sym_tag_name); + if (lookahead == 'p') ADVANCE(273); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 265: + ACCEPT_TOKEN(sym_tag_name); + if (lookahead == 'r') ADVANCE(276); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 266: + ACCEPT_TOKEN(sym_tag_name); + if (lookahead == 'r') ADVANCE(253); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 267: + ACCEPT_TOKEN(sym_tag_name); + if (lookahead == 'r') ADVANCE(242); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 268: + ACCEPT_TOKEN(sym_tag_name); + if (lookahead == 'r') ADVANCE(248); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 269: + ACCEPT_TOKEN(sym_tag_name); + if (lookahead == 'r') ADVANCE(243); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 270: + ACCEPT_TOKEN(sym_tag_name); + if (lookahead == 's') ADVANCE(250); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 271: + ACCEPT_TOKEN(sym_tag_name); + if (lookahead == 't') ADVANCE(276); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); + case 272: + ACCEPT_TOKEN(sym_tag_name); + if (lookahead == 't') ADVANCE(241); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + END_STATE(); case 273: - ACCEPT_TOKEN(anon_sym_ATmatch); + ACCEPT_TOKEN(sym_tag_name); + if (lookahead == 'u') ADVANCE(271); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); END_STATE(); case 274: - ACCEPT_TOKEN(anon_sym_EQ_GT); + ACCEPT_TOKEN(sym_tag_name); + if (lookahead == 'u') ADVANCE(268); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); END_STATE(); case 275: - ACCEPT_TOKEN(anon_sym_ATbreak); + ACCEPT_TOKEN(sym_tag_name); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); END_STATE(); case 276: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(sym_void_tag_name); END_STATE(); case 277: - ACCEPT_TOKEN(anon_sym_ATcontinue); + ACCEPT_TOKEN(aux_sym_attribute_name_token1); + if (lookahead == 'e') ADVANCE(235); + if (lookahead == '-' || + lookahead == '.' || + ('0' <= lookahead && lookahead <= ':') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(280); END_STATE(); case 278: - ACCEPT_TOKEN(anon_sym_LT_AT); + ACCEPT_TOKEN(aux_sym_attribute_name_token1); + if (lookahead == 'l') ADVANCE(279); + if (lookahead == '-' || + lookahead == '.' || + ('0' <= lookahead && lookahead <= ':') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(280); END_STATE(); case 279: - ACCEPT_TOKEN(anon_sym_LT_SLASH_AT); + ACCEPT_TOKEN(aux_sym_attribute_name_token1); + if (lookahead == 's') ADVANCE(277); + if (lookahead == '-' || + lookahead == '.' || + ('0' <= lookahead && lookahead <= ':') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(280); END_STATE(); case 280: - ACCEPT_TOKEN(anon_sym_AMP); + ACCEPT_TOKEN(aux_sym_attribute_name_token1); + if (lookahead == '-' || + lookahead == '.' || + ('0' <= lookahead && lookahead <= ':') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(280); END_STATE(); case 281: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(297); + ACCEPT_TOKEN(aux_sym_attribute_name_token2); + if (lookahead == 'f') ADVANCE(233); + if (lookahead == '-' || + lookahead == '.' || + ('0' <= lookahead && lookahead <= ':') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(284); END_STATE(); case 282: + ACCEPT_TOKEN(aux_sym_attribute_name_token2); + if (lookahead == 'o') ADVANCE(283); + if (lookahead == '-' || + lookahead == '.' || + ('0' <= lookahead && lookahead <= ':') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(284); + END_STATE(); + case 283: + ACCEPT_TOKEN(aux_sym_attribute_name_token2); + if (lookahead == 'r') ADVANCE(238); + if (lookahead == '-' || + lookahead == '.' || + ('0' <= lookahead && lookahead <= ':') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(284); + END_STATE(); + case 284: + ACCEPT_TOKEN(aux_sym_attribute_name_token2); + if (lookahead == '-' || + lookahead == '.' || + ('0' <= lookahead && lookahead <= ':') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(284); + END_STATE(); + case 285: + ACCEPT_TOKEN(anon_sym_out); + END_STATE(); + case 286: + ACCEPT_TOKEN(anon_sym_out); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 287: + ACCEPT_TOKEN(anon_sym_target); + END_STATE(); + case 288: + ACCEPT_TOKEN(anon_sym_target); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 289: + ACCEPT_TOKEN(aux_sym_simple_expression_token1); + END_STATE(); + case 290: + ACCEPT_TOKEN(anon_sym_safe); + END_STATE(); + case 291: + ACCEPT_TOKEN(anon_sym_safe); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 292: + ACCEPT_TOKEN(anon_sym_format); + END_STATE(); + case 293: + ACCEPT_TOKEN(anon_sym_format); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 294: + ACCEPT_TOKEN(anon_sym_matches); + END_STATE(); + case 295: + ACCEPT_TOKEN(anon_sym_matches); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 296: + ACCEPT_TOKEN(sym_inferred_enum_path); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(296); + END_STATE(); + case 297: + ACCEPT_TOKEN(anon_sym_BANG); + END_STATE(); + case 298: + ACCEPT_TOKEN(anon_sym_DOT); + END_STATE(); + case 299: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(318); + END_STATE(); + case 300: + ACCEPT_TOKEN(anon_sym_let); + END_STATE(); + case 301: + ACCEPT_TOKEN(anon_sym_let); + if (lookahead == ':') ADVANCE(356); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(202); + END_STATE(); + case 302: + ACCEPT_TOKEN(anon_sym_let); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 303: + ACCEPT_TOKEN(anon_sym_SEMI); + END_STATE(); + case 304: + ACCEPT_TOKEN(anon_sym_match); + if (lookahead == 'e') ADVANCE(618); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 305: + ACCEPT_TOKEN(anon_sym_match); + if (lookahead == 'e') ADVANCE(435); + END_STATE(); + case 306: + ACCEPT_TOKEN(anon_sym_EQ_GT); + END_STATE(); + case 307: + ACCEPT_TOKEN(anon_sym_break); + END_STATE(); + case 308: + ACCEPT_TOKEN(anon_sym_break); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 309: + ACCEPT_TOKEN(anon_sym_continue); + END_STATE(); + case 310: + ACCEPT_TOKEN(anon_sym_continue); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 311: + ACCEPT_TOKEN(anon_sym_LT_AT); + END_STATE(); + case 312: + ACCEPT_TOKEN(anon_sym_LT_SLASH_AT); + END_STATE(); + case 313: + ACCEPT_TOKEN(anon_sym_AMP); + END_STATE(); + case 314: ACCEPT_TOKEN(sym_unquoted_value); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && lookahead != '/' && lookahead != '=' && - lookahead != '>') ADVANCE(282); + lookahead != '>') ADVANCE(314); END_STATE(); - case 283: + case 315: ACCEPT_TOKEN(sym_wildcard_pattern); END_STATE(); - case 284: + case 316: ACCEPT_TOKEN(sym_wildcard_pattern); - if (lookahead == ':') ADVANCE(52); + if (lookahead == ':') ADVANCE(50); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); END_STATE(); - case 285: + case 317: ACCEPT_TOKEN(sym_wildcard_pattern); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(517); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); END_STATE(); - case 286: + case 318: ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); - case 287: - ACCEPT_TOKEN(anon_sym_PIPE); + case 319: + ACCEPT_TOKEN(sym_rust_expression); + ADVANCE_MAP( + '1', 327, + '3', 328, + '6', 343, + '8', 512, + 'f', 231, + 'm', 422, + 'n', 239, + 's', 395, + ); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); END_STATE(); - case 288: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(298); + case 320: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == '1') ADVANCE(334); + if (lookahead == '3') ADVANCE(329); + if (lookahead == '6') ADVANCE(344); + if (lookahead == '8') ADVANCE(524); + if (lookahead == 's') ADVANCE(370); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); END_STATE(); - case 289: - ACCEPT_TOKEN(anon_sym_PLUS); + case 321: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == '1') ADVANCE(335); + if (lookahead == '3') ADVANCE(325); + if (lookahead == '6') ADVANCE(341); + if (lookahead == '8') ADVANCE(480); + if (lookahead == 's') ADVANCE(400); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); END_STATE(); - case 290: - ACCEPT_TOKEN(anon_sym_DASH); + case 322: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == '1') ADVANCE(336); + if (lookahead == '3') ADVANCE(331); + if (lookahead == '6') ADVANCE(346); + if (lookahead == '8') ADVANCE(491); + if (lookahead == 's') ADVANCE(401); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); END_STATE(); - case 291: - ACCEPT_TOKEN(anon_sym_STAR); + case 323: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == '1') ADVANCE(337); + if (lookahead == '3') ADVANCE(332); + if (lookahead == '6') ADVANCE(347); + if (lookahead == '8') ADVANCE(488); + if (lookahead == 's') ADVANCE(402); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); END_STATE(); - case 292: - ACCEPT_TOKEN(anon_sym_PERCENT); + case 324: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == '1') ADVANCE(338); + if (lookahead == '3') ADVANCE(333); + if (lookahead == '6') ADVANCE(348); + if (lookahead == '8') ADVANCE(485); + if (lookahead == 's') ADVANCE(403); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); END_STATE(); - case 293: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + case 325: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == '2') ADVANCE(480); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); END_STATE(); - case 294: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + case 326: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == '2') ADVANCE(536); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); END_STATE(); - case 295: - ACCEPT_TOKEN(anon_sym_LT_EQ); + case 327: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == '2') ADVANCE(350); + if (lookahead == '6') ADVANCE(514); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); END_STATE(); - case 296: - ACCEPT_TOKEN(anon_sym_GT_EQ); + case 328: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == '2') ADVANCE(516); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); END_STATE(); - case 297: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + case 329: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == '2') ADVANCE(528); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); END_STATE(); - case 298: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + case 330: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == '2') ADVANCE(494); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); END_STATE(); - case 299: - ACCEPT_TOKEN(anon_sym_CARET); + case 331: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == '2') ADVANCE(491); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); END_STATE(); - case 300: - ACCEPT_TOKEN(anon_sym_LT_LT); + case 332: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == '2') ADVANCE(488); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); END_STATE(); - case 301: - ACCEPT_TOKEN(anon_sym_GT_GT); + case 333: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == '2') ADVANCE(485); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); END_STATE(); - case 302: - ACCEPT_TOKEN(anon_sym_BANG); + case 334: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == '2') ADVANCE(351); + if (lookahead == '6') ADVANCE(526); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); END_STATE(); - case 303: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(294); + case 335: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == '2') ADVANCE(349); + if (lookahead == '6') ADVANCE(480); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); END_STATE(); - case 304: + case 336: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == '2') ADVANCE(352); + if (lookahead == '6') ADVANCE(491); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 337: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == '2') ADVANCE(353); + if (lookahead == '6') ADVANCE(488); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 338: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == '2') ADVANCE(354); + if (lookahead == '6') ADVANCE(485); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 339: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == '3') ADVANCE(326); + if (lookahead == '6') ADVANCE(342); + if (lookahead == 'a') ADVANCE(410); + if (lookahead == 'n') ADVANCE(225); + if (lookahead == 'o') ADVANCE(426); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 340: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == '3') ADVANCE(330); + if (lookahead == '6') ADVANCE(345); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 341: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == '4') ADVANCE(480); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 342: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == '4') ADVANCE(538); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 343: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == '4') ADVANCE(518); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 344: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == '4') ADVANCE(530); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 345: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == '4') ADVANCE(494); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 346: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == '4') ADVANCE(491); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 347: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == '4') ADVANCE(488); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 348: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == '4') ADVANCE(485); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 349: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == '8') ADVANCE(480); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 350: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == '8') ADVANCE(520); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 351: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == '8') ADVANCE(532); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 352: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == '8') ADVANCE(491); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 353: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == '8') ADVANCE(488); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 354: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == '8') ADVANCE(485); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 355: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == ':') ADVANCE(469); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 356: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == ':') ADVANCE(470); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 357: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'a') ADVANCE(457); + if (lookahead == 's') ADVANCE(560); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 358: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'a') ADVANCE(389); + if (lookahead == 't') ADVANCE(427); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 359: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'a') ADVANCE(404); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 360: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'a') ADVANCE(425); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 361: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'a') ADVANCE(436); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 362: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'a') ADVANCE(428); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 363: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'a') ADVANCE(443); + if (lookahead == 'u') ADVANCE(444); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 364: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'a') ADVANCE(447); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 365: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'a') ADVANCE(433); + if (lookahead == 'r') ADVANCE(454); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 366: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'c') ADVANCE(393); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 367: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'c') ADVANCE(431); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 368: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'd') ADVANCE(386); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 369: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'e') ADVANCE(480); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 370: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'e') ADVANCE(148); + if (lookahead == 'i') ADVANCE(459); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 371: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'e') ADVANCE(234); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 372: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'e') ADVANCE(290); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 373: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'e') ADVANCE(499); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 374: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'e') ADVANCE(491); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 375: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'e') ADVANCE(488); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 376: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'e') ADVANCE(485); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 377: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'e') ADVANCE(503); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 378: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'e') ADVANCE(522); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 379: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'e') ADVANCE(564); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 380: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'e') ADVANCE(534); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 381: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'e') ADVANCE(563); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 382: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'e') ADVANCE(309); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 383: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'e') ADVANCE(359); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 384: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'e') ADVANCE(413); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 385: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'e') ADVANCE(442); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 386: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'e') ADVANCE(429); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 387: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'e') ADVANCE(446); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 388: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'e') ADVANCE(449); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 389: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'f') ADVANCE(372); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 390: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'g') ADVANCE(546); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 391: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'g') ADVANCE(387); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 392: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'g') ADVANCE(388); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 393: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'h') ADVANCE(305); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 394: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'h') ADVANCE(362); + if (lookahead == 'o') ADVANCE(416); + if (lookahead == 's') ADVANCE(434); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 395: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'i') ADVANCE(458); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 396: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'i') ADVANCE(423); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 397: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'i') ADVANCE(415); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 398: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'i') ADVANCE(417); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 399: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'i') ADVANCE(418); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 400: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'i') ADVANCE(460); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 401: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'i') ADVANCE(461); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 402: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'i') ADVANCE(462); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 403: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'i') ADVANCE(463); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 404: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'k') ADVANCE(307); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 405: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'l') ADVANCE(424); + if (lookahead == 's') ADVANCE(150); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 406: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'l') ADVANCE(540); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 407: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'l') ADVANCE(557); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 408: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'l') ADVANCE(437); + if (lookahead == 'n') ADVANCE(452); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 409: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'l') ADVANCE(379); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 410: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'l') ADVANCE(438); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 411: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'm') ADVANCE(211); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 412: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'm') ADVANCE(407); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 413: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'n') ADVANCE(368); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 414: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'n') ADVANCE(562); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 415: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'n') ADVANCE(390); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 416: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'n') ADVANCE(451); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 417: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'n') ADVANCE(381); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 418: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'n') ADVANCE(456); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 419: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'o') ADVANCE(420); + if (lookahead == 'r') ADVANCE(383); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 420: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'o') ADVANCE(406); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 421: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'o') ADVANCE(432); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 422: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'p') ADVANCE(421); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 423: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'p') ADVANCE(450); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 424: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'p') ADVANCE(398); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 425: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'r') ADVANCE(391); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 426: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'r') ADVANCE(236); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 427: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'r') ADVANCE(544); + if (lookahead == 'y') ADVANCE(409); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 428: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'r') ADVANCE(542); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 429: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'r') ADVANCE(509); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 430: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'r') ADVANCE(397); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 431: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'r') ADVANCE(396); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 432: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'r') ADVANCE(448); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 433: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'r') ADVANCE(392); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 434: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 's') ADVANCE(558); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 435: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 's') ADVANCE(294); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 436: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 's') ADVANCE(367); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 437: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 's') ADVANCE(371); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 438: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 's') ADVANCE(377); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 439: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 't') ADVANCE(430); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 440: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 't') ADVANCE(412); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 441: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 't') ADVANCE(510); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 442: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 't') ADVANCE(300); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 443: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 't') ADVANCE(366); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 444: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 't') ADVANCE(548); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 445: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 't') ADVANCE(285); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 446: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 't') ADVANCE(511); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 447: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 't') ADVANCE(292); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 448: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 't') ADVANCE(203); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 449: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 't') ADVANCE(287); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 450: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 't') ADVANCE(561); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 451: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 't') ADVANCE(399); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 452: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'u') ADVANCE(411); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 453: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'u') ADVANCE(441); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 454: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'u') ADVANCE(373); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 455: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'u') ADVANCE(445); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 456: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'u') ADVANCE(382); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 457: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'v') ADVANCE(361); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 458: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'z') ADVANCE(378); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 459: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'z') ADVANCE(380); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 460: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'z') ADVANCE(369); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 461: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'z') ADVANCE(374); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 462: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'z') ADVANCE(375); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 463: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == 'z') ADVANCE(376); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 464: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == '+' || + lookahead == '-') ADVANCE(467); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(496); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 465: + ACCEPT_TOKEN(sym_rust_expression); + if (lookahead == '0' || + lookahead == '1') ADVANCE(493); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 466: + ACCEPT_TOKEN(sym_rust_expression); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(490); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 467: + ACCEPT_TOKEN(sym_rust_expression); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(496); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 468: + ACCEPT_TOKEN(sym_rust_expression); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(487); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 469: + ACCEPT_TOKEN(sym_rust_expression); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(296); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 470: + ACCEPT_TOKEN(sym_rust_expression); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(202); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 471: + ACCEPT_TOKEN(sym_rust_expression); + if ((!eof && set_contains(sym_rust_expression_character_set_1, 10, lookahead)) || + ('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(471); + END_STATE(); + case 472: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 305: + case 473: ACCEPT_TOKEN(anon_sym_DQUOTE); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && lookahead != '/' && lookahead != '=' && - lookahead != '>') ADVANCE(282); - END_STATE(); - case 306: - ACCEPT_TOKEN(aux_sym_string_literal_token1); - END_STATE(); - case 307: - ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(307); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(306); - END_STATE(); - case 308: - ACCEPT_TOKEN(anon_sym_SQUOTE); - END_STATE(); - case 309: - ACCEPT_TOKEN(aux_sym_char_literal_token1); - END_STATE(); - case 310: - ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(310); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(309); - END_STATE(); - case 311: - ACCEPT_TOKEN(sym_escape_sequence); - END_STATE(); - case 312: - ACCEPT_TOKEN(aux_sym_integer_literal_token1); - END_STATE(); - case 313: - ACCEPT_TOKEN(aux_sym_integer_literal_token1); - if (lookahead == '.') ADVANCE(327); - if (lookahead == 'b') ADVANCE(500); - if (lookahead == 'i') ADVANCE(393); - if (lookahead == 'o') ADVANCE(501); - if (lookahead == 'u') ADVANCE(393); - if (lookahead == 'x') ADVANCE(504); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(314); - END_STATE(); - case 314: - ACCEPT_TOKEN(aux_sym_integer_literal_token1); - if (lookahead == '.') ADVANCE(327); - if (lookahead == 'i') ADVANCE(393); - if (lookahead == 'u') ADVANCE(393); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(314); - END_STATE(); - case 315: - ACCEPT_TOKEN(aux_sym_integer_literal_token1); - if (lookahead == '.') ADVANCE(329); - if (lookahead == 'b') ADVANCE(149); - if (lookahead == 'i') ADVANCE(28); - if (lookahead == 'o') ADVANCE(152); - if (lookahead == 'u') ADVANCE(28); - if (lookahead == 'x') ADVANCE(156); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(316); - END_STATE(); - case 316: - ACCEPT_TOKEN(aux_sym_integer_literal_token1); - if (lookahead == '.') ADVANCE(329); - if (lookahead == 'i') ADVANCE(28); - if (lookahead == 'u') ADVANCE(28); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(316); - END_STATE(); - case 317: - ACCEPT_TOKEN(aux_sym_integer_literal_token2); - END_STATE(); - case 318: - ACCEPT_TOKEN(aux_sym_integer_literal_token2); - if (lookahead == 'i') ADVANCE(31); - if (lookahead == 'u') ADVANCE(31); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(318); - END_STATE(); - case 319: - ACCEPT_TOKEN(aux_sym_integer_literal_token2); - if (lookahead == 'i') ADVANCE(396); - if (lookahead == 'u') ADVANCE(396); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(319); - END_STATE(); - case 320: - ACCEPT_TOKEN(aux_sym_integer_literal_token3); - END_STATE(); - case 321: - ACCEPT_TOKEN(aux_sym_integer_literal_token3); - if (lookahead == 'i') ADVANCE(30); - if (lookahead == 'u') ADVANCE(30); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(321); - END_STATE(); - case 322: - ACCEPT_TOKEN(aux_sym_integer_literal_token3); - if (lookahead == 'i') ADVANCE(395); - if (lookahead == 'u') ADVANCE(395); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(322); - END_STATE(); - case 323: - ACCEPT_TOKEN(aux_sym_integer_literal_token4); - END_STATE(); - case 324: - ACCEPT_TOKEN(aux_sym_integer_literal_token4); - if (lookahead == 'i') ADVANCE(29); - if (lookahead == 'u') ADVANCE(29); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(324); - END_STATE(); - case 325: - ACCEPT_TOKEN(aux_sym_integer_literal_token4); - if (lookahead == 'i') ADVANCE(394); - if (lookahead == 'u') ADVANCE(394); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(325); - END_STATE(); - case 326: - ACCEPT_TOKEN(sym_float_literal); - END_STATE(); - case 327: - ACCEPT_TOKEN(sym_float_literal); - if (lookahead == 'f') ADVANCE(412); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(499); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(327); - END_STATE(); - case 328: - ACCEPT_TOKEN(sym_float_literal); - if (lookahead == 'f') ADVANCE(412); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(328); - END_STATE(); - case 329: - ACCEPT_TOKEN(sym_float_literal); - if (lookahead == 'f') ADVANCE(41); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(148); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(329); - END_STATE(); - case 330: - ACCEPT_TOKEN(sym_float_literal); - if (lookahead == 'f') ADVANCE(41); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(330); - END_STATE(); - case 331: - ACCEPT_TOKEN(anon_sym_true); - END_STATE(); - case 332: - ACCEPT_TOKEN(anon_sym_true); - if (lookahead == ':') ADVANCE(52); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 333: - ACCEPT_TOKEN(anon_sym_true); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(517); - END_STATE(); - case 334: - ACCEPT_TOKEN(anon_sym_false); - END_STATE(); - case 335: - ACCEPT_TOKEN(anon_sym_false); - if (lookahead == ':') ADVANCE(52); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 336: - ACCEPT_TOKEN(anon_sym_false); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(517); - END_STATE(); - case 337: - ACCEPT_TOKEN(anon_sym_i8); - END_STATE(); - case 338: - ACCEPT_TOKEN(anon_sym_i8); - if (lookahead == ':') ADVANCE(52); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 339: - ACCEPT_TOKEN(anon_sym_i16); - END_STATE(); - case 340: - ACCEPT_TOKEN(anon_sym_i16); - if (lookahead == ':') ADVANCE(52); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 341: - ACCEPT_TOKEN(anon_sym_i32); - END_STATE(); - case 342: - ACCEPT_TOKEN(anon_sym_i32); - if (lookahead == ':') ADVANCE(52); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 343: - ACCEPT_TOKEN(anon_sym_i64); - END_STATE(); - case 344: - ACCEPT_TOKEN(anon_sym_i64); - if (lookahead == ':') ADVANCE(52); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 345: - ACCEPT_TOKEN(anon_sym_i128); - END_STATE(); - case 346: - ACCEPT_TOKEN(anon_sym_i128); - if (lookahead == ':') ADVANCE(52); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 347: - ACCEPT_TOKEN(anon_sym_isize); - END_STATE(); - case 348: - ACCEPT_TOKEN(anon_sym_isize); - if (lookahead == ':') ADVANCE(52); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 349: - ACCEPT_TOKEN(anon_sym_u8); - END_STATE(); - case 350: - ACCEPT_TOKEN(anon_sym_u8); - if (lookahead == ':') ADVANCE(52); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 351: - ACCEPT_TOKEN(anon_sym_u16); - END_STATE(); - case 352: - ACCEPT_TOKEN(anon_sym_u16); - if (lookahead == ':') ADVANCE(52); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 353: - ACCEPT_TOKEN(anon_sym_u32); - END_STATE(); - case 354: - ACCEPT_TOKEN(anon_sym_u32); - if (lookahead == ':') ADVANCE(52); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 355: - ACCEPT_TOKEN(anon_sym_u64); - END_STATE(); - case 356: - ACCEPT_TOKEN(anon_sym_u64); - if (lookahead == ':') ADVANCE(52); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 357: - ACCEPT_TOKEN(anon_sym_u128); - END_STATE(); - case 358: - ACCEPT_TOKEN(anon_sym_u128); - if (lookahead == ':') ADVANCE(52); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 359: - ACCEPT_TOKEN(anon_sym_usize); - END_STATE(); - case 360: - ACCEPT_TOKEN(anon_sym_usize); - if (lookahead == ':') ADVANCE(52); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 361: - ACCEPT_TOKEN(anon_sym_f32); - END_STATE(); - case 362: - ACCEPT_TOKEN(anon_sym_f32); - if (lookahead == ':') ADVANCE(52); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 363: - ACCEPT_TOKEN(anon_sym_f64); - END_STATE(); - case 364: - ACCEPT_TOKEN(anon_sym_f64); - if (lookahead == ':') ADVANCE(52); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 365: - ACCEPT_TOKEN(anon_sym_bool); - END_STATE(); - case 366: - ACCEPT_TOKEN(anon_sym_bool); - if (lookahead == ':') ADVANCE(52); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 367: - ACCEPT_TOKEN(anon_sym_char); - END_STATE(); - case 368: - ACCEPT_TOKEN(anon_sym_char); - if (lookahead == ':') ADVANCE(52); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 369: - ACCEPT_TOKEN(anon_sym_str); - END_STATE(); - case 370: - ACCEPT_TOKEN(anon_sym_str); - if (lookahead == ':') ADVANCE(52); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 371: - ACCEPT_TOKEN(anon_sym_String); - END_STATE(); - case 372: - ACCEPT_TOKEN(anon_sym_String); - if (lookahead == ':') ADVANCE(52); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 373: - ACCEPT_TOKEN(anon_sym_mut); - END_STATE(); - case 374: - ACCEPT_TOKEN(anon_sym_mut); - if (lookahead == ':') ADVANCE(52); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); - END_STATE(); - case 375: - ACCEPT_TOKEN(sym_template_comment); - END_STATE(); - case 376: - ACCEPT_TOKEN(sym_html_comment); - END_STATE(); - case 377: - ACCEPT_TOKEN(sym_raw_block); - END_STATE(); - case 378: - ACCEPT_TOKEN(anon_sym_AT_BQUOTE_BQUOTE_BQUOTE); - END_STATE(); - case 379: - ACCEPT_TOKEN(aux_sym_embedded_language_token1); - if (lookahead == '`') ADVANCE(69); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(379); - if (lookahead != 0) ADVANCE(380); - END_STATE(); - case 380: - ACCEPT_TOKEN(aux_sym_embedded_language_token1); - if (lookahead == '`') ADVANCE(69); - if (lookahead != 0) ADVANCE(380); - END_STATE(); - case 381: - ACCEPT_TOKEN(anon_sym_BQUOTE_BQUOTE_BQUOTE_AT); - END_STATE(); - case 382: - ACCEPT_TOKEN(anon_sym_html); - END_STATE(); - case 383: - ACCEPT_TOKEN(anon_sym_css); - END_STATE(); - case 384: - ACCEPT_TOKEN(anon_sym_js); - if (lookahead == 'o') ADVANCE(466); - END_STATE(); - case 385: - ACCEPT_TOKEN(anon_sym_js); - if (lookahead == 'o') ADVANCE(108); - END_STATE(); - case 386: - ACCEPT_TOKEN(anon_sym_javascript); - END_STATE(); - case 387: - ACCEPT_TOKEN(anon_sym_json); - END_STATE(); - case 388: - ACCEPT_TOKEN(anon_sym_alpine); - END_STATE(); - case 389: - ACCEPT_TOKEN(anon_sym_style); - END_STATE(); - case 390: - ACCEPT_TOKEN(sym_escape_at); - END_STATE(); - case 391: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == '1') ADVANCE(399); - if (lookahead == '3') ADVANCE(400); - if (lookahead == '6') ADVANCE(415); - if (lookahead == '8') ADVANCE(337); - if (lookahead == 'f') ADVANCE(272); - if (lookahead == 'n') ADVANCE(251); - if (lookahead == 's') ADVANCE(450); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 392: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == '1') ADVANCE(406); - if (lookahead == '3') ADVANCE(401); - if (lookahead == '6') ADVANCE(416); - if (lookahead == '8') ADVANCE(349); - if (lookahead == 's') ADVANCE(454); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 393: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == '1') ADVANCE(407); - if (lookahead == '3') ADVANCE(397); - if (lookahead == '6') ADVANCE(413); - if (lookahead == '8') ADVANCE(312); - if (lookahead == 's') ADVANCE(455); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 394: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == '1') ADVANCE(408); - if (lookahead == '3') ADVANCE(403); - if (lookahead == '6') ADVANCE(418); - if (lookahead == '8') ADVANCE(323); - if (lookahead == 's') ADVANCE(456); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 395: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == '1') ADVANCE(409); - if (lookahead == '3') ADVANCE(404); - if (lookahead == '6') ADVANCE(419); - if (lookahead == '8') ADVANCE(320); - if (lookahead == 's') ADVANCE(457); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 396: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == '1') ADVANCE(410); - if (lookahead == '3') ADVANCE(405); - if (lookahead == '6') ADVANCE(420); - if (lookahead == '8') ADVANCE(317); - if (lookahead == 's') ADVANCE(458); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 397: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == '2') ADVANCE(312); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 398: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == '2') ADVANCE(361); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 399: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == '2') ADVANCE(422); - if (lookahead == '6') ADVANCE(339); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 400: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == '2') ADVANCE(341); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 401: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == '2') ADVANCE(353); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 402: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == '2') ADVANCE(326); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 403: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == '2') ADVANCE(323); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 404: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == '2') ADVANCE(320); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 405: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == '2') ADVANCE(317); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 406: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == '2') ADVANCE(423); - if (lookahead == '6') ADVANCE(351); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 407: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == '2') ADVANCE(421); - if (lookahead == '6') ADVANCE(312); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 408: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == '2') ADVANCE(424); - if (lookahead == '6') ADVANCE(323); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 409: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == '2') ADVANCE(425); - if (lookahead == '6') ADVANCE(320); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 410: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == '2') ADVANCE(426); - if (lookahead == '6') ADVANCE(317); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 411: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == '3') ADVANCE(398); - if (lookahead == '6') ADVANCE(414); - if (lookahead == 'a') ADVANCE(463); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 412: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == '3') ADVANCE(402); - if (lookahead == '6') ADVANCE(417); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 413: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == '4') ADVANCE(312); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 414: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == '4') ADVANCE(363); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 415: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == '4') ADVANCE(343); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 416: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == '4') ADVANCE(355); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 417: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == '4') ADVANCE(326); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 418: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == '4') ADVANCE(323); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 419: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == '4') ADVANCE(320); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 420: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == '4') ADVANCE(317); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 421: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == '8') ADVANCE(312); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 422: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == '8') ADVANCE(345); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 423: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == '8') ADVANCE(357); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 424: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == '8') ADVANCE(323); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 425: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == '8') ADVANCE(320); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 426: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == '8') ADVANCE(317); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 427: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == '=') ADVANCE(294); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '=' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 428: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == '=') ADVANCE(293); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '=' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 429: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 'a') ADVANCE(491); - if (lookahead == 's') ADVANCE(384); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 430: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 'a') ADVANCE(447); - if (lookahead == 't') ADVANCE(473); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 431: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 'a') ADVANCE(474); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 432: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 'a') ADVANCE(480); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 433: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 'c') ADVANCE(477); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 434: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 'e') ADVANCE(312); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 435: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 'e') ADVANCE(247); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 436: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 'e') ADVANCE(265); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 437: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 'e') ADVANCE(331); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 438: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 'e') ADVANCE(323); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 439: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 'e') ADVANCE(320); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 440: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 'e') ADVANCE(317); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 441: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 'e') ADVANCE(334); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 442: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 'e') ADVANCE(347); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 443: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 'e') ADVANCE(389); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 444: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 'e') ADVANCE(359); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 445: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 'e') ADVANCE(388); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 446: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 'e') ADVANCE(484); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 447: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 'f') ADVANCE(436); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 448: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 'g') ADVANCE(371); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 449: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 'h') ADVANCE(431); - if (lookahead == 's') ADVANCE(479); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 450: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 'i') ADVANCE(492); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 451: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 'i') ADVANCE(471); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 452: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 'i') ADVANCE(467); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 453: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 'i') ADVANCE(468); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 454: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 'i') ADVANCE(493); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 455: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 'i') ADVANCE(494); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 456: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 'i') ADVANCE(495); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 457: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 'i') ADVANCE(496); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 458: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 'i') ADVANCE(497); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 459: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 'l') ADVANCE(472); - if (lookahead == 's') ADVANCE(172); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 460: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 'l') ADVANCE(365); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 461: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 'l') ADVANCE(382); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 462: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 'l') ADVANCE(481); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 463: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 'l') ADVANCE(482); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 464: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 'l') ADVANCE(443); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 465: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 'm') ADVANCE(461); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 466: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 'n') ADVANCE(387); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 467: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 'n') ADVANCE(448); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 468: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 'n') ADVANCE(445); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 469: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 'o') ADVANCE(470); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 470: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 'o') ADVANCE(460); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 471: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 'p') ADVANCE(486); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 472: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 'p') ADVANCE(453); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); - END_STATE(); - case 473: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 'r') ADVANCE(369); - if (lookahead == 'y') ADVANCE(464); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); + lookahead != '>') ADVANCE(314); END_STATE(); case 474: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 'r') ADVANCE(367); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); + ACCEPT_TOKEN(aux_sym_string_literal_token1); END_STATE(); case 475: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 'r') ADVANCE(490); + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(475); if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); + lookahead != '"' && + lookahead != '\\') ADVANCE(474); END_STATE(); case 476: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 'r') ADVANCE(452); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); + ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); case 477: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 'r') ADVANCE(451); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); + ACCEPT_TOKEN(aux_sym_char_literal_token1); END_STATE(); case 478: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 's') ADVANCE(172); + ACCEPT_TOKEN(aux_sym_char_literal_token1); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(478); if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); + lookahead != '\'' && + lookahead != '\\') ADVANCE(477); END_STATE(); case 479: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 's') ADVANCE(383); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); + ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); case 480: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 's') ADVANCE(433); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); + ACCEPT_TOKEN(aux_sym_integer_literal_token1); END_STATE(); case 481: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 's') ADVANCE(435); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); + ACCEPT_TOKEN(aux_sym_integer_literal_token1); + if (lookahead == '.') ADVANCE(495); + if (lookahead == 'b') ADVANCE(465); + if (lookahead == 'i') ADVANCE(321); + if (lookahead == 'o') ADVANCE(466); + if (lookahead == 'u') ADVANCE(321); + if (lookahead == 'x') ADVANCE(468); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_') ADVANCE(482); END_STATE(); case 482: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 's') ADVANCE(441); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); + ACCEPT_TOKEN(aux_sym_integer_literal_token1); + if (lookahead == '.') ADVANCE(495); + if (lookahead == 'i') ADVANCE(321); + if (lookahead == 'u') ADVANCE(321); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_') ADVANCE(482); END_STATE(); case 483: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 't') ADVANCE(465); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); + ACCEPT_TOKEN(aux_sym_integer_literal_token1); + if (lookahead == '.') ADVANCE(497); + if (lookahead == 'b') ADVANCE(124); + if (lookahead == 'i') ADVANCE(27); + if (lookahead == 'o') ADVANCE(127); + if (lookahead == 'u') ADVANCE(27); + if (lookahead == 'x') ADVANCE(131); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_') ADVANCE(484); END_STATE(); case 484: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 't') ADVANCE(270); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); + ACCEPT_TOKEN(aux_sym_integer_literal_token1); + if (lookahead == '.') ADVANCE(497); + if (lookahead == 'i') ADVANCE(27); + if (lookahead == 'u') ADVANCE(27); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_') ADVANCE(484); END_STATE(); case 485: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 't') ADVANCE(373); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); + ACCEPT_TOKEN(aux_sym_integer_literal_token2); END_STATE(); case 486: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 't') ADVANCE(386); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); + ACCEPT_TOKEN(aux_sym_integer_literal_token2); + if (lookahead == 'i') ADVANCE(30); + if (lookahead == 'u') ADVANCE(30); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(486); END_STATE(); case 487: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 't') ADVANCE(476); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); + ACCEPT_TOKEN(aux_sym_integer_literal_token2); + if (lookahead == 'i') ADVANCE(324); + if (lookahead == 'u') ADVANCE(324); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(487); END_STATE(); case 488: - ACCEPT_TOKEN(sym_text_content); - ADVANCE_MAP( - 'u', 498, - 'x', 505, - '"', 311, - '\'', 311, - '0', 311, - '\\', 311, - 'n', 311, - 'r', 311, - 't', 311, - ); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); + ACCEPT_TOKEN(aux_sym_integer_literal_token3); END_STATE(); case 489: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 'u') ADVANCE(485); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); + ACCEPT_TOKEN(aux_sym_integer_literal_token3); + if (lookahead == 'i') ADVANCE(29); + if (lookahead == 'u') ADVANCE(29); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(489); END_STATE(); case 490: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 'u') ADVANCE(437); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); + ACCEPT_TOKEN(aux_sym_integer_literal_token3); + if (lookahead == 'i') ADVANCE(323); + if (lookahead == 'u') ADVANCE(323); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(490); END_STATE(); case 491: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 'v') ADVANCE(432); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); + ACCEPT_TOKEN(aux_sym_integer_literal_token4); END_STATE(); case 492: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 'z') ADVANCE(442); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != 'z' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); + ACCEPT_TOKEN(aux_sym_integer_literal_token4); + if (lookahead == 'i') ADVANCE(28); + if (lookahead == 'u') ADVANCE(28); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(492); END_STATE(); case 493: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 'z') ADVANCE(444); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != 'z' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); + ACCEPT_TOKEN(aux_sym_integer_literal_token4); + if (lookahead == 'i') ADVANCE(322); + if (lookahead == 'u') ADVANCE(322); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(493); END_STATE(); case 494: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 'z') ADVANCE(434); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != 'z' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); + ACCEPT_TOKEN(sym_float_literal); END_STATE(); case 495: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 'z') ADVANCE(438); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != 'z' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); + ACCEPT_TOKEN(sym_float_literal); + if (lookahead == 'f') ADVANCE(340); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(464); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_') ADVANCE(495); END_STATE(); case 496: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 'z') ADVANCE(439); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != 'z' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); + ACCEPT_TOKEN(sym_float_literal); + if (lookahead == 'f') ADVANCE(340); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(496); END_STATE(); case 497: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == 'z') ADVANCE(440); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != 'z' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); + ACCEPT_TOKEN(sym_float_literal); + if (lookahead == 'f') ADVANCE(40); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(123); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_') ADVANCE(497); END_STATE(); case 498: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == '{') ADVANCE(155); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '}') ADVANCE(506); + ACCEPT_TOKEN(sym_float_literal); + if (lookahead == 'f') ADVANCE(40); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(498); END_STATE(); case 499: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == '+' || - lookahead == '-') ADVANCE(502); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(328); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); + ACCEPT_TOKEN(anon_sym_true); END_STATE(); case 500: - ACCEPT_TOKEN(sym_text_content); - if (lookahead == '0' || - lookahead == '1') ADVANCE(325); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); + ACCEPT_TOKEN(anon_sym_true); + if (lookahead == ':') ADVANCE(50); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); END_STATE(); case 501: - ACCEPT_TOKEN(sym_text_content); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(322); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); + ACCEPT_TOKEN(anon_sym_true); + if (lookahead == ':') ADVANCE(356); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(202); END_STATE(); case 502: - ACCEPT_TOKEN(sym_text_content); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(328); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(506); + ACCEPT_TOKEN(anon_sym_true); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); END_STATE(); case 503: - ACCEPT_TOKEN(sym_text_content); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(311); - if (lookahead != 0 && - lookahead != '<' && - (lookahead < '@' || 'F' < lookahead) && - lookahead != '{' && - lookahead != '}') ADVANCE(506); + ACCEPT_TOKEN(anon_sym_false); END_STATE(); case 504: - ACCEPT_TOKEN(sym_text_content); + ACCEPT_TOKEN(anon_sym_false); + if (lookahead == ':') ADVANCE(50); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(319); - if (lookahead != 0 && - lookahead != '<' && - (lookahead < '@' || 'F' < lookahead) && - lookahead != '{' && - lookahead != '}') ADVANCE(506); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); END_STATE(); case 505: - ACCEPT_TOKEN(sym_text_content); + ACCEPT_TOKEN(anon_sym_false); + if (lookahead == ':') ADVANCE(356); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(503); - if (lookahead != 0 && - lookahead != '<' && - (lookahead < '@' || 'F' < lookahead) && - lookahead != '{' && - lookahead != '}') ADVANCE(506); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(202); END_STATE(); case 506: + ACCEPT_TOKEN(anon_sym_false); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 507: + ACCEPT_TOKEN(anon_sym_PIPE); + END_STATE(); + case 508: + ACCEPT_TOKEN(anon_sym_DASH_GT); + END_STATE(); + case 509: + ACCEPT_TOKEN(anon_sym_render); + END_STATE(); + case 510: + ACCEPT_TOKEN(anon_sym_Out); + END_STATE(); + case 511: + ACCEPT_TOKEN(anon_sym_Target); + END_STATE(); + case 512: + ACCEPT_TOKEN(anon_sym_i8); + END_STATE(); + case 513: + ACCEPT_TOKEN(anon_sym_i8); + if (lookahead == ':') ADVANCE(50); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); + END_STATE(); + case 514: + ACCEPT_TOKEN(anon_sym_i16); + END_STATE(); + case 515: + ACCEPT_TOKEN(anon_sym_i16); + if (lookahead == ':') ADVANCE(50); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); + END_STATE(); + case 516: + ACCEPT_TOKEN(anon_sym_i32); + END_STATE(); + case 517: + ACCEPT_TOKEN(anon_sym_i32); + if (lookahead == ':') ADVANCE(50); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); + END_STATE(); + case 518: + ACCEPT_TOKEN(anon_sym_i64); + END_STATE(); + case 519: + ACCEPT_TOKEN(anon_sym_i64); + if (lookahead == ':') ADVANCE(50); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); + END_STATE(); + case 520: + ACCEPT_TOKEN(anon_sym_i128); + END_STATE(); + case 521: + ACCEPT_TOKEN(anon_sym_i128); + if (lookahead == ':') ADVANCE(50); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); + END_STATE(); + case 522: + ACCEPT_TOKEN(anon_sym_isize); + END_STATE(); + case 523: + ACCEPT_TOKEN(anon_sym_isize); + if (lookahead == ':') ADVANCE(50); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); + END_STATE(); + case 524: + ACCEPT_TOKEN(anon_sym_u8); + END_STATE(); + case 525: + ACCEPT_TOKEN(anon_sym_u8); + if (lookahead == ':') ADVANCE(50); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); + END_STATE(); + case 526: + ACCEPT_TOKEN(anon_sym_u16); + END_STATE(); + case 527: + ACCEPT_TOKEN(anon_sym_u16); + if (lookahead == ':') ADVANCE(50); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); + END_STATE(); + case 528: + ACCEPT_TOKEN(anon_sym_u32); + END_STATE(); + case 529: + ACCEPT_TOKEN(anon_sym_u32); + if (lookahead == ':') ADVANCE(50); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); + END_STATE(); + case 530: + ACCEPT_TOKEN(anon_sym_u64); + END_STATE(); + case 531: + ACCEPT_TOKEN(anon_sym_u64); + if (lookahead == ':') ADVANCE(50); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); + END_STATE(); + case 532: + ACCEPT_TOKEN(anon_sym_u128); + END_STATE(); + case 533: + ACCEPT_TOKEN(anon_sym_u128); + if (lookahead == ':') ADVANCE(50); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); + END_STATE(); + case 534: + ACCEPT_TOKEN(anon_sym_usize); + END_STATE(); + case 535: + ACCEPT_TOKEN(anon_sym_usize); + if (lookahead == ':') ADVANCE(50); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); + END_STATE(); + case 536: + ACCEPT_TOKEN(anon_sym_f32); + END_STATE(); + case 537: + ACCEPT_TOKEN(anon_sym_f32); + if (lookahead == ':') ADVANCE(50); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); + END_STATE(); + case 538: + ACCEPT_TOKEN(anon_sym_f64); + END_STATE(); + case 539: + ACCEPT_TOKEN(anon_sym_f64); + if (lookahead == ':') ADVANCE(50); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); + END_STATE(); + case 540: + ACCEPT_TOKEN(anon_sym_bool); + END_STATE(); + case 541: + ACCEPT_TOKEN(anon_sym_bool); + if (lookahead == ':') ADVANCE(50); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); + END_STATE(); + case 542: + ACCEPT_TOKEN(anon_sym_char); + END_STATE(); + case 543: + ACCEPT_TOKEN(anon_sym_char); + if (lookahead == ':') ADVANCE(50); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); + END_STATE(); + case 544: + ACCEPT_TOKEN(anon_sym_str); + END_STATE(); + case 545: + ACCEPT_TOKEN(anon_sym_str); + if (lookahead == ':') ADVANCE(50); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); + END_STATE(); + case 546: + ACCEPT_TOKEN(anon_sym_String); + END_STATE(); + case 547: + ACCEPT_TOKEN(anon_sym_String); + if (lookahead == ':') ADVANCE(50); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); + END_STATE(); + case 548: + ACCEPT_TOKEN(anon_sym_mut); + END_STATE(); + case 549: + ACCEPT_TOKEN(anon_sym_mut); + if (lookahead == ':') ADVANCE(50); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); + END_STATE(); + case 550: + ACCEPT_TOKEN(sym_template_comment_1); + END_STATE(); + case 551: + ACCEPT_TOKEN(sym_html_comment); + END_STATE(); + case 552: + ACCEPT_TOKEN(sym_raw_block_1); + END_STATE(); + case 553: + ACCEPT_TOKEN(anon_sym_AT_BQUOTE_BQUOTE_BQUOTE); + END_STATE(); + case 554: + ACCEPT_TOKEN(aux_sym_embedded_language_token1); + if (lookahead == '`') ADVANCE(66); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(554); + if (lookahead != 0) ADVANCE(555); + END_STATE(); + case 555: + ACCEPT_TOKEN(aux_sym_embedded_language_token1); + if (lookahead == '`') ADVANCE(66); + if (lookahead != 0) ADVANCE(555); + END_STATE(); + case 556: + ACCEPT_TOKEN(anon_sym_BQUOTE_BQUOTE_BQUOTE_AT); + END_STATE(); + case 557: + ACCEPT_TOKEN(anon_sym_html); + END_STATE(); + case 558: + ACCEPT_TOKEN(anon_sym_css); + END_STATE(); + case 559: + ACCEPT_TOKEN(anon_sym_js); + if (lookahead == 'o') ADVANCE(97); + END_STATE(); + case 560: + ACCEPT_TOKEN(anon_sym_js); + if (lookahead == 'o') ADVANCE(414); + END_STATE(); + case 561: + ACCEPT_TOKEN(anon_sym_javascript); + END_STATE(); + case 562: + ACCEPT_TOKEN(anon_sym_json); + END_STATE(); + case 563: + ACCEPT_TOKEN(anon_sym_alpine); + END_STATE(); + case 564: + ACCEPT_TOKEN(anon_sym_style); + END_STATE(); + case 565: + ACCEPT_TOKEN(sym_escape_at); + END_STATE(); + case 566: + ACCEPT_TOKEN(sym_text_content); + if (lookahead == 'e') ADVANCE(234); + if (lookahead != 0 && + lookahead != '<' && + lookahead != '@' && + lookahead != '{' && + lookahead != '}') ADVANCE(570); + END_STATE(); + case 567: + ACCEPT_TOKEN(sym_text_content); + if (lookahead == 'l') ADVANCE(569); + if (lookahead != 0 && + lookahead != '<' && + lookahead != '@' && + lookahead != '{' && + lookahead != '}') ADVANCE(570); + END_STATE(); + case 568: + ACCEPT_TOKEN(sym_text_content); + if (lookahead == 's') ADVANCE(150); + if (lookahead != 0 && + lookahead != '<' && + lookahead != '@' && + lookahead != '{' && + lookahead != '}') ADVANCE(570); + END_STATE(); + case 569: + ACCEPT_TOKEN(sym_text_content); + if (lookahead == 's') ADVANCE(566); + if (lookahead != 0 && + lookahead != '<' && + lookahead != '@' && + lookahead != '{' && + lookahead != '}') ADVANCE(570); + END_STATE(); + case 570: ACCEPT_TOKEN(sym_text_content); if (lookahead != 0 && lookahead != '<' && lookahead != '@' && lookahead != '{' && - lookahead != '}') ADVANCE(506); + lookahead != '}') ADVANCE(570); END_STATE(); - case 507: + case 571: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(513); + if (lookahead == 'a') ADVANCE(599); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(517); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(635); END_STATE(); - case 508: + case 572: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(512); + if (lookahead == 'a') ADVANCE(593); + if (lookahead == 't') ADVANCE(615); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(517); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(635); END_STATE(); - case 509: + case 573: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(333); + if (lookahead == 'a') ADVANCE(593); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(517); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(635); END_STATE(); - case 510: + case 574: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(336); + if (lookahead == 'a') ADVANCE(598); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(517); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(635); END_STATE(); - case 511: + case 575: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(266); + if (lookahead == 'a') ADVANCE(622); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(517); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(635); END_STATE(); - case 512: + case 576: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'f') ADVANCE(511); + if (lookahead == 'a') ADVANCE(613); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(517); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(635); END_STATE(); - case 513: + case 577: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(515); + if (lookahead == 'a') ADVANCE(625); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(517); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(635); END_STATE(); - case 514: + case 578: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(516); + if (lookahead == 'a') ADVANCE(629); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(517); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(635); END_STATE(); - case 515: + case 579: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(510); + if (lookahead == 'c') ADVANCE(595); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(517); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); END_STATE(); - case 516: + case 580: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(509); + if (lookahead == 'c') ADVANCE(596); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(517); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); END_STATE(); - case 517: + case 581: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'c') ADVANCE(627); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 582: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(502); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 583: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(506); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 584: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(621); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 585: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(149); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 586: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(291); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 587: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(310); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 588: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(618); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 589: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(574); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 590: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(628); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 591: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'f') ADVANCE(232); + if (lookahead == 'm') ADVANCE(610); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 592: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'f') ADVANCE(232); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 593: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'f') ADVANCE(586); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 594: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'g') ADVANCE(590); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 595: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'h') ADVANCE(304); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 596: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'h') ADVANCE(588); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 597: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'i') ADVANCE(605); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 598: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'k') ADVANCE(308); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 599: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(619); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 600: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'm') ADVANCE(212); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 601: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'm') ADVANCE(577); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 602: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(226); + if (lookahead == 'o') ADVANCE(612); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 603: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(631); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 604: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(624); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 605: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(634); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 606: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(604); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 607: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(612); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 608: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(617); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 609: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(614); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 610: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'p') ADVANCE(608); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 611: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(630); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 612: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(237); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 613: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(594); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 614: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(601); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 615: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(632); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 616: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(589); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 617: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(626); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 618: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(295); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 619: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(583); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 620: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(585); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 621: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(302); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 622: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(579); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 623: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(286); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 624: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(597); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 625: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(293); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 626: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(204); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 627: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(206); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 628: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(288); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 629: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(580); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 630: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(582); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 631: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(600); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 632: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(581); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 633: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(623); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 634: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(587); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); + END_STATE(); + case 635: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(517); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(635); END_STATE(); default: return false; @@ -5964,856 +6764,829 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, - [1] = {.lex_state = 167}, - [2] = {.lex_state = 167}, - [3] = {.lex_state = 167}, - [4] = {.lex_state = 162}, - [5] = {.lex_state = 167}, - [6] = {.lex_state = 162}, - [7] = {.lex_state = 161}, - [8] = {.lex_state = 162}, - [9] = {.lex_state = 167}, - [10] = {.lex_state = 162}, - [11] = {.lex_state = 167}, - [12] = {.lex_state = 167}, - [13] = {.lex_state = 162}, - [14] = {.lex_state = 162}, - [15] = {.lex_state = 162}, - [16] = {.lex_state = 162}, - [17] = {.lex_state = 162}, - [18] = {.lex_state = 162}, - [19] = {.lex_state = 162}, - [20] = {.lex_state = 162}, - [21] = {.lex_state = 162}, - [22] = {.lex_state = 162}, - [23] = {.lex_state = 162}, - [24] = {.lex_state = 162}, - [25] = {.lex_state = 162}, - [26] = {.lex_state = 162}, - [27] = {.lex_state = 162}, - [28] = {.lex_state = 162}, - [29] = {.lex_state = 162}, - [30] = {.lex_state = 162}, - [31] = {.lex_state = 162}, - [32] = {.lex_state = 162}, - [33] = {.lex_state = 162}, - [34] = {.lex_state = 162}, - [35] = {.lex_state = 162}, - [36] = {.lex_state = 163}, - [37] = {.lex_state = 4}, - [38] = {.lex_state = 163}, - [39] = {.lex_state = 4}, - [40] = {.lex_state = 163}, - [41] = {.lex_state = 163}, - [42] = {.lex_state = 1}, - [43] = {.lex_state = 2}, - [44] = {.lex_state = 2}, - [45] = {.lex_state = 2}, - [46] = {.lex_state = 2}, - [47] = {.lex_state = 2}, - [48] = {.lex_state = 7}, - [49] = {.lex_state = 7}, - [50] = {.lex_state = 2}, - [51] = {.lex_state = 2}, - [52] = {.lex_state = 2}, - [53] = {.lex_state = 2}, - [54] = {.lex_state = 7}, - [55] = {.lex_state = 2}, - [56] = {.lex_state = 2}, - [57] = {.lex_state = 55}, - [58] = {.lex_state = 2}, - [59] = {.lex_state = 7}, - [60] = {.lex_state = 7}, - [61] = {.lex_state = 55}, - [62] = {.lex_state = 2}, - [63] = {.lex_state = 2}, - [64] = {.lex_state = 2}, - [65] = {.lex_state = 7}, - [66] = {.lex_state = 2}, - [67] = {.lex_state = 2}, - [68] = {.lex_state = 2}, - [69] = {.lex_state = 55}, - [70] = {.lex_state = 7}, - [71] = {.lex_state = 2}, - [72] = {.lex_state = 2}, - [73] = {.lex_state = 2}, - [74] = {.lex_state = 2}, - [75] = {.lex_state = 2}, - [76] = {.lex_state = 2}, - [77] = {.lex_state = 2}, - [78] = {.lex_state = 2}, - [79] = {.lex_state = 7}, - [80] = {.lex_state = 55}, - [81] = {.lex_state = 2}, + [1] = {.lex_state = 142}, + [2] = {.lex_state = 4}, + [3] = {.lex_state = 142}, + [4] = {.lex_state = 4}, + [5] = {.lex_state = 142}, + [6] = {.lex_state = 4}, + [7] = {.lex_state = 4}, + [8] = {.lex_state = 12}, + [9] = {.lex_state = 12}, + [10] = {.lex_state = 12}, + [11] = {.lex_state = 4}, + [12] = {.lex_state = 4}, + [13] = {.lex_state = 4}, + [14] = {.lex_state = 4}, + [15] = {.lex_state = 4}, + [16] = {.lex_state = 13}, + [17] = {.lex_state = 12}, + [18] = {.lex_state = 12}, + [19] = {.lex_state = 12}, + [20] = {.lex_state = 12}, + [21] = {.lex_state = 12}, + [22] = {.lex_state = 12}, + [23] = {.lex_state = 12}, + [24] = {.lex_state = 142}, + [25] = {.lex_state = 12}, + [26] = {.lex_state = 12}, + [27] = {.lex_state = 12}, + [28] = {.lex_state = 12}, + [29] = {.lex_state = 13}, + [30] = {.lex_state = 12}, + [31] = {.lex_state = 13}, + [32] = {.lex_state = 13}, + [33] = {.lex_state = 12}, + [34] = {.lex_state = 12}, + [35] = {.lex_state = 12}, + [36] = {.lex_state = 12}, + [37] = {.lex_state = 12}, + [38] = {.lex_state = 12}, + [39] = {.lex_state = 12}, + [40] = {.lex_state = 12}, + [41] = {.lex_state = 12}, + [42] = {.lex_state = 12}, + [43] = {.lex_state = 12}, + [44] = {.lex_state = 12}, + [45] = {.lex_state = 12}, + [46] = {.lex_state = 12}, + [47] = {.lex_state = 12}, + [48] = {.lex_state = 12}, + [49] = {.lex_state = 12}, + [50] = {.lex_state = 12}, + [51] = {.lex_state = 12}, + [52] = {.lex_state = 12}, + [53] = {.lex_state = 12}, + [54] = {.lex_state = 12}, + [55] = {.lex_state = 12}, + [56] = {.lex_state = 142}, + [57] = {.lex_state = 51}, + [58] = {.lex_state = 142}, + [59] = {.lex_state = 51}, + [60] = {.lex_state = 142}, + [61] = {.lex_state = 142}, + [62] = {.lex_state = 142}, + [63] = {.lex_state = 142}, + [64] = {.lex_state = 51}, + [65] = {.lex_state = 142}, + [66] = {.lex_state = 142}, + [67] = {.lex_state = 52}, + [68] = {.lex_state = 142}, + [69] = {.lex_state = 142}, + [70] = {.lex_state = 142}, + [71] = {.lex_state = 52}, + [72] = {.lex_state = 52}, + [73] = {.lex_state = 52}, + [74] = {.lex_state = 142}, + [75] = {.lex_state = 142}, + [76] = {.lex_state = 51}, + [77] = {.lex_state = 142}, + [78] = {.lex_state = 7}, + [79] = {.lex_state = 12}, + [80] = {.lex_state = 7}, + [81] = {.lex_state = 5}, [82] = {.lex_state = 7}, [83] = {.lex_state = 7}, - [84] = {.lex_state = 7}, + [84] = {.lex_state = 5}, [85] = {.lex_state = 7}, - [86] = {.lex_state = 7}, + [86] = {.lex_state = 5}, [87] = {.lex_state = 7}, - [88] = {.lex_state = 7}, - [89] = {.lex_state = 3}, - [90] = {.lex_state = 7}, - [91] = {.lex_state = 8}, + [88] = {.lex_state = 12}, + [89] = {.lex_state = 8}, + [90] = {.lex_state = 12}, + [91] = {.lex_state = 12}, [92] = {.lex_state = 7}, [93] = {.lex_state = 7}, - [94] = {.lex_state = 7}, + [94] = {.lex_state = 8}, [95] = {.lex_state = 7}, - [96] = {.lex_state = 8}, - [97] = {.lex_state = 7}, - [98] = {.lex_state = 7}, - [99] = {.lex_state = 7}, - [100] = {.lex_state = 7}, - [101] = {.lex_state = 3}, - [102] = {.lex_state = 3}, - [103] = {.lex_state = 8}, - [104] = {.lex_state = 7}, - [105] = {.lex_state = 8}, + [96] = {.lex_state = 12}, + [97] = {.lex_state = 12}, + [98] = {.lex_state = 12}, + [99] = {.lex_state = 12}, + [100] = {.lex_state = 12}, + [101] = {.lex_state = 12}, + [102] = {.lex_state = 12}, + [103] = {.lex_state = 12}, + [104] = {.lex_state = 12}, + [105] = {.lex_state = 7}, [106] = {.lex_state = 7}, - [107] = {.lex_state = 55}, - [108] = {.lex_state = 7}, + [107] = {.lex_state = 7}, + [108] = {.lex_state = 12}, [109] = {.lex_state = 7}, - [110] = {.lex_state = 7}, + [110] = {.lex_state = 12}, [111] = {.lex_state = 7}, - [112] = {.lex_state = 7}, - [113] = {.lex_state = 55}, + [112] = {.lex_state = 12}, + [113] = {.lex_state = 5}, [114] = {.lex_state = 7}, - [115] = {.lex_state = 55}, - [116] = {.lex_state = 7}, - [117] = {.lex_state = 55}, - [118] = {.lex_state = 7}, - [119] = {.lex_state = 7}, - [120] = {.lex_state = 7}, - [121] = {.lex_state = 7}, - [122] = {.lex_state = 7}, - [123] = {.lex_state = 55}, + [115] = {.lex_state = 5}, + [116] = {.lex_state = 5}, + [117] = {.lex_state = 7}, + [118] = {.lex_state = 12}, + [119] = {.lex_state = 5}, + [120] = {.lex_state = 5}, + [121] = {.lex_state = 5}, + [122] = {.lex_state = 12}, + [123] = {.lex_state = 5}, [124] = {.lex_state = 7}, [125] = {.lex_state = 7}, - [126] = {.lex_state = 7}, - [127] = {.lex_state = 55}, + [126] = {.lex_state = 5}, + [127] = {.lex_state = 7}, [128] = {.lex_state = 7}, - [129] = {.lex_state = 7}, - [130] = {.lex_state = 55}, - [131] = {.lex_state = 55}, - [132] = {.lex_state = 7}, - [133] = {.lex_state = 7}, - [134] = {.lex_state = 55}, - [135] = {.lex_state = 55}, - [136] = {.lex_state = 3}, - [137] = {.lex_state = 7}, - [138] = {.lex_state = 7}, - [139] = {.lex_state = 7}, - [140] = {.lex_state = 55}, - [141] = {.lex_state = 55}, + [129] = {.lex_state = 12}, + [130] = {.lex_state = 7}, + [131] = {.lex_state = 12}, + [132] = {.lex_state = 5}, + [133] = {.lex_state = 5}, + [134] = {.lex_state = 5}, + [135] = {.lex_state = 5}, + [136] = {.lex_state = 12}, + [137] = {.lex_state = 5}, + [138] = {.lex_state = 5}, + [139] = {.lex_state = 12}, + [140] = {.lex_state = 7}, + [141] = {.lex_state = 7}, [142] = {.lex_state = 7}, - [143] = {.lex_state = 55}, + [143] = {.lex_state = 7}, [144] = {.lex_state = 7}, [145] = {.lex_state = 7}, [146] = {.lex_state = 7}, [147] = {.lex_state = 7}, - [148] = {.lex_state = 55}, - [149] = {.lex_state = 7}, - [150] = {.lex_state = 55}, + [148] = {.lex_state = 7}, + [149] = {.lex_state = 12}, + [150] = {.lex_state = 7}, [151] = {.lex_state = 7}, - [152] = {.lex_state = 55}, - [153] = {.lex_state = 55}, - [154] = {.lex_state = 55}, - [155] = {.lex_state = 55}, - [156] = {.lex_state = 55}, - [157] = {.lex_state = 55}, - [158] = {.lex_state = 55}, - [159] = {.lex_state = 55}, - [160] = {.lex_state = 7}, - [161] = {.lex_state = 7}, - [162] = {.lex_state = 7}, - [163] = {.lex_state = 7}, - [164] = {.lex_state = 7}, - [165] = {.lex_state = 7}, - [166] = {.lex_state = 7}, - [167] = {.lex_state = 7}, - [168] = {.lex_state = 7}, - [169] = {.lex_state = 7}, - [170] = {.lex_state = 7}, - [171] = {.lex_state = 7}, - [172] = {.lex_state = 7}, - [173] = {.lex_state = 7}, - [174] = {.lex_state = 7}, - [175] = {.lex_state = 7}, - [176] = {.lex_state = 7}, - [177] = {.lex_state = 7}, - [178] = {.lex_state = 55}, - [179] = {.lex_state = 55}, - [180] = {.lex_state = 55}, - [181] = {.lex_state = 55}, - [182] = {.lex_state = 55}, - [183] = {.lex_state = 55}, - [184] = {.lex_state = 14}, - [185] = {.lex_state = 14}, - [186] = {.lex_state = 14}, - [187] = {.lex_state = 14}, - [188] = {.lex_state = 14}, - [189] = {.lex_state = 14}, - [190] = {.lex_state = 15}, - [191] = {.lex_state = 14}, - [192] = {.lex_state = 14}, - [193] = {.lex_state = 15}, - [194] = {.lex_state = 14}, - [195] = {.lex_state = 14}, - [196] = {.lex_state = 14}, - [197] = {.lex_state = 15}, - [198] = {.lex_state = 14}, - [199] = {.lex_state = 14}, - [200] = {.lex_state = 14}, - [201] = {.lex_state = 14}, - [202] = {.lex_state = 14}, - [203] = {.lex_state = 14}, - [204] = {.lex_state = 14}, - [205] = {.lex_state = 14}, - [206] = {.lex_state = 14}, - [207] = {.lex_state = 14}, - [208] = {.lex_state = 6}, - [209] = {.lex_state = 6}, - [210] = {.lex_state = 6}, - [211] = {.lex_state = 6}, - [212] = {.lex_state = 6}, - [213] = {.lex_state = 6}, - [214] = {.lex_state = 6}, - [215] = {.lex_state = 5}, - [216] = {.lex_state = 4}, - [217] = {.lex_state = 4}, - [218] = {.lex_state = 4}, - [219] = {.lex_state = 4}, - [220] = {.lex_state = 4}, - [221] = {.lex_state = 4}, - [222] = {.lex_state = 4}, - [223] = {.lex_state = 4}, - [224] = {.lex_state = 4}, - [225] = {.lex_state = 4}, - [226] = {.lex_state = 4}, - [227] = {.lex_state = 14}, - [228] = {.lex_state = 4}, - [229] = {.lex_state = 4}, - [230] = {.lex_state = 4}, - [231] = {.lex_state = 4}, - [232] = {.lex_state = 4}, - [233] = {.lex_state = 4}, - [234] = {.lex_state = 4}, - [235] = {.lex_state = 4}, - [236] = {.lex_state = 4}, - [237] = {.lex_state = 4}, - [238] = {.lex_state = 4}, - [239] = {.lex_state = 4}, - [240] = {.lex_state = 4}, - [241] = {.lex_state = 4}, - [242] = {.lex_state = 4}, - [243] = {.lex_state = 164}, - [244] = {.lex_state = 169}, - [245] = {.lex_state = 164}, - [246] = {.lex_state = 169}, - [247] = {.lex_state = 169}, - [248] = {.lex_state = 164}, - [249] = {.lex_state = 14}, - [250] = {.lex_state = 169}, - [251] = {.lex_state = 4}, - [252] = {.lex_state = 4}, - [253] = {.lex_state = 4}, - [254] = {.lex_state = 4}, - [255] = {.lex_state = 164}, - [256] = {.lex_state = 14}, - [257] = {.lex_state = 4}, - [258] = {.lex_state = 4}, - [259] = {.lex_state = 14}, - [260] = {.lex_state = 14}, - [261] = {.lex_state = 14}, - [262] = {.lex_state = 164}, - [263] = {.lex_state = 4}, - [264] = {.lex_state = 4}, - [265] = {.lex_state = 14}, - [266] = {.lex_state = 14}, - [267] = {.lex_state = 14}, - [268] = {.lex_state = 14}, - [269] = {.lex_state = 14}, - [270] = {.lex_state = 14}, - [271] = {.lex_state = 14}, - [272] = {.lex_state = 14}, - [273] = {.lex_state = 4}, - [274] = {.lex_state = 14}, - [275] = {.lex_state = 14}, - [276] = {.lex_state = 169}, - [277] = {.lex_state = 4}, - [278] = {.lex_state = 4}, - [279] = {.lex_state = 165}, - [280] = {.lex_state = 168}, - [281] = {.lex_state = 14}, - [282] = {.lex_state = 165}, - [283] = {.lex_state = 17}, - [284] = {.lex_state = 4}, - [285] = {.lex_state = 17}, - [286] = {.lex_state = 54}, - [287] = {.lex_state = 4}, - [288] = {.lex_state = 54}, - [289] = {.lex_state = 169}, - [290] = {.lex_state = 17}, - [291] = {.lex_state = 4}, - [292] = {.lex_state = 4}, - [293] = {.lex_state = 169}, - [294] = {.lex_state = 166}, - [295] = {.lex_state = 54}, - [296] = {.lex_state = 169}, - [297] = {.lex_state = 168}, - [298] = {.lex_state = 54}, - [299] = {.lex_state = 166}, - [300] = {.lex_state = 4}, - [301] = {.lex_state = 169}, - [302] = {.lex_state = 167}, - [303] = {.lex_state = 167}, - [304] = {.lex_state = 4}, - [305] = {.lex_state = 167}, - [306] = {.lex_state = 167}, - [307] = {.lex_state = 167}, - [308] = {.lex_state = 167}, - [309] = {.lex_state = 167}, - [310] = {.lex_state = 9}, - [311] = {.lex_state = 167}, - [312] = {.lex_state = 167}, - [313] = {.lex_state = 167}, - [314] = {.lex_state = 167}, - [315] = {.lex_state = 167}, - [316] = {.lex_state = 4}, - [317] = {.lex_state = 167}, - [318] = {.lex_state = 167}, - [319] = {.lex_state = 4}, - [320] = {.lex_state = 167}, - [321] = {.lex_state = 167}, - [322] = {.lex_state = 167}, - [323] = {.lex_state = 4}, - [324] = {.lex_state = 167}, - [325] = {.lex_state = 167}, - [326] = {.lex_state = 167}, - [327] = {.lex_state = 17}, - [328] = {.lex_state = 167}, - [329] = {.lex_state = 167}, - [330] = {.lex_state = 54}, - [331] = {.lex_state = 17}, - [332] = {.lex_state = 167}, - [333] = {.lex_state = 167}, - [334] = {.lex_state = 167}, - [335] = {.lex_state = 167}, - [336] = {.lex_state = 167}, - [337] = {.lex_state = 167}, - [338] = {.lex_state = 167}, - [339] = {.lex_state = 167}, - [340] = {.lex_state = 4}, - [341] = {.lex_state = 167}, - [342] = {.lex_state = 4}, - [343] = {.lex_state = 167}, - [344] = {.lex_state = 167}, - [345] = {.lex_state = 167}, - [346] = {.lex_state = 167}, - [347] = {.lex_state = 167}, - [348] = {.lex_state = 167}, - [349] = {.lex_state = 167}, - [350] = {.lex_state = 167}, - [351] = {.lex_state = 4}, - [352] = {.lex_state = 167}, - [353] = {.lex_state = 4}, - [354] = {.lex_state = 4}, - [355] = {.lex_state = 4}, + [152] = {.lex_state = 7}, + [153] = {.lex_state = 7}, + [154] = {.lex_state = 12}, + [155] = {.lex_state = 12}, + [156] = {.lex_state = 5}, + [157] = {.lex_state = 7}, + [158] = {.lex_state = 12}, + [159] = {.lex_state = 12}, + [160] = {.lex_state = 12}, + [161] = {.lex_state = 5}, + [162] = {.lex_state = 5}, + [163] = {.lex_state = 5}, + [164] = {.lex_state = 5}, + [165] = {.lex_state = 5}, + [166] = {.lex_state = 5}, + [167] = {.lex_state = 5}, + [168] = {.lex_state = 5}, + [169] = {.lex_state = 5}, + [170] = {.lex_state = 6}, + [171] = {.lex_state = 6}, + [172] = {.lex_state = 6}, + [173] = {.lex_state = 6}, + [174] = {.lex_state = 15}, + [175] = {.lex_state = 136}, + [176] = {.lex_state = 5}, + [177] = {.lex_state = 137}, + [178] = {.lex_state = 141}, + [179] = {.lex_state = 141}, + [180] = {.lex_state = 5}, + [181] = {.lex_state = 141}, + [182] = {.lex_state = 137}, + [183] = {.lex_state = 141}, + [184] = {.lex_state = 137}, + [185] = {.lex_state = 137}, + [186] = {.lex_state = 137}, + [187] = {.lex_state = 138}, + [188] = {.lex_state = 141}, + [189] = {.lex_state = 137}, + [190] = {.lex_state = 139}, + [191] = {.lex_state = 139}, + [192] = {.lex_state = 141}, + [193] = {.lex_state = 141}, + [194] = {.lex_state = 140}, + [195] = {.lex_state = 140}, + [196] = {.lex_state = 140}, + [197] = {.lex_state = 140}, + [198] = {.lex_state = 140}, + [199] = {.lex_state = 5}, + [200] = {.lex_state = 140}, + [201] = {.lex_state = 140}, + [202] = {.lex_state = 140}, + [203] = {.lex_state = 140}, + [204] = {.lex_state = 141}, + [205] = {.lex_state = 5}, + [206] = {.lex_state = 140}, + [207] = {.lex_state = 140}, + [208] = {.lex_state = 140}, + [209] = {.lex_state = 140}, + [210] = {.lex_state = 140}, + [211] = {.lex_state = 140}, + [212] = {.lex_state = 140}, + [213] = {.lex_state = 140}, + [214] = {.lex_state = 140}, + [215] = {.lex_state = 140}, + [216] = {.lex_state = 141}, + [217] = {.lex_state = 140}, + [218] = {.lex_state = 140}, + [219] = {.lex_state = 140}, + [220] = {.lex_state = 140}, + [221] = {.lex_state = 140}, + [222] = {.lex_state = 140}, + [223] = {.lex_state = 140}, + [224] = {.lex_state = 143}, + [225] = {.lex_state = 5}, + [226] = {.lex_state = 142}, + [227] = {.lex_state = 142}, + [228] = {.lex_state = 142}, + [229] = {.lex_state = 142}, + [230] = {.lex_state = 142}, + [231] = {.lex_state = 142}, + [232] = {.lex_state = 142}, + [233] = {.lex_state = 142}, + [234] = {.lex_state = 5}, + [235] = {.lex_state = 142}, + [236] = {.lex_state = 142}, + [237] = {.lex_state = 142}, + [238] = {.lex_state = 142}, + [239] = {.lex_state = 142}, + [240] = {.lex_state = 142}, + [241] = {.lex_state = 142}, + [242] = {.lex_state = 143}, + [243] = {.lex_state = 142}, + [244] = {.lex_state = 143}, + [245] = {.lex_state = 142}, + [246] = {.lex_state = 142}, + [247] = {.lex_state = 142}, + [248] = {.lex_state = 142}, + [249] = {.lex_state = 142}, + [250] = {.lex_state = 142}, + [251] = {.lex_state = 142}, + [252] = {.lex_state = 142}, + [253] = {.lex_state = 142}, + [254] = {.lex_state = 142}, + [255] = {.lex_state = 142}, + [256] = {.lex_state = 142}, + [257] = {.lex_state = 142}, + [258] = {.lex_state = 142}, + [259] = {.lex_state = 142}, + [260] = {.lex_state = 142}, + [261] = {.lex_state = 142}, + [262] = {.lex_state = 142}, + [263] = {.lex_state = 142}, + [264] = {.lex_state = 142}, + [265] = {.lex_state = 142}, + [266] = {.lex_state = 142}, + [267] = {.lex_state = 142}, + [268] = {.lex_state = 142}, + [269] = {.lex_state = 142}, + [270] = {.lex_state = 142}, + [271] = {.lex_state = 142}, + [272] = {.lex_state = 142}, + [273] = {.lex_state = 16}, + [274] = {.lex_state = 142}, + [275] = {.lex_state = 142}, + [276] = {.lex_state = 0}, + [277] = {.lex_state = 1}, + [278] = {.lex_state = 143}, + [279] = {.lex_state = 143}, + [280] = {.lex_state = 2}, + [281] = {.lex_state = 2}, + [282] = {.lex_state = 142}, + [283] = {.lex_state = 142}, + [284] = {.lex_state = 142}, + [285] = {.lex_state = 142}, + [286] = {.lex_state = 142}, + [287] = {.lex_state = 142}, + [288] = {.lex_state = 142}, + [289] = {.lex_state = 142}, + [290] = {.lex_state = 142}, + [291] = {.lex_state = 142}, + [292] = {.lex_state = 2}, + [293] = {.lex_state = 2}, + [294] = {.lex_state = 2}, + [295] = {.lex_state = 142}, + [296] = {.lex_state = 142}, + [297] = {.lex_state = 2}, + [298] = {.lex_state = 18}, + [299] = {.lex_state = 18}, + [300] = {.lex_state = 2}, + [301] = {.lex_state = 18}, + [302] = {.lex_state = 2}, + [303] = {.lex_state = 2}, + [304] = {.lex_state = 2}, + [305] = {.lex_state = 2}, + [306] = {.lex_state = 2}, + [307] = {.lex_state = 1}, + [308] = {.lex_state = 2}, + [309] = {.lex_state = 2}, + [310] = {.lex_state = 1}, + [311] = {.lex_state = 2}, + [312] = {.lex_state = 2}, + [313] = {.lex_state = 1}, + [314] = {.lex_state = 1}, + [315] = {.lex_state = 1}, + [316] = {.lex_state = 1}, + [317] = {.lex_state = 1}, + [318] = {.lex_state = 17}, + [319] = {.lex_state = 1}, + [320] = {.lex_state = 1}, + [321] = {.lex_state = 1}, + [322] = {.lex_state = 1}, + [323] = {.lex_state = 1}, + [324] = {.lex_state = 1}, + [325] = {.lex_state = 1}, + [326] = {.lex_state = 1}, + [327] = {.lex_state = 1}, + [328] = {.lex_state = 1}, + [329] = {.lex_state = 1}, + [330] = {.lex_state = 2}, + [331] = {.lex_state = 2}, + [332] = {.lex_state = 1}, + [333] = {.lex_state = 1}, + [334] = {.lex_state = 1}, + [335] = {.lex_state = 1}, + [336] = {.lex_state = 1}, + [337] = {.lex_state = 1}, + [338] = {.lex_state = 1}, + [339] = {.lex_state = 1}, + [340] = {.lex_state = 14}, + [341] = {.lex_state = 2}, + [342] = {.lex_state = 14}, + [343] = {.lex_state = 14}, + [344] = {.lex_state = 14}, + [345] = {.lex_state = 14}, + [346] = {.lex_state = 14}, + [347] = {.lex_state = 2}, + [348] = {.lex_state = 1}, + [349] = {.lex_state = 1}, + [350] = {.lex_state = 1}, + [351] = {.lex_state = 1}, + [352] = {.lex_state = 18}, + [353] = {.lex_state = 14}, + [354] = {.lex_state = 1}, + [355] = {.lex_state = 18}, [356] = {.lex_state = 4}, - [357] = {.lex_state = 4}, - [358] = {.lex_state = 167}, - [359] = {.lex_state = 4}, - [360] = {.lex_state = 4}, - [361] = {.lex_state = 4}, - [362] = {.lex_state = 167}, - [363] = {.lex_state = 167}, - [364] = {.lex_state = 9}, - [365] = {.lex_state = 167}, - [366] = {.lex_state = 167}, - [367] = {.lex_state = 9}, - [368] = {.lex_state = 167}, - [369] = {.lex_state = 167}, - [370] = {.lex_state = 9}, - [371] = {.lex_state = 9}, - [372] = {.lex_state = 4}, - [373] = {.lex_state = 4}, - [374] = {.lex_state = 4}, - [375] = {.lex_state = 4}, - [376] = {.lex_state = 4}, - [377] = {.lex_state = 4}, - [378] = {.lex_state = 4}, - [379] = {.lex_state = 4}, - [380] = {.lex_state = 4}, - [381] = {.lex_state = 4}, - [382] = {.lex_state = 4}, - [383] = {.lex_state = 4}, - [384] = {.lex_state = 4}, - [385] = {.lex_state = 4}, - [386] = {.lex_state = 4}, - [387] = {.lex_state = 4}, - [388] = {.lex_state = 4}, - [389] = {.lex_state = 4}, - [390] = {.lex_state = 4}, - [391] = {.lex_state = 4}, - [392] = {.lex_state = 4}, - [393] = {.lex_state = 51}, - [394] = {.lex_state = 51}, - [395] = {.lex_state = 4}, - [396] = {.lex_state = 4}, - [397] = {.lex_state = 4}, - [398] = {.lex_state = 4}, - [399] = {.lex_state = 53}, - [400] = {.lex_state = 53}, - [401] = {.lex_state = 54}, - [402] = {.lex_state = 54}, - [403] = {.lex_state = 54}, - [404] = {.lex_state = 54}, - [405] = {.lex_state = 55}, - [406] = {.lex_state = 55}, - [407] = {.lex_state = 55}, - [408] = {.lex_state = 55}, - [409] = {.lex_state = 55}, - [410] = {.lex_state = 55}, - [411] = {.lex_state = 55}, - [412] = {.lex_state = 55}, - [413] = {.lex_state = 55}, - [414] = {.lex_state = 55}, - [415] = {.lex_state = 55}, - [416] = {.lex_state = 55}, - [417] = {.lex_state = 55}, - [418] = {.lex_state = 55}, - [419] = {.lex_state = 55}, - [420] = {.lex_state = 55}, - [421] = {.lex_state = 55}, - [422] = {.lex_state = 55}, - [423] = {.lex_state = 55}, - [424] = {.lex_state = 55}, - [425] = {.lex_state = 55}, - [426] = {.lex_state = 55}, - [427] = {.lex_state = 55}, - [428] = {.lex_state = 55}, - [429] = {.lex_state = 55}, - [430] = {.lex_state = 55}, - [431] = {.lex_state = 55}, - [432] = {.lex_state = 55}, - [433] = {.lex_state = 55}, - [434] = {.lex_state = 55}, - [435] = {.lex_state = 55}, - [436] = {.lex_state = 55}, - [437] = {.lex_state = 55}, - [438] = {.lex_state = 55}, - [439] = {.lex_state = 55}, - [440] = {.lex_state = 7}, - [441] = {.lex_state = 7}, - [442] = {.lex_state = 4}, - [443] = {.lex_state = 4}, - [444] = {.lex_state = 4}, - [445] = {.lex_state = 4}, - [446] = {.lex_state = 16}, - [447] = {.lex_state = 16}, - [448] = {.lex_state = 16}, - [449] = {.lex_state = 16}, - [450] = {.lex_state = 16}, - [451] = {.lex_state = 16}, - [452] = {.lex_state = 16}, - [453] = {.lex_state = 16}, - [454] = {.lex_state = 16}, - [455] = {.lex_state = 16}, - [456] = {.lex_state = 16}, - [457] = {.lex_state = 16}, - [458] = {.lex_state = 16}, - [459] = {.lex_state = 16}, - [460] = {.lex_state = 16}, - [461] = {.lex_state = 16}, - [462] = {.lex_state = 16}, - [463] = {.lex_state = 16}, - [464] = {.lex_state = 13}, - [465] = {.lex_state = 16}, - [466] = {.lex_state = 13}, - [467] = {.lex_state = 13}, - [468] = {.lex_state = 13}, - [469] = {.lex_state = 13}, - [470] = {.lex_state = 13}, - [471] = {.lex_state = 16}, - [472] = {.lex_state = 13}, - [473] = {.lex_state = 13}, - [474] = {.lex_state = 13}, - [475] = {.lex_state = 13}, - [476] = {.lex_state = 13}, - [477] = {.lex_state = 13}, - [478] = {.lex_state = 13}, - [479] = {.lex_state = 13}, - [480] = {.lex_state = 13}, - [481] = {.lex_state = 13}, - [482] = {.lex_state = 13}, - [483] = {.lex_state = 13}, - [484] = {.lex_state = 13}, - [485] = {.lex_state = 13}, - [486] = {.lex_state = 4}, - [487] = {.lex_state = 13}, - [488] = {.lex_state = 6}, - [489] = {.lex_state = 13}, - [490] = {.lex_state = 13}, - [491] = {.lex_state = 6}, - [492] = {.lex_state = 21}, - [493] = {.lex_state = 27}, - [494] = {.lex_state = 21}, - [495] = {.lex_state = 13}, - [496] = {.lex_state = 13}, - [497] = {.lex_state = 16}, - [498] = {.lex_state = 27}, - [499] = {.lex_state = 19}, - [500] = {.lex_state = 16}, - [501] = {.lex_state = 16}, - [502] = {.lex_state = 16}, - [503] = {.lex_state = 16}, - [504] = {.lex_state = 16}, - [505] = {.lex_state = 19}, - [506] = {.lex_state = 19}, - [507] = {.lex_state = 16}, - [508] = {.lex_state = 16}, - [509] = {.lex_state = 16}, - [510] = {.lex_state = 16}, - [511] = {.lex_state = 16}, - [512] = {.lex_state = 16}, - [513] = {.lex_state = 16}, - [514] = {.lex_state = 16}, - [515] = {.lex_state = 16}, - [516] = {.lex_state = 16}, - [517] = {.lex_state = 19}, - [518] = {.lex_state = 16}, - [519] = {.lex_state = 16}, - [520] = {.lex_state = 21}, - [521] = {.lex_state = 21}, - [522] = {.lex_state = 21}, - [523] = {.lex_state = 18}, - [524] = {.lex_state = 21}, - [525] = {.lex_state = 19}, - [526] = {.lex_state = 19}, - [527] = {.lex_state = 13}, - [528] = {.lex_state = 19}, - [529] = {.lex_state = 11}, - [530] = {.lex_state = 19}, - [531] = {.lex_state = 21}, - [532] = {.lex_state = 21}, - [533] = {.lex_state = 5}, - [534] = {.lex_state = 18}, - [535] = {.lex_state = 10}, - [536] = {.lex_state = 5}, - [537] = {.lex_state = 5}, - [538] = {.lex_state = 5}, - [539] = {.lex_state = 18}, - [540] = {.lex_state = 10}, - [541] = {.lex_state = 10}, - [542] = {.lex_state = 5}, - [543] = {.lex_state = 5}, - [544] = {.lex_state = 13}, - [545] = {.lex_state = 5}, - [546] = {.lex_state = 5}, - [547] = {.lex_state = 5}, - [548] = {.lex_state = 5}, - [549] = {.lex_state = 5}, - [550] = {.lex_state = 21}, - [551] = {.lex_state = 13}, - [552] = {.lex_state = 13}, - [553] = {.lex_state = 21}, - [554] = {.lex_state = 5}, - [555] = {.lex_state = 21}, - [556] = {.lex_state = 10}, - [557] = {.lex_state = 21}, - [558] = {.lex_state = 4}, - [559] = {.lex_state = 21}, - [560] = {.lex_state = 10}, - [561] = {.lex_state = 21}, - [562] = {.lex_state = 7}, - [563] = {.lex_state = 5}, - [564] = {.lex_state = 21}, - [565] = {.lex_state = 10}, - [566] = {.lex_state = 10}, - [567] = {.lex_state = 21}, - [568] = {.lex_state = 5}, - [569] = {.lex_state = 10}, - [570] = {.lex_state = 10}, - [571] = {.lex_state = 21}, - [572] = {.lex_state = 21}, - [573] = {.lex_state = 10}, - [574] = {.lex_state = 21}, - [575] = {.lex_state = 21}, - [576] = {.lex_state = 21}, - [577] = {.lex_state = 21}, - [578] = {.lex_state = 5}, - [579] = {.lex_state = 13}, - [580] = {.lex_state = 13}, - [581] = {.lex_state = 13}, - [582] = {.lex_state = 21}, - [583] = {.lex_state = 13}, - [584] = {.lex_state = 10}, - [585] = {.lex_state = 5}, - [586] = {.lex_state = 7}, - [587] = {.lex_state = 7}, - [588] = {.lex_state = 4}, - [589] = {.lex_state = 5}, - [590] = {.lex_state = 7}, - [591] = {.lex_state = 4}, - [592] = {.lex_state = 4}, - [593] = {.lex_state = 4}, - [594] = {.lex_state = 5}, - [595] = {.lex_state = 13}, - [596] = {.lex_state = 7}, - [597] = {.lex_state = 5}, - [598] = {.lex_state = 4}, - [599] = {.lex_state = 0}, - [600] = {.lex_state = 4}, - [601] = {.lex_state = 7}, - [602] = {.lex_state = 7}, - [603] = {.lex_state = 7}, - [604] = {.lex_state = 4}, - [605] = {.lex_state = 6}, - [606] = {.lex_state = 4}, - [607] = {.lex_state = 7}, - [608] = {.lex_state = 4}, - [609] = {.lex_state = 4}, - [610] = {.lex_state = 5}, - [611] = {.lex_state = 4}, - [612] = {.lex_state = 4}, - [613] = {.lex_state = 7}, - [614] = {.lex_state = 7}, - [615] = {.lex_state = 5}, - [616] = {.lex_state = 4}, + [357] = {.lex_state = 12}, + [358] = {.lex_state = 4}, + [359] = {.lex_state = 1}, + [360] = {.lex_state = 14}, + [361] = {.lex_state = 12}, + [362] = {.lex_state = 26}, + [363] = {.lex_state = 12}, + [364] = {.lex_state = 2}, + [365] = {.lex_state = 12}, + [366] = {.lex_state = 12}, + [367] = {.lex_state = 26}, + [368] = {.lex_state = 25}, + [369] = {.lex_state = 12}, + [370] = {.lex_state = 12}, + [371] = {.lex_state = 10}, + [372] = {.lex_state = 12}, + [373] = {.lex_state = 2}, + [374] = {.lex_state = 25}, + [375] = {.lex_state = 12}, + [376] = {.lex_state = 12}, + [377] = {.lex_state = 12}, + [378] = {.lex_state = 25}, + [379] = {.lex_state = 2}, + [380] = {.lex_state = 1}, + [381] = {.lex_state = 18}, + [382] = {.lex_state = 2}, + [383] = {.lex_state = 14}, + [384] = {.lex_state = 2}, + [385] = {.lex_state = 2}, + [386] = {.lex_state = 2}, + [387] = {.lex_state = 2}, + [388] = {.lex_state = 2}, + [389] = {.lex_state = 2}, + [390] = {.lex_state = 2}, + [391] = {.lex_state = 2}, + [392] = {.lex_state = 2}, + [393] = {.lex_state = 2}, + [394] = {.lex_state = 2}, + [395] = {.lex_state = 14}, + [396] = {.lex_state = 2}, + [397] = {.lex_state = 2}, + [398] = {.lex_state = 2}, + [399] = {.lex_state = 2}, + [400] = {.lex_state = 2}, + [401] = {.lex_state = 2}, + [402] = {.lex_state = 18}, + [403] = {.lex_state = 18}, + [404] = {.lex_state = 2}, + [405] = {.lex_state = 14}, + [406] = {.lex_state = 14}, + [407] = {.lex_state = 18}, + [408] = {.lex_state = 18}, + [409] = {.lex_state = 18}, + [410] = {.lex_state = 18}, + [411] = {.lex_state = 18}, + [412] = {.lex_state = 18}, + [413] = {.lex_state = 18}, + [414] = {.lex_state = 2}, + [415] = {.lex_state = 18}, + [416] = {.lex_state = 18}, + [417] = {.lex_state = 18}, + [418] = {.lex_state = 2}, + [419] = {.lex_state = 9}, + [420] = {.lex_state = 14}, + [421] = {.lex_state = 9}, + [422] = {.lex_state = 1}, + [423] = {.lex_state = 18}, + [424] = {.lex_state = 14}, + [425] = {.lex_state = 18}, + [426] = {.lex_state = 1}, + [427] = {.lex_state = 1}, + [428] = {.lex_state = 14}, + [429] = {.lex_state = 1}, + [430] = {.lex_state = 18}, + [431] = {.lex_state = 1}, + [432] = {.lex_state = 14}, + [433] = {.lex_state = 1}, + [434] = {.lex_state = 14}, + [435] = {.lex_state = 1}, + [436] = {.lex_state = 1}, + [437] = {.lex_state = 4}, + [438] = {.lex_state = 1}, + [439] = {.lex_state = 1}, + [440] = {.lex_state = 18}, + [441] = {.lex_state = 18}, + [442] = {.lex_state = 14}, + [443] = {.lex_state = 18}, + [444] = {.lex_state = 18}, + [445] = {.lex_state = 9}, + [446] = {.lex_state = 18}, + [447] = {.lex_state = 1}, + [448] = {.lex_state = 18}, + [449] = {.lex_state = 18}, + [450] = {.lex_state = 18}, + [451] = {.lex_state = 1}, + [452] = {.lex_state = 14}, + [453] = {.lex_state = 1}, + [454] = {.lex_state = 1}, + [455] = {.lex_state = 1}, + [456] = {.lex_state = 9}, + [457] = {.lex_state = 9}, + [458] = {.lex_state = 1}, + [459] = {.lex_state = 18}, + [460] = {.lex_state = 14}, + [461] = {.lex_state = 1}, + [462] = {.lex_state = 1}, + [463] = {.lex_state = 9}, + [464] = {.lex_state = 1}, + [465] = {.lex_state = 9}, + [466] = {.lex_state = 1}, + [467] = {.lex_state = 1}, + [468] = {.lex_state = 14}, + [469] = {.lex_state = 9}, + [470] = {.lex_state = 1}, + [471] = {.lex_state = 1}, + [472] = {.lex_state = 9}, + [473] = {.lex_state = 9}, + [474] = {.lex_state = 9}, + [475] = {.lex_state = 14}, + [476] = {.lex_state = 9}, + [477] = {.lex_state = 9}, + [478] = {.lex_state = 18}, + [479] = {.lex_state = 1}, + [480] = {.lex_state = 1}, + [481] = {.lex_state = 1}, + [482] = {.lex_state = 18}, + [483] = {.lex_state = 1}, + [484] = {.lex_state = 0}, + [485] = {.lex_state = 0}, + [486] = {.lex_state = 0}, + [487] = {.lex_state = 4}, + [488] = {.lex_state = 14}, + [489] = {.lex_state = 0}, + [490] = {.lex_state = 0}, + [491] = {.lex_state = 0}, + [492] = {.lex_state = 0}, + [493] = {.lex_state = 1}, + [494] = {.lex_state = 0}, + [495] = {.lex_state = 4}, + [496] = {.lex_state = 0}, + [497] = {.lex_state = 0}, + [498] = {.lex_state = 1}, + [499] = {.lex_state = 0}, + [500] = {.lex_state = 4}, + [501] = {.lex_state = 0}, + [502] = {.lex_state = 0}, + [503] = {.lex_state = 0}, + [504] = {.lex_state = 0}, + [505] = {.lex_state = 0}, + [506] = {.lex_state = 4}, + [507] = {.lex_state = 4}, + [508] = {.lex_state = 1}, + [509] = {.lex_state = 1}, + [510] = {.lex_state = 0}, + [511] = {.lex_state = 1}, + [512] = {.lex_state = 4}, + [513] = {.lex_state = 0}, + [514] = {.lex_state = 4}, + [515] = {.lex_state = 0}, + [516] = {.lex_state = 1}, + [517] = {.lex_state = 0}, + [518] = {.lex_state = 1}, + [519] = {.lex_state = 4}, + [520] = {.lex_state = 0}, + [521] = {.lex_state = 1}, + [522] = {.lex_state = 1}, + [523] = {.lex_state = 1}, + [524] = {.lex_state = 0}, + [525] = {.lex_state = 0}, + [526] = {.lex_state = 4}, + [527] = {.lex_state = 0}, + [528] = {.lex_state = 85}, + [529] = {.lex_state = 0}, + [530] = {.lex_state = 0}, + [531] = {.lex_state = 1}, + [532] = {.lex_state = 0}, + [533] = {.lex_state = 1}, + [534] = {.lex_state = 0}, + [535] = {.lex_state = 1}, + [536] = {.lex_state = 1}, + [537] = {.lex_state = 1}, + [538] = {.lex_state = 0}, + [539] = {.lex_state = 0}, + [540] = {.lex_state = 4}, + [541] = {.lex_state = 4}, + [542] = {.lex_state = 0}, + [543] = {.lex_state = 4}, + [544] = {.lex_state = 0}, + [545] = {.lex_state = 4}, + [546] = {.lex_state = 4}, + [547] = {.lex_state = 0}, + [548] = {.lex_state = 0}, + [549] = {.lex_state = 0}, + [550] = {.lex_state = 4}, + [551] = {.lex_state = 0}, + [552] = {.lex_state = 1}, + [553] = {.lex_state = 4}, + [554] = {.lex_state = 0}, + [555] = {.lex_state = 4}, + [556] = {.lex_state = 1}, + [557] = {.lex_state = 0}, + [558] = {.lex_state = 0}, + [559] = {.lex_state = 0}, + [560] = {.lex_state = 1}, + [561] = {.lex_state = 0}, + [562] = {.lex_state = 18}, + [563] = {.lex_state = 4}, + [564] = {.lex_state = 0}, + [565] = {.lex_state = 0}, + [566] = {.lex_state = 0}, + [567] = {.lex_state = 1}, + [568] = {.lex_state = 0}, + [569] = {.lex_state = 1}, + [570] = {.lex_state = 0}, + [571] = {.lex_state = 0}, + [572] = {.lex_state = 4}, + [573] = {.lex_state = 4}, + [574] = {.lex_state = 1}, + [575] = {.lex_state = 0}, + [576] = {.lex_state = 0}, + [577] = {.lex_state = 4}, + [578] = {.lex_state = 4}, + [579] = {.lex_state = 0}, + [580] = {.lex_state = 0}, + [581] = {.lex_state = 4}, + [582] = {.lex_state = 4}, + [583] = {.lex_state = 4}, + [584] = {.lex_state = 4}, + [585] = {.lex_state = 4}, + [586] = {.lex_state = 4}, + [587] = {.lex_state = 4}, + [588] = {.lex_state = 53}, + [589] = {.lex_state = 53}, + [590] = {.lex_state = 53}, + [591] = {.lex_state = 53}, + [592] = {.lex_state = 1}, + [593] = {.lex_state = 53}, + [594] = {.lex_state = 53}, + [595] = {.lex_state = 53}, + [596] = {.lex_state = 53}, + [597] = {.lex_state = 125}, + [598] = {.lex_state = 0}, + [599] = {.lex_state = 53}, + [600] = {.lex_state = 0}, + [601] = {.lex_state = 125}, + [602] = {.lex_state = 4}, + [603] = {.lex_state = 1}, + [604] = {.lex_state = 53}, + [605] = {.lex_state = 53}, + [606] = {.lex_state = 0}, + [607] = {.lex_state = 125}, + [608] = {.lex_state = 125}, + [609] = {.lex_state = 1}, + [610] = {.lex_state = 53}, + [611] = {.lex_state = 53}, + [612] = {.lex_state = 0}, + [613] = {.lex_state = 0}, + [614] = {.lex_state = 0}, + [615] = {.lex_state = 1}, + [616] = {.lex_state = 0}, [617] = {.lex_state = 4}, - [618] = {.lex_state = 13}, - [619] = {.lex_state = 4}, - [620] = {.lex_state = 5}, - [621] = {.lex_state = 7}, - [622] = {.lex_state = 7}, - [623] = {.lex_state = 4}, - [624] = {.lex_state = 4}, - [625] = {.lex_state = 5}, - [626] = {.lex_state = 4}, - [627] = {.lex_state = 6}, - [628] = {.lex_state = 4}, - [629] = {.lex_state = 4}, - [630] = {.lex_state = 4}, + [618] = {.lex_state = 0}, + [619] = {.lex_state = 0}, + [620] = {.lex_state = 0}, + [621] = {.lex_state = 70}, + [622] = {.lex_state = 53}, + [623] = {.lex_state = 53}, + [624] = {.lex_state = 14}, + [625] = {.lex_state = 4}, + [626] = {.lex_state = 125}, + [627] = {.lex_state = 0}, + [628] = {.lex_state = 0}, + [629] = {.lex_state = 1}, + [630] = {.lex_state = 61}, [631] = {.lex_state = 4}, - [632] = {.lex_state = 4}, - [633] = {.lex_state = 21}, - [634] = {.lex_state = 7}, - [635] = {.lex_state = 5}, - [636] = {.lex_state = 5}, - [637] = {.lex_state = 13}, - [638] = {.lex_state = 5}, - [639] = {.lex_state = 4}, - [640] = {.lex_state = 4}, - [641] = {.lex_state = 0}, - [642] = {.lex_state = 5}, - [643] = {.lex_state = 4}, - [644] = {.lex_state = 150}, - [645] = {.lex_state = 4}, - [646] = {.lex_state = 58}, - [647] = {.lex_state = 150}, - [648] = {.lex_state = 6}, - [649] = {.lex_state = 150}, - [650] = {.lex_state = 64}, - [651] = {.lex_state = 4}, - [652] = {.lex_state = 5}, + [632] = {.lex_state = 0}, + [633] = {.lex_state = 0}, + [634] = {.lex_state = 1}, + [635] = {.lex_state = 53}, + [636] = {.lex_state = 53}, + [637] = {.lex_state = 53}, + [638] = {.lex_state = 0}, + [639] = {.lex_state = 0}, + [640] = {.lex_state = 0}, + [641] = {.lex_state = 14}, + [642] = {.lex_state = 14}, + [643] = {.lex_state = 0}, + [644] = {.lex_state = 0}, + [645] = {.lex_state = 53}, + [646] = {.lex_state = 0}, + [647] = {.lex_state = 0}, + [648] = {.lex_state = 0}, + [649] = {.lex_state = 1}, + [650] = {.lex_state = 0}, + [651] = {.lex_state = 0}, + [652] = {.lex_state = 4}, [653] = {.lex_state = 0}, - [654] = {.lex_state = 5}, - [655] = {.lex_state = 13}, - [656] = {.lex_state = 150}, - [657] = {.lex_state = 4}, - [658] = {.lex_state = 4}, - [659] = {.lex_state = 150}, + [654] = {.lex_state = 0}, + [655] = {.lex_state = 4}, + [656] = {.lex_state = 61}, + [657] = {.lex_state = 1}, + [658] = {.lex_state = 0}, + [659] = {.lex_state = 0}, [660] = {.lex_state = 4}, - [661] = {.lex_state = 150}, - [662] = {.lex_state = 64}, - [663] = {.lex_state = 5}, - [664] = {.lex_state = 150}, - [665] = {.lex_state = 150}, - [666] = {.lex_state = 64}, - [667] = {.lex_state = 5}, - [668] = {.lex_state = 64}, - [669] = {.lex_state = 4}, - [670] = {.lex_state = 5}, - [671] = {.lex_state = 5}, - [672] = {.lex_state = 0}, - [673] = {.lex_state = 150}, + [661] = {.lex_state = 0}, + [662] = {.lex_state = 53}, + [663] = {.lex_state = 14}, + [664] = {.lex_state = 1}, + [665] = {.lex_state = 0}, + [666] = {.lex_state = 0}, + [667] = {.lex_state = 0}, + [668] = {.lex_state = 0}, + [669] = {.lex_state = 1}, + [670] = {.lex_state = 61}, + [671] = {.lex_state = 1}, + [672] = {.lex_state = 4}, + [673] = {.lex_state = 1}, [674] = {.lex_state = 0}, - [675] = {.lex_state = 5}, - [676] = {.lex_state = 5}, - [677] = {.lex_state = 5}, - [678] = {.lex_state = 5}, - [679] = {.lex_state = 6}, - [680] = {.lex_state = 150}, + [675] = {.lex_state = 0}, + [676] = {.lex_state = 61}, + [677] = {.lex_state = 4}, + [678] = {.lex_state = 0}, + [679] = {.lex_state = 0}, + [680] = {.lex_state = 4}, [681] = {.lex_state = 0}, - [682] = {.lex_state = 5}, - [683] = {.lex_state = 7}, + [682] = {.lex_state = 4}, + [683] = {.lex_state = 0}, [684] = {.lex_state = 4}, - [685] = {.lex_state = 7}, - [686] = {.lex_state = 379}, - [687] = {.lex_state = 4}, - [688] = {.lex_state = 5}, - [689] = {.lex_state = 7}, - [690] = {.lex_state = 4}, - [691] = {.lex_state = 7}, - [692] = {.lex_state = 5}, - [693] = {.lex_state = 7}, + [685] = {.lex_state = 0}, + [686] = {.lex_state = 1}, + [687] = {.lex_state = 14}, + [688] = {.lex_state = 0}, + [689] = {.lex_state = 1}, + [690] = {.lex_state = 14}, + [691] = {.lex_state = 0}, + [692] = {.lex_state = 4}, + [693] = {.lex_state = 1}, [694] = {.lex_state = 0}, - [695] = {.lex_state = 5}, - [696] = {.lex_state = 151}, - [697] = {.lex_state = 5}, + [695] = {.lex_state = 1}, + [696] = {.lex_state = 554}, + [697] = {.lex_state = 0}, [698] = {.lex_state = 0}, - [699] = {.lex_state = 5}, - [700] = {.lex_state = 5}, - [701] = {.lex_state = 229}, - [702] = {.lex_state = 4}, + [699] = {.lex_state = 0}, + [700] = {.lex_state = 0}, + [701] = {.lex_state = 0}, + [702] = {.lex_state = 1}, [703] = {.lex_state = 0}, - [704] = {.lex_state = 5}, - [705] = {.lex_state = 0}, - [706] = {.lex_state = 6}, + [704] = {.lex_state = 4}, + [705] = {.lex_state = 554}, + [706] = {.lex_state = 0}, [707] = {.lex_state = 4}, - [708] = {.lex_state = 0}, - [709] = {.lex_state = 5}, + [708] = {.lex_state = 1}, + [709] = {.lex_state = 1}, [710] = {.lex_state = 4}, - [711] = {.lex_state = 4}, + [711] = {.lex_state = 126}, [712] = {.lex_state = 0}, [713] = {.lex_state = 0}, - [714] = {.lex_state = 5}, - [715] = {.lex_state = 5}, - [716] = {.lex_state = 4}, - [717] = {.lex_state = 7}, - [718] = {.lex_state = 6}, - [719] = {.lex_state = 7}, + [714] = {.lex_state = 0}, + [715] = {.lex_state = 0}, + [716] = {.lex_state = 0}, + [717] = {.lex_state = 0}, + [718] = {.lex_state = 4}, + [719] = {.lex_state = 0}, [720] = {.lex_state = 0}, - [721] = {.lex_state = 7}, - [722] = {.lex_state = 0}, - [723] = {.lex_state = 7}, - [724] = {.lex_state = 7}, - [725] = {.lex_state = 7}, - [726] = {.lex_state = 151}, - [727] = {.lex_state = 5}, - [728] = {.lex_state = 7}, - [729] = {.lex_state = 7}, - [730] = {.lex_state = 7}, + [721] = {.lex_state = 0}, + [722] = {.lex_state = 217}, + [723] = {.lex_state = 4}, + [724] = {.lex_state = 1}, + [725] = {.lex_state = 1}, + [726] = {.lex_state = 0}, + [727] = {.lex_state = 0}, + [728] = {.lex_state = 14}, + [729] = {.lex_state = 4}, + [730] = {.lex_state = 0}, [731] = {.lex_state = 4}, [732] = {.lex_state = 0}, [733] = {.lex_state = 0}, - [734] = {.lex_state = 7}, - [735] = {.lex_state = 0}, - [736] = {.lex_state = 379}, - [737] = {.lex_state = 7}, - [738] = {.lex_state = 7}, - [739] = {.lex_state = 5}, - [740] = {.lex_state = 5}, - [741] = {.lex_state = 151}, - [742] = {.lex_state = 7}, - [743] = {.lex_state = 4}, - [744] = {.lex_state = 151}, + [734] = {.lex_state = 0}, + [735] = {.lex_state = 4}, + [736] = {.lex_state = 0}, + [737] = {.lex_state = 0}, + [738] = {.lex_state = 4}, + [739] = {.lex_state = 0}, + [740] = {.lex_state = 0}, + [741] = {.lex_state = 4}, + [742] = {.lex_state = 14}, + [743] = {.lex_state = 12}, + [744] = {.lex_state = 0}, [745] = {.lex_state = 0}, [746] = {.lex_state = 4}, - [747] = {.lex_state = 5}, + [747] = {.lex_state = 0}, [748] = {.lex_state = 0}, - [749] = {.lex_state = 151}, - [750] = {.lex_state = 151}, - [751] = {.lex_state = 6}, - [752] = {.lex_state = 7}, - [753] = {.lex_state = 7}, - [754] = {.lex_state = 379}, - [755] = {.lex_state = 7}, - [756] = {.lex_state = 7}, - [757] = {.lex_state = 151}, - [758] = {.lex_state = 4}, - [759] = {.lex_state = 7}, - [760] = {.lex_state = 7}, - [761] = {.lex_state = 0}, - [762] = {.lex_state = 5}, - [763] = {.lex_state = 7}, + [749] = {.lex_state = 0}, + [750] = {.lex_state = 4}, + [751] = {.lex_state = 4}, + [752] = {.lex_state = 1}, + [753] = {.lex_state = 126}, + [754] = {.lex_state = 1}, + [755] = {.lex_state = 0}, + [756] = {.lex_state = 4}, + [757] = {.lex_state = 4}, + [758] = {.lex_state = 0}, + [759] = {.lex_state = 0}, + [760] = {.lex_state = 0}, + [761] = {.lex_state = 4}, + [762] = {.lex_state = 4}, + [763] = {.lex_state = 0}, [764] = {.lex_state = 4}, - [765] = {.lex_state = 5}, - [766] = {.lex_state = 5}, - [767] = {.lex_state = 0}, - [768] = {.lex_state = 0}, - [769] = {.lex_state = 0}, - [770] = {.lex_state = 7}, - [771] = {.lex_state = 6}, + [765] = {.lex_state = 0}, + [766] = {.lex_state = 1}, + [767] = {.lex_state = 4}, + [768] = {.lex_state = 4}, + [769] = {.lex_state = 126}, + [770] = {.lex_state = 1}, + [771] = {.lex_state = 0}, [772] = {.lex_state = 0}, - [773] = {.lex_state = 7}, - [774] = {.lex_state = 0}, - [775] = {.lex_state = 6}, - [776] = {.lex_state = 6}, - [777] = {.lex_state = 0}, - [778] = {.lex_state = 0}, - [779] = {.lex_state = 4}, - [780] = {.lex_state = 7}, - [781] = {.lex_state = 5}, - [782] = {.lex_state = 151}, - [783] = {.lex_state = 0}, - [784] = {.lex_state = 151}, - [785] = {.lex_state = 6}, - [786] = {.lex_state = 6}, - [787] = {.lex_state = 7}, - [788] = {.lex_state = 0}, + [773] = {.lex_state = 4}, + [774] = {.lex_state = 4}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(0)] = { [ts_builtin_sym_end] = ACTIONS(1), - [anon_sym_ATuse] = ACTIONS(1), + [anon_sym_AT] = ACTIONS(1), + [anon_sym_use] = ACTIONS(1), [anon_sym_as] = ACTIONS(1), - [anon_sym_ATimport] = ACTIONS(1), - [anon_sym_ATstruct] = ACTIONS(1), + [anon_sym_import] = ACTIONS(1), [anon_sym_LBRACE] = ACTIONS(1), [anon_sym_RBRACE] = ACTIONS(1), [anon_sym_COLON] = ACTIONS(1), [anon_sym_COMMA] = ACTIONS(1), - [anon_sym_ATenum] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), [anon_sym_LPAREN] = ACTIONS(1), [anon_sym_RPAREN] = ACTIONS(1), [anon_sym_LBRACK] = ACTIONS(1), [anon_sym_RBRACK] = ACTIONS(1), [anon_sym_LT] = ACTIONS(1), [anon_sym_GT] = ACTIONS(1), - [anon_sym_ATfn] = ACTIONS(1), + [anon_sym_fn] = ACTIONS(1), [anon_sym_EQ] = ACTIONS(1), [anon_sym_SLASH] = ACTIONS(1), [anon_sym_LT_SLASH] = ACTIONS(1), - [anon_sym_ATif] = ACTIONS(1), - [anon_sym_else] = ACTIONS(1), - [anon_sym_ATfor] = ACTIONS(1), - [anon_sym_in] = ACTIONS(1), - [anon_sym_AT] = ACTIONS(1), - [anon_sym_safe] = ACTIONS(1), - [anon_sym_DOT] = ACTIONS(1), - [anon_sym_ATlet] = ACTIONS(1), - [anon_sym_let] = ACTIONS(1), [anon_sym_if] = ACTIONS(1), - [anon_sym_ATmatch] = ACTIONS(1), - [anon_sym_EQ_GT] = ACTIONS(1), - [anon_sym_ATbreak] = ACTIONS(1), + [anon_sym_else] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_in] = ACTIONS(1), + [anon_sym_out] = ACTIONS(1), + [anon_sym_target] = ACTIONS(1), + [aux_sym_simple_expression_token1] = ACTIONS(1), + [anon_sym_safe] = ACTIONS(1), + [anon_sym_format] = ACTIONS(1), + [anon_sym_matches] = ACTIONS(1), + [anon_sym_BANG] = ACTIONS(1), + [anon_sym_DOT] = ACTIONS(1), + [anon_sym_let] = ACTIONS(1), [anon_sym_SEMI] = ACTIONS(1), - [anon_sym_ATcontinue] = ACTIONS(1), + [anon_sym_match] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), [anon_sym_LT_AT] = ACTIONS(1), [anon_sym_LT_SLASH_AT] = ACTIONS(1), [anon_sym_AMP] = ACTIONS(1), [sym_wildcard_pattern] = ACTIONS(1), [anon_sym_DOT_DOT] = ACTIONS(1), - [anon_sym_PIPE] = ACTIONS(1), - [anon_sym_PLUS] = ACTIONS(1), - [anon_sym_DASH] = ACTIONS(1), - [anon_sym_STAR] = ACTIONS(1), - [anon_sym_PERCENT] = ACTIONS(1), - [anon_sym_EQ_EQ] = ACTIONS(1), - [anon_sym_BANG_EQ] = ACTIONS(1), - [anon_sym_LT_EQ] = ACTIONS(1), - [anon_sym_GT_EQ] = ACTIONS(1), - [anon_sym_AMP_AMP] = ACTIONS(1), - [anon_sym_PIPE_PIPE] = ACTIONS(1), - [anon_sym_CARET] = ACTIONS(1), - [anon_sym_LT_LT] = ACTIONS(1), - [anon_sym_GT_GT] = ACTIONS(1), - [anon_sym_BANG] = ACTIONS(1), + [sym_rust_expression] = ACTIONS(1), [anon_sym_DQUOTE] = ACTIONS(1), [anon_sym_SQUOTE] = ACTIONS(1), - [sym_escape_sequence] = ACTIONS(1), [aux_sym_integer_literal_token1] = ACTIONS(1), [aux_sym_integer_literal_token2] = ACTIONS(1), [aux_sym_integer_literal_token3] = ACTIONS(1), @@ -6821,6 +7594,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1), [anon_sym_true] = ACTIONS(1), [anon_sym_false] = ACTIONS(1), + [anon_sym_PIPE] = ACTIONS(1), + [anon_sym_render] = ACTIONS(1), + [anon_sym_Out] = ACTIONS(1), + [anon_sym_Target] = ACTIONS(1), [anon_sym_i8] = ACTIONS(1), [anon_sym_i16] = ACTIONS(1), [anon_sym_i32] = ACTIONS(1), @@ -6840,9 +7617,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1), [anon_sym_String] = ACTIONS(1), [anon_sym_mut] = ACTIONS(1), - [sym_template_comment] = ACTIONS(1), + [sym_template_comment_1] = ACTIONS(1), [sym_html_comment] = ACTIONS(1), - [sym_raw_block] = ACTIONS(1), + [sym_raw_block_1] = ACTIONS(1), [anon_sym_AT_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(1), [anon_sym_html] = ACTIONS(1), [anon_sym_css] = ACTIONS(1), @@ -6852,9276 +7629,488 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alpine] = ACTIONS(1), [anon_sym_style] = ACTIONS(1), [sym_escape_at] = ACTIONS(1), - [sym_text_content] = ACTIONS(1), }, [STATE(1)] = { - [sym_template] = STATE(769), + [sym_template] = STATE(740), [sym_template_element] = STATE(3), - [sym_use_statement] = STATE(334), - [sym_import_statement] = STATE(334), - [sym_struct_definition] = STATE(334), - [sym_enum_definition] = STATE(334), - [sym_function_definition] = STATE(334), - [sym_template_node] = STATE(334), - [sym_html_element] = STATE(328), - [sym_template_expression] = STATE(328), - [sym_simple_expression] = STATE(335), - [sym_complex_expression] = STATE(335), - [sym_safe_expression] = STATE(335), - [sym_template_control_flow] = STATE(328), - [sym_let_statement] = STATE(336), - [sym_if_statement] = STATE(336), - [sym_for_loop] = STATE(336), - [sym_match_statement] = STATE(336), - [sym_break_statement] = STATE(336), - [sym_continue_statement] = STATE(336), - [sym_function_tag] = STATE(328), - [sym_self_closing_function_tag] = STATE(337), - [sym_container_function_tag] = STATE(337), - [sym_comment] = STATE(328), - [sym_embedded_language] = STATE(328), + [sym_use_statement] = STATE(285), + [sym_import_statement] = STATE(285), + [sym_struct_definition] = STATE(285), + [sym_enum_definition] = STATE(285), + [sym_function_definition] = STATE(285), + [sym_template_node] = STATE(285), + [sym_html_element] = STATE(258), + [sym_template_expression] = STATE(258), + [sym_out_ref] = STATE(266), + [sym_target_ref] = STATE(266), + [sym_simple_expression] = STATE(266), + [sym_complex_expression] = STATE(266), + [sym_safe_expression] = STATE(266), + [sym_format_expression] = STATE(266), + [sym_matches_expression] = STATE(266), + [sym_template_control_flow] = STATE(258), + [sym_let_statement] = STATE(268), + [sym_if_statement] = STATE(268), + [sym_for_loop] = STATE(268), + [sym_match_statement] = STATE(268), + [sym_break_statement] = STATE(268), + [sym_continue_statement] = STATE(268), + [sym_function_tag] = STATE(258), + [sym_self_closing_function_tag] = STATE(270), + [sym_container_function_tag] = STATE(270), + [sym_comment] = STATE(258), + [sym_template_comment] = STATE(250), + [sym_raw_block] = STATE(258), + [sym_embedded_language] = STATE(258), [aux_sym_template_repeat1] = STATE(3), [ts_builtin_sym_end] = ACTIONS(3), - [anon_sym_ATuse] = ACTIONS(5), - [anon_sym_ATimport] = ACTIONS(7), - [anon_sym_ATstruct] = ACTIONS(9), - [anon_sym_ATenum] = ACTIONS(11), - [anon_sym_LT] = ACTIONS(13), - [anon_sym_ATfn] = ACTIONS(15), - [anon_sym_ATif] = ACTIONS(17), - [anon_sym_ATfor] = ACTIONS(19), - [anon_sym_AT] = ACTIONS(21), - [anon_sym_ATlet] = ACTIONS(23), - [anon_sym_ATmatch] = ACTIONS(25), - [anon_sym_ATbreak] = ACTIONS(27), - [anon_sym_ATcontinue] = ACTIONS(29), - [anon_sym_LT_AT] = ACTIONS(31), - [sym_template_comment] = ACTIONS(33), - [sym_html_comment] = ACTIONS(33), - [sym_raw_block] = ACTIONS(35), - [anon_sym_AT_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(37), - [sym_escape_at] = ACTIONS(35), - [sym_text_content] = ACTIONS(35), + [anon_sym_AT] = ACTIONS(5), + [anon_sym_LT] = ACTIONS(7), + [aux_sym_simple_expression_token1] = ACTIONS(9), + [anon_sym_LT_AT] = ACTIONS(11), + [sym_template_comment_1] = ACTIONS(13), + [sym_html_comment] = ACTIONS(15), + [sym_raw_block_1] = ACTIONS(17), + [anon_sym_AT_BQUOTE_BQUOTE_BQUOTE] = ACTIONS(19), + [sym_escape_at] = ACTIONS(21), + [sym_text_content] = ACTIONS(21), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 24, - ACTIONS(39), 1, - ts_builtin_sym_end, - ACTIONS(41), 1, - anon_sym_ATuse, - ACTIONS(44), 1, - anon_sym_ATimport, - ACTIONS(47), 1, - anon_sym_ATstruct, - ACTIONS(50), 1, - anon_sym_ATenum, - ACTIONS(53), 1, - anon_sym_LT, - ACTIONS(56), 1, - anon_sym_ATfn, - ACTIONS(59), 1, - anon_sym_ATif, - ACTIONS(62), 1, - anon_sym_ATfor, - ACTIONS(65), 1, - anon_sym_AT, - ACTIONS(68), 1, - anon_sym_ATlet, - ACTIONS(71), 1, - anon_sym_ATmatch, - ACTIONS(74), 1, - anon_sym_ATbreak, - ACTIONS(77), 1, - anon_sym_ATcontinue, - ACTIONS(80), 1, - anon_sym_LT_AT, - ACTIONS(89), 1, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - ACTIONS(83), 2, - sym_template_comment, - sym_html_comment, - STATE(2), 2, - sym_template_element, - aux_sym_template_repeat1, - STATE(337), 2, - sym_self_closing_function_tag, - sym_container_function_tag, - ACTIONS(86), 3, - sym_raw_block, - sym_escape_at, - sym_text_content, - STATE(335), 3, - sym_simple_expression, - sym_complex_expression, - sym_safe_expression, - STATE(328), 6, - sym_html_element, - sym_template_expression, - sym_template_control_flow, - sym_function_tag, - sym_comment, - sym_embedded_language, - STATE(334), 6, - sym_use_statement, - sym_import_statement, - sym_struct_definition, - sym_enum_definition, - sym_function_definition, - sym_template_node, - STATE(336), 6, - sym_let_statement, - sym_if_statement, - sym_for_loop, - sym_match_statement, - sym_break_statement, - sym_continue_statement, - [95] = 24, - ACTIONS(5), 1, - anon_sym_ATuse, - ACTIONS(7), 1, - anon_sym_ATimport, - ACTIONS(9), 1, - anon_sym_ATstruct, - ACTIONS(11), 1, - anon_sym_ATenum, - ACTIONS(13), 1, - anon_sym_LT, - ACTIONS(15), 1, - anon_sym_ATfn, - ACTIONS(17), 1, - anon_sym_ATif, - ACTIONS(19), 1, - anon_sym_ATfor, - ACTIONS(21), 1, - anon_sym_AT, + [0] = 14, ACTIONS(23), 1, - anon_sym_ATlet, + anon_sym_AT, ACTIONS(25), 1, - anon_sym_ATmatch, - ACTIONS(27), 1, - anon_sym_ATbreak, + aux_sym_rust_path_token1, ACTIONS(29), 1, - anon_sym_ATcontinue, + anon_sym_LPAREN, ACTIONS(31), 1, - anon_sym_LT_AT, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_AMP, + ACTIONS(35), 1, + anon_sym_PIPE, ACTIONS(37), 1, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - ACTIONS(92), 1, - ts_builtin_sym_end, - ACTIONS(33), 2, - sym_template_comment, + anon_sym_DASH_GT, + ACTIONS(41), 1, + sym_identifier, + STATE(307), 1, + sym_rust_path, + STATE(583), 1, + sym_closure_param, + STATE(602), 1, + sym_rust_type, + ACTIONS(27), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ, + anon_sym_SEMI, + STATE(338), 11, + sym_closure_type, + sym_render_type, + sym_out_type, + sym_target_type, + sym_primitive_type, + sym_reference_type, + sym_generic_type, + sym_path_type, + sym_tuple_type, + sym_array_type, + sym_slice_type, + ACTIONS(39), 18, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [75] = 17, + ACTIONS(5), 1, + anon_sym_AT, + ACTIONS(7), 1, + anon_sym_LT, + ACTIONS(9), 1, + aux_sym_simple_expression_token1, + ACTIONS(11), 1, + anon_sym_LT_AT, + ACTIONS(13), 1, + sym_template_comment_1, + ACTIONS(15), 1, sym_html_comment, - STATE(2), 2, - sym_template_element, - aux_sym_template_repeat1, - STATE(337), 2, - sym_self_closing_function_tag, - sym_container_function_tag, - ACTIONS(35), 3, - sym_raw_block, + ACTIONS(17), 1, + sym_raw_block_1, + ACTIONS(19), 1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + ACTIONS(43), 1, + ts_builtin_sym_end, + STATE(250), 1, + sym_template_comment, + ACTIONS(21), 2, sym_escape_at, sym_text_content, - STATE(335), 3, - sym_simple_expression, - sym_complex_expression, - sym_safe_expression, - STATE(328), 6, - sym_html_element, - sym_template_expression, - sym_template_control_flow, - sym_function_tag, - sym_comment, - sym_embedded_language, - STATE(334), 6, + STATE(5), 2, + sym_template_element, + aux_sym_template_repeat1, + STATE(270), 2, + sym_self_closing_function_tag, + sym_container_function_tag, + STATE(268), 6, + sym_let_statement, + sym_if_statement, + sym_for_loop, + sym_match_statement, + sym_break_statement, + sym_continue_statement, + STATE(285), 6, sym_use_statement, sym_import_statement, sym_struct_definition, sym_enum_definition, sym_function_definition, sym_template_node, - STATE(336), 6, + STATE(258), 7, + sym_html_element, + sym_template_expression, + sym_template_control_flow, + sym_function_tag, + sym_comment, + sym_raw_block, + sym_embedded_language, + STATE(266), 7, + sym_out_ref, + sym_target_ref, + sym_simple_expression, + sym_complex_expression, + sym_safe_expression, + sym_format_expression, + sym_matches_expression, + [152] = 14, + ACTIONS(23), 1, + anon_sym_AT, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_AMP, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(45), 1, + anon_sym_DASH_GT, + ACTIONS(47), 1, + sym_identifier, + STATE(307), 1, + sym_rust_path, + STATE(583), 1, + sym_closure_param, + STATE(602), 1, + sym_rust_type, + ACTIONS(27), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(338), 11, + sym_closure_type, + sym_render_type, + sym_out_type, + sym_target_type, + sym_primitive_type, + sym_reference_type, + sym_generic_type, + sym_path_type, + sym_tuple_type, + sym_array_type, + sym_slice_type, + ACTIONS(39), 18, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [223] = 17, + ACTIONS(50), 1, + ts_builtin_sym_end, + ACTIONS(52), 1, + anon_sym_AT, + ACTIONS(55), 1, + anon_sym_LT, + ACTIONS(58), 1, + aux_sym_simple_expression_token1, + ACTIONS(61), 1, + anon_sym_LT_AT, + ACTIONS(64), 1, + sym_template_comment_1, + ACTIONS(67), 1, + sym_html_comment, + ACTIONS(70), 1, + sym_raw_block_1, + ACTIONS(73), 1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + STATE(250), 1, + sym_template_comment, + ACTIONS(76), 2, + sym_escape_at, + sym_text_content, + STATE(5), 2, + sym_template_element, + aux_sym_template_repeat1, + STATE(270), 2, + sym_self_closing_function_tag, + sym_container_function_tag, + STATE(268), 6, sym_let_statement, sym_if_statement, sym_for_loop, sym_match_statement, sym_break_statement, sym_continue_statement, - [190] = 3, - STATE(145), 1, - sym_binary_operator, - ACTIONS(96), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_AT, - anon_sym_AMP, - anon_sym_PIPE, - sym_text_content, - ACTIONS(94), 34, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_LBRACK, - anon_sym_ATfn, - anon_sym_SLASH, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_DOT, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_template_comment, - sym_html_comment, + STATE(285), 6, + sym_use_statement, + sym_import_statement, + sym_struct_definition, + sym_enum_definition, + sym_function_definition, + sym_template_node, + STATE(258), 7, + sym_html_element, + sym_template_expression, + sym_template_control_flow, + sym_function_tag, + sym_comment, sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [238] = 19, - ACTIONS(100), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_ATif, - ACTIONS(106), 1, - anon_sym_ATfor, - ACTIONS(109), 1, + sym_embedded_language, + STATE(266), 7, + sym_out_ref, + sym_target_ref, + sym_simple_expression, + sym_complex_expression, + sym_safe_expression, + sym_format_expression, + sym_matches_expression, + [300] = 14, + ACTIONS(41), 1, + sym_identifier, + ACTIONS(79), 1, anon_sym_AT, - ACTIONS(112), 1, - anon_sym_ATlet, + ACTIONS(82), 1, + aux_sym_rust_path_token1, + ACTIONS(85), 1, + anon_sym_LPAREN, + ACTIONS(88), 1, + anon_sym_LBRACK, + ACTIONS(91), 1, + anon_sym_AMP, + ACTIONS(94), 1, + anon_sym_PIPE, + ACTIONS(97), 1, + anon_sym_DASH_GT, + STATE(307), 1, + sym_rust_path, + STATE(583), 1, + sym_closure_param, + STATE(602), 1, + sym_rust_type, + ACTIONS(27), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(338), 11, + sym_closure_type, + sym_render_type, + sym_out_type, + sym_target_type, + sym_primitive_type, + sym_reference_type, + sym_generic_type, + sym_path_type, + sym_tuple_type, + sym_array_type, + sym_slice_type, + ACTIONS(99), 18, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [371] = 14, + ACTIONS(23), 1, + anon_sym_AT, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(27), 1, + anon_sym_COMMA, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_AMP, + ACTIONS(41), 1, + sym_identifier, + ACTIONS(94), 1, + anon_sym_PIPE, + ACTIONS(102), 1, + anon_sym_DASH_GT, + STATE(307), 1, + sym_rust_path, + STATE(583), 1, + sym_closure_param, + STATE(602), 1, + sym_rust_type, + STATE(338), 11, + sym_closure_type, + sym_render_type, + sym_out_type, + sym_target_type, + sym_primitive_type, + sym_reference_type, + sym_generic_type, + sym_path_type, + sym_tuple_type, + sym_array_type, + sym_slice_type, + ACTIONS(39), 18, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [441] = 13, + ACTIONS(104), 1, + anon_sym_AT, + ACTIONS(107), 1, + aux_sym_rust_path_token1, + ACTIONS(110), 1, + anon_sym_LPAREN, + ACTIONS(113), 1, + anon_sym_RPAREN, ACTIONS(115), 1, - anon_sym_ATmatch, + anon_sym_LBRACK, ACTIONS(118), 1, - anon_sym_ATbreak, + anon_sym_AMP, ACTIONS(121), 1, - anon_sym_ATcontinue, - ACTIONS(124), 1, - anon_sym_LT_AT, - ACTIONS(127), 1, - anon_sym_LT_SLASH_AT, - ACTIONS(135), 1, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - ACTIONS(129), 2, - sym_template_comment, - sym_html_comment, - STATE(140), 2, - sym_template_node, - aux_sym_content_block_repeat1, - STATE(414), 2, - sym_self_closing_function_tag, - sym_container_function_tag, - ACTIONS(132), 3, - sym_raw_block, - sym_escape_at, - sym_text_content, - STATE(412), 3, - sym_simple_expression, - sym_complex_expression, - sym_safe_expression, - ACTIONS(98), 6, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - STATE(411), 6, - sym_html_element, - sym_template_expression, - sym_template_control_flow, - sym_function_tag, - sym_comment, - sym_embedded_language, - STATE(413), 6, - sym_let_statement, - sym_if_statement, - sym_for_loop, - sym_match_statement, - sym_break_statement, - sym_continue_statement, - [318] = 5, - STATE(145), 1, - sym_binary_operator, - ACTIONS(144), 2, - anon_sym_AT, - sym_text_content, - ACTIONS(140), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, anon_sym_PIPE, - ACTIONS(142), 14, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(138), 20, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_LBRACK, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_DOT, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [370] = 3, - ACTIONS(148), 1, - anon_sym_LPAREN, - ACTIONS(150), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_AT, - anon_sym_AMP, - anon_sym_PIPE, - sym_text_content, - ACTIONS(146), 34, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_LBRACK, - anon_sym_ATfn, - anon_sym_SLASH, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_DOT, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [418] = 5, - STATE(145), 1, - sym_binary_operator, - ACTIONS(154), 2, - anon_sym_AT, - sym_text_content, - ACTIONS(140), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(142), 14, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(152), 20, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_LBRACK, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_DOT, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [470] = 19, - ACTIONS(158), 1, - anon_sym_LT, - ACTIONS(161), 1, - anon_sym_ATif, - ACTIONS(164), 1, - anon_sym_ATfor, - ACTIONS(167), 1, - anon_sym_AT, - ACTIONS(170), 1, - anon_sym_ATlet, - ACTIONS(173), 1, - anon_sym_ATmatch, - ACTIONS(176), 1, - anon_sym_ATbreak, - ACTIONS(179), 1, - anon_sym_ATcontinue, - ACTIONS(182), 1, - anon_sym_LT_AT, - ACTIONS(185), 1, - anon_sym_LT_SLASH_AT, - ACTIONS(193), 1, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - ACTIONS(187), 2, - sym_template_comment, - sym_html_comment, - STATE(131), 2, - sym_template_node, - aux_sym_content_block_repeat1, - STATE(414), 2, - sym_self_closing_function_tag, - sym_container_function_tag, - ACTIONS(190), 3, - sym_raw_block, - sym_escape_at, - sym_text_content, - STATE(412), 3, - sym_simple_expression, - sym_complex_expression, - sym_safe_expression, - ACTIONS(156), 6, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - STATE(411), 6, - sym_html_element, - sym_template_expression, - sym_template_control_flow, - sym_function_tag, - sym_comment, - sym_embedded_language, - STATE(413), 6, - sym_let_statement, - sym_if_statement, - sym_for_loop, - sym_match_statement, - sym_break_statement, - sym_continue_statement, - [550] = 3, - STATE(145), 1, - sym_binary_operator, - ACTIONS(198), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_AT, - anon_sym_AMP, - anon_sym_PIPE, - sym_text_content, - ACTIONS(196), 34, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_LBRACK, - anon_sym_ATfn, - anon_sym_SLASH, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_DOT, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [598] = 19, - ACTIONS(202), 1, - anon_sym_LT, - ACTIONS(205), 1, - anon_sym_LT_SLASH, - ACTIONS(207), 1, - anon_sym_ATif, - ACTIONS(210), 1, - anon_sym_ATfor, - ACTIONS(213), 1, - anon_sym_AT, - ACTIONS(216), 1, - anon_sym_ATlet, - ACTIONS(219), 1, - anon_sym_ATmatch, - ACTIONS(222), 1, - anon_sym_ATbreak, - ACTIONS(225), 1, - anon_sym_ATcontinue, - ACTIONS(228), 1, - anon_sym_LT_AT, - ACTIONS(237), 1, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - ACTIONS(231), 2, - sym_template_comment, - sym_html_comment, - STATE(123), 2, - sym_template_node, - aux_sym_content_block_repeat1, - STATE(414), 2, - sym_self_closing_function_tag, - sym_container_function_tag, - ACTIONS(234), 3, - sym_raw_block, - sym_escape_at, - sym_text_content, - STATE(412), 3, - sym_simple_expression, - sym_complex_expression, - sym_safe_expression, - ACTIONS(200), 6, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - STATE(411), 6, - sym_html_element, - sym_template_expression, - sym_template_control_flow, - sym_function_tag, - sym_comment, - sym_embedded_language, - STATE(413), 6, - sym_let_statement, - sym_if_statement, - sym_for_loop, - sym_match_statement, - sym_break_statement, - sym_continue_statement, - [678] = 19, - ACTIONS(242), 1, - anon_sym_LT, - ACTIONS(245), 1, - anon_sym_LT_SLASH, - ACTIONS(247), 1, - anon_sym_ATif, - ACTIONS(250), 1, - anon_sym_ATfor, - ACTIONS(253), 1, - anon_sym_AT, - ACTIONS(256), 1, - anon_sym_ATlet, - ACTIONS(259), 1, - anon_sym_ATmatch, - ACTIONS(262), 1, - anon_sym_ATbreak, - ACTIONS(265), 1, - anon_sym_ATcontinue, - ACTIONS(268), 1, - anon_sym_LT_AT, - ACTIONS(277), 1, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - ACTIONS(271), 2, - sym_template_comment, - sym_html_comment, - STATE(135), 2, - sym_template_node, - aux_sym_content_block_repeat1, - STATE(414), 2, - sym_self_closing_function_tag, - sym_container_function_tag, - ACTIONS(274), 3, - sym_raw_block, - sym_escape_at, - sym_text_content, - STATE(412), 3, - sym_simple_expression, - sym_complex_expression, - sym_safe_expression, - ACTIONS(240), 6, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - STATE(411), 6, - sym_html_element, - sym_template_expression, - sym_template_control_flow, - sym_function_tag, - sym_comment, - sym_embedded_language, - STATE(413), 6, - sym_let_statement, - sym_if_statement, - sym_for_loop, - sym_match_statement, - sym_break_statement, - sym_continue_statement, - [758] = 2, - ACTIONS(282), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_AT, - anon_sym_AMP, - anon_sym_PIPE, - sym_text_content, - ACTIONS(280), 34, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_LBRACK, - anon_sym_ATfn, - anon_sym_SLASH, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_DOT, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [803] = 2, - ACTIONS(286), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_AT, - anon_sym_AMP, - anon_sym_PIPE, - sym_text_content, - ACTIONS(284), 34, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_LBRACK, - anon_sym_ATfn, - anon_sym_SLASH, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_DOT, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [848] = 2, - ACTIONS(290), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_AT, - anon_sym_AMP, - anon_sym_PIPE, - sym_text_content, - ACTIONS(288), 34, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_LBRACK, - anon_sym_ATfn, - anon_sym_SLASH, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_DOT, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [893] = 2, - ACTIONS(294), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_AT, - anon_sym_AMP, - anon_sym_PIPE, - sym_text_content, - ACTIONS(292), 34, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_LBRACK, - anon_sym_ATfn, - anon_sym_SLASH, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_DOT, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [938] = 4, - ACTIONS(298), 1, - anon_sym_LBRACK, - ACTIONS(302), 1, - anon_sym_DOT, - ACTIONS(300), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_AT, - anon_sym_AMP, - anon_sym_PIPE, - sym_text_content, - ACTIONS(296), 32, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_SLASH, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [987] = 2, - ACTIONS(306), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_AT, - anon_sym_AMP, - anon_sym_PIPE, - sym_text_content, - ACTIONS(304), 34, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_LBRACK, - anon_sym_ATfn, - anon_sym_SLASH, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_DOT, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [1032] = 2, - ACTIONS(310), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_AT, - anon_sym_AMP, - anon_sym_PIPE, - sym_text_content, - ACTIONS(308), 34, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_LBRACK, - anon_sym_ATfn, - anon_sym_SLASH, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_DOT, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [1077] = 2, - ACTIONS(314), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_AT, - anon_sym_AMP, - anon_sym_PIPE, - sym_text_content, - ACTIONS(312), 34, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_LBRACK, - anon_sym_ATfn, - anon_sym_SLASH, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_DOT, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [1122] = 2, - ACTIONS(318), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_AT, - anon_sym_AMP, - anon_sym_PIPE, - sym_text_content, - ACTIONS(316), 34, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_LBRACK, - anon_sym_ATfn, - anon_sym_SLASH, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_DOT, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [1167] = 2, - ACTIONS(322), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_AT, - anon_sym_AMP, - anon_sym_PIPE, - sym_text_content, - ACTIONS(320), 34, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_LBRACK, - anon_sym_ATfn, - anon_sym_SLASH, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_DOT, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [1212] = 2, - ACTIONS(326), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_AT, - anon_sym_AMP, - anon_sym_PIPE, - sym_text_content, - ACTIONS(324), 34, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_LBRACK, - anon_sym_ATfn, - anon_sym_SLASH, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_DOT, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [1257] = 2, - ACTIONS(144), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_AT, - anon_sym_AMP, - anon_sym_PIPE, - sym_text_content, - ACTIONS(138), 34, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_LBRACK, - anon_sym_ATfn, - anon_sym_SLASH, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_DOT, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [1302] = 2, - ACTIONS(330), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_AT, - anon_sym_AMP, - anon_sym_PIPE, - sym_text_content, - ACTIONS(328), 34, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_LBRACK, - anon_sym_ATfn, - anon_sym_SLASH, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_DOT, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [1347] = 2, - ACTIONS(334), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_AT, - anon_sym_AMP, - anon_sym_PIPE, - sym_text_content, - ACTIONS(332), 34, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_LBRACK, - anon_sym_ATfn, - anon_sym_SLASH, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_DOT, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [1392] = 2, - ACTIONS(338), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_AT, - anon_sym_AMP, - anon_sym_PIPE, - sym_text_content, - ACTIONS(336), 34, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_LBRACK, - anon_sym_ATfn, - anon_sym_SLASH, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_DOT, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [1437] = 2, - ACTIONS(342), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_AT, - anon_sym_AMP, - anon_sym_PIPE, - sym_text_content, - ACTIONS(340), 34, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_LBRACK, - anon_sym_ATfn, - anon_sym_SLASH, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_DOT, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [1482] = 2, - ACTIONS(154), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_AT, - anon_sym_AMP, - anon_sym_PIPE, - sym_text_content, - ACTIONS(152), 34, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_LBRACK, - anon_sym_ATfn, - anon_sym_SLASH, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_DOT, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [1527] = 2, - ACTIONS(346), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_AT, - anon_sym_AMP, - anon_sym_PIPE, - sym_text_content, - ACTIONS(344), 34, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_LBRACK, - anon_sym_ATfn, - anon_sym_SLASH, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_DOT, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [1572] = 2, - ACTIONS(300), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_AT, - anon_sym_AMP, - anon_sym_PIPE, - sym_text_content, - ACTIONS(296), 34, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_LBRACK, - anon_sym_ATfn, - anon_sym_SLASH, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_DOT, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [1617] = 2, - ACTIONS(350), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_AT, - anon_sym_AMP, - anon_sym_PIPE, - sym_text_content, - ACTIONS(348), 34, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_LBRACK, - anon_sym_ATfn, - anon_sym_SLASH, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_DOT, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [1662] = 2, - ACTIONS(354), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_AT, - anon_sym_AMP, - anon_sym_PIPE, - sym_text_content, - ACTIONS(352), 34, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_LBRACK, - anon_sym_ATfn, - anon_sym_SLASH, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_DOT, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [1707] = 2, - ACTIONS(358), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_AT, - anon_sym_AMP, - anon_sym_PIPE, - sym_text_content, - ACTIONS(356), 34, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_LBRACK, - anon_sym_ATfn, - anon_sym_SLASH, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_DOT, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [1752] = 2, - ACTIONS(362), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_AT, - anon_sym_AMP, - anon_sym_PIPE, - sym_text_content, - ACTIONS(360), 34, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_LBRACK, - anon_sym_ATfn, - anon_sym_SLASH, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_DOT, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [1797] = 5, - STATE(114), 1, - sym_binary_operator, - ACTIONS(366), 2, - anon_sym_AT, - sym_text_content, - ACTIONS(140), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(142), 14, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(364), 18, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [1847] = 2, - ACTIONS(358), 10, - aux_sym_rust_path_token1, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - sym_wildcard_pattern, - anon_sym_PIPE, - aux_sym_integer_literal_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(356), 29, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SLASH, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - sym_float_literal, - [1891] = 3, - STATE(114), 1, - sym_binary_operator, - ACTIONS(198), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_AT, - anon_sym_AMP, - anon_sym_PIPE, - sym_text_content, - ACTIONS(196), 32, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_SLASH, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [1937] = 2, - ACTIONS(362), 10, - aux_sym_rust_path_token1, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - sym_wildcard_pattern, - anon_sym_PIPE, - aux_sym_integer_literal_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(360), 29, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SLASH, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - sym_float_literal, - [1981] = 3, - STATE(114), 1, - sym_binary_operator, - ACTIONS(96), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_AT, - anon_sym_AMP, - anon_sym_PIPE, - sym_text_content, - ACTIONS(94), 32, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_SLASH, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [2027] = 2, - ACTIONS(300), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_AT, - anon_sym_AMP, - anon_sym_PIPE, - sym_text_content, - ACTIONS(296), 32, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_SLASH, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [2070] = 3, - ACTIONS(368), 1, - anon_sym_LPAREN, - ACTIONS(150), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_SLASH, - anon_sym_AT, - anon_sym_AMP, - anon_sym_PIPE, - sym_text_content, - ACTIONS(146), 30, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_SLASH, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_DOT, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [2115] = 3, - STATE(147), 1, - sym_binary_operator, - ACTIONS(96), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_SLASH, - anon_sym_AT, - anon_sym_AMP, - anon_sym_PIPE, - sym_text_content, - ACTIONS(94), 30, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_SLASH, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_DOT, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [2160] = 3, - STATE(147), 1, - sym_binary_operator, - ACTIONS(198), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_SLASH, - anon_sym_AT, - anon_sym_AMP, - anon_sym_PIPE, - sym_text_content, - ACTIONS(196), 30, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_SLASH, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_DOT, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [2205] = 5, - STATE(147), 1, - sym_binary_operator, - ACTIONS(154), 3, - anon_sym_LT_SLASH, - anon_sym_AT, - sym_text_content, - ACTIONS(140), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(142), 14, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(152), 16, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_DOT, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [2254] = 5, - STATE(147), 1, - sym_binary_operator, - ACTIONS(144), 3, - anon_sym_LT_SLASH, - anon_sym_AT, - sym_text_content, - ACTIONS(140), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(142), 14, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(138), 16, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_DOT, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [2303] = 2, - ACTIONS(362), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_SLASH, - anon_sym_AT, - anon_sym_AMP, - anon_sym_PIPE, - sym_text_content, - ACTIONS(360), 30, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_SLASH, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_DOT, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [2345] = 20, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(374), 1, - anon_sym_RPAREN, - ACTIONS(376), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_PIPE, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - STATE(132), 1, - sym_unary_operator, - STATE(213), 1, - sym_integer_literal, - STATE(235), 1, - sym_primary_expression, - STATE(287), 1, - sym_expression, - STATE(716), 1, - sym_argument_list, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(230), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(237), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [2423] = 20, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(376), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_PIPE, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - ACTIONS(394), 1, - anon_sym_LBRACE, - STATE(132), 1, - sym_unary_operator, - STATE(213), 1, - sym_integer_literal, - STATE(222), 1, - sym_expression, - STATE(232), 1, - sym_content_block, - STATE(235), 1, - sym_primary_expression, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(230), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(237), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [2501] = 2, - ACTIONS(282), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_SLASH, - anon_sym_AT, - anon_sym_AMP, - anon_sym_PIPE, - sym_text_content, - ACTIONS(280), 30, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_SLASH, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_DOT, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [2543] = 2, - ACTIONS(286), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_SLASH, - anon_sym_AT, - anon_sym_AMP, - anon_sym_PIPE, - sym_text_content, - ACTIONS(284), 30, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_SLASH, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_DOT, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [2585] = 2, - ACTIONS(290), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_SLASH, - anon_sym_AT, - anon_sym_AMP, - anon_sym_PIPE, - sym_text_content, - ACTIONS(288), 30, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_SLASH, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_DOT, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [2627] = 2, - ACTIONS(294), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_SLASH, - anon_sym_AT, - anon_sym_AMP, - anon_sym_PIPE, - sym_text_content, - ACTIONS(292), 30, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_SLASH, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_DOT, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [2669] = 20, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(376), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_PIPE, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - ACTIONS(396), 1, - anon_sym_RPAREN, - STATE(132), 1, - sym_unary_operator, - STATE(213), 1, - sym_integer_literal, - STATE(235), 1, - sym_primary_expression, - STATE(287), 1, - sym_expression, - STATE(779), 1, - sym_argument_list, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(230), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(237), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [2747] = 4, - ACTIONS(398), 1, - anon_sym_LBRACK, - ACTIONS(400), 1, - anon_sym_DOT, - ACTIONS(300), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_SLASH, - anon_sym_AT, - anon_sym_AMP, - anon_sym_PIPE, - sym_text_content, - ACTIONS(296), 28, - anon_sym_RBRACE, - anon_sym_SLASH, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [2793] = 2, - ACTIONS(306), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_SLASH, - anon_sym_AT, - anon_sym_AMP, - anon_sym_PIPE, - sym_text_content, - ACTIONS(304), 30, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_SLASH, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_DOT, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [2835] = 19, - ACTIONS(202), 1, - anon_sym_LT, - ACTIONS(207), 1, - anon_sym_ATif, - ACTIONS(210), 1, - anon_sym_ATfor, - ACTIONS(213), 1, - anon_sym_AT, - ACTIONS(216), 1, - anon_sym_ATlet, - ACTIONS(219), 1, - anon_sym_ATmatch, - ACTIONS(222), 1, - anon_sym_ATbreak, - ACTIONS(225), 1, - anon_sym_ATcontinue, - ACTIONS(228), 1, - anon_sym_LT_AT, - ACTIONS(237), 1, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - ACTIONS(402), 1, - anon_sym_LT_SLASH, - ACTIONS(200), 2, - anon_sym_RBRACE, - anon_sym_LT_SLASH_AT, - ACTIONS(231), 2, - sym_template_comment, - sym_html_comment, - STATE(178), 2, - sym_template_node, - aux_sym_content_block_repeat1, - STATE(414), 2, - sym_self_closing_function_tag, - sym_container_function_tag, - ACTIONS(234), 3, - sym_raw_block, - sym_escape_at, - sym_text_content, - STATE(412), 3, - sym_simple_expression, - sym_complex_expression, - sym_safe_expression, - STATE(411), 6, - sym_html_element, - sym_template_expression, - sym_template_control_flow, - sym_function_tag, - sym_comment, - sym_embedded_language, - STATE(413), 6, - sym_let_statement, - sym_if_statement, - sym_for_loop, - sym_match_statement, - sym_break_statement, - sym_continue_statement, - [2911] = 2, - ACTIONS(314), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_SLASH, - anon_sym_AT, - anon_sym_AMP, - anon_sym_PIPE, - sym_text_content, - ACTIONS(312), 30, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_SLASH, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_DOT, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [2953] = 20, - ACTIONS(404), 1, - aux_sym_rust_path_token1, - ACTIONS(406), 1, - anon_sym_LBRACE, - ACTIONS(408), 1, - anon_sym_LPAREN, - ACTIONS(410), 1, - anon_sym_LBRACK, - ACTIONS(412), 1, - anon_sym_PIPE, - ACTIONS(414), 1, - anon_sym_DQUOTE, - ACTIONS(416), 1, - anon_sym_SQUOTE, - ACTIONS(418), 1, - aux_sym_integer_literal_token1, - ACTIONS(422), 1, - sym_float_literal, - STATE(46), 1, - sym_expression, - STATE(51), 1, - sym_integer_literal, - STATE(55), 1, - sym_primary_expression, - STATE(64), 1, - sym_content_block, - STATE(146), 1, - sym_unary_operator, - ACTIONS(424), 2, - anon_sym_true, - anon_sym_false, - STATE(76), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(420), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(56), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(53), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [3031] = 20, - ACTIONS(426), 1, - aux_sym_rust_path_token1, - ACTIONS(428), 1, - anon_sym_LBRACE, - ACTIONS(430), 1, - anon_sym_LPAREN, - ACTIONS(432), 1, - anon_sym_LBRACK, - ACTIONS(434), 1, - anon_sym_PIPE, - ACTIONS(436), 1, - anon_sym_DQUOTE, - ACTIONS(438), 1, - anon_sym_SQUOTE, - ACTIONS(440), 1, - aux_sym_integer_literal_token1, - ACTIONS(444), 1, - sym_float_literal, STATE(8), 1, - sym_expression, - STATE(14), 1, - sym_integer_literal, - STATE(17), 1, - sym_primary_expression, - STATE(29), 1, - sym_content_block, - STATE(144), 1, - sym_unary_operator, - ACTIONS(446), 2, - anon_sym_true, - anon_sym_false, - STATE(31), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(442), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(18), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(16), 8, + aux_sym_enum_variant_repeat1, + STATE(88), 1, sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [3109] = 19, - ACTIONS(242), 1, - anon_sym_LT, - ACTIONS(247), 1, - anon_sym_ATif, - ACTIONS(250), 1, - anon_sym_ATfor, - ACTIONS(253), 1, - anon_sym_AT, - ACTIONS(256), 1, - anon_sym_ATlet, - ACTIONS(259), 1, - anon_sym_ATmatch, - ACTIONS(262), 1, - anon_sym_ATbreak, - ACTIONS(265), 1, - anon_sym_ATcontinue, - ACTIONS(268), 1, - anon_sym_LT_AT, - ACTIONS(277), 1, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - ACTIONS(448), 1, - anon_sym_LT_SLASH, - ACTIONS(240), 2, - anon_sym_RBRACE, - anon_sym_LT_SLASH_AT, - ACTIONS(271), 2, - sym_template_comment, - sym_html_comment, - STATE(181), 2, - sym_template_node, - aux_sym_content_block_repeat1, - STATE(414), 2, - sym_self_closing_function_tag, - sym_container_function_tag, - ACTIONS(274), 3, - sym_raw_block, - sym_escape_at, - sym_text_content, - STATE(412), 3, - sym_simple_expression, - sym_complex_expression, - sym_safe_expression, - STATE(411), 6, - sym_html_element, - sym_template_expression, - sym_template_control_flow, - sym_function_tag, - sym_comment, - sym_embedded_language, - STATE(413), 6, - sym_let_statement, - sym_if_statement, - sym_for_loop, - sym_match_statement, - sym_break_statement, - sym_continue_statement, - [3185] = 2, - ACTIONS(322), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_SLASH, - anon_sym_AT, - anon_sym_AMP, - anon_sym_PIPE, - sym_text_content, - ACTIONS(320), 30, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_SLASH, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_DOT, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [3227] = 2, - ACTIONS(326), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_SLASH, - anon_sym_AT, - anon_sym_AMP, - anon_sym_PIPE, - sym_text_content, - ACTIONS(324), 30, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_SLASH, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_DOT, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [3269] = 2, - ACTIONS(144), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_SLASH, - anon_sym_AT, - anon_sym_AMP, - anon_sym_PIPE, - sym_text_content, - ACTIONS(138), 30, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_SLASH, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_DOT, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [3311] = 20, - ACTIONS(404), 1, - aux_sym_rust_path_token1, - ACTIONS(406), 1, - anon_sym_LBRACE, - ACTIONS(408), 1, - anon_sym_LPAREN, - ACTIONS(410), 1, - anon_sym_LBRACK, - ACTIONS(412), 1, - anon_sym_PIPE, - ACTIONS(414), 1, - anon_sym_DQUOTE, - ACTIONS(416), 1, - anon_sym_SQUOTE, - ACTIONS(418), 1, - aux_sym_integer_literal_token1, - ACTIONS(422), 1, - sym_float_literal, - STATE(45), 1, - sym_expression, - STATE(51), 1, - sym_integer_literal, - STATE(55), 1, - sym_primary_expression, - STATE(68), 1, - sym_content_block, - STATE(146), 1, - sym_unary_operator, - ACTIONS(424), 2, - anon_sym_true, - anon_sym_false, - STATE(76), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(420), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(56), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(53), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [3389] = 2, - ACTIONS(330), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_SLASH, - anon_sym_AT, - anon_sym_AMP, - anon_sym_PIPE, - sym_text_content, - ACTIONS(328), 30, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_SLASH, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_DOT, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [3431] = 2, - ACTIONS(334), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_SLASH, - anon_sym_AT, - anon_sym_AMP, - anon_sym_PIPE, - sym_text_content, - ACTIONS(332), 30, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_SLASH, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_DOT, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [3473] = 2, - ACTIONS(154), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_SLASH, - anon_sym_AT, - anon_sym_AMP, - anon_sym_PIPE, - sym_text_content, - ACTIONS(152), 30, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_SLASH, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_DOT, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [3515] = 20, - ACTIONS(98), 1, - anon_sym_RBRACE, - ACTIONS(100), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_ATif, - ACTIONS(106), 1, - anon_sym_ATfor, - ACTIONS(109), 1, - anon_sym_AT, - ACTIONS(112), 1, - anon_sym_ATlet, - ACTIONS(115), 1, - anon_sym_ATmatch, - ACTIONS(118), 1, - anon_sym_ATbreak, - ACTIONS(121), 1, - anon_sym_ATcontinue, - ACTIONS(124), 1, - anon_sym_LT_AT, - ACTIONS(135), 1, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - ACTIONS(450), 1, - anon_sym_LT_SLASH, - ACTIONS(452), 1, - anon_sym_LT_SLASH_AT, - ACTIONS(129), 2, - sym_template_comment, - sym_html_comment, - STATE(182), 2, - sym_template_node, - aux_sym_content_block_repeat1, - STATE(414), 2, - sym_self_closing_function_tag, - sym_container_function_tag, - ACTIONS(132), 3, - sym_raw_block, - sym_escape_at, - sym_text_content, - STATE(412), 3, - sym_simple_expression, - sym_complex_expression, - sym_safe_expression, - STATE(411), 6, - sym_html_element, - sym_template_expression, - sym_template_control_flow, - sym_function_tag, - sym_comment, - sym_embedded_language, - STATE(413), 6, - sym_let_statement, - sym_if_statement, - sym_for_loop, - sym_match_statement, - sym_break_statement, - sym_continue_statement, - [3593] = 20, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(376), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_PIPE, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - ACTIONS(454), 1, - anon_sym_RPAREN, - STATE(132), 1, - sym_unary_operator, - STATE(213), 1, - sym_integer_literal, - STATE(235), 1, - sym_primary_expression, - STATE(287), 1, - sym_expression, - STATE(743), 1, - sym_argument_list, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(230), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(237), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [3671] = 2, - ACTIONS(354), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_SLASH, - anon_sym_AT, - anon_sym_AMP, - anon_sym_PIPE, - sym_text_content, - ACTIONS(352), 30, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_SLASH, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_DOT, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [3713] = 2, - ACTIONS(338), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_SLASH, - anon_sym_AT, - anon_sym_AMP, - anon_sym_PIPE, - sym_text_content, - ACTIONS(336), 30, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_SLASH, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_DOT, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [3755] = 2, - ACTIONS(342), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_SLASH, - anon_sym_AT, - anon_sym_AMP, - anon_sym_PIPE, - sym_text_content, - ACTIONS(340), 30, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_SLASH, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_DOT, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [3797] = 2, - ACTIONS(350), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_SLASH, - anon_sym_AT, - anon_sym_AMP, - anon_sym_PIPE, - sym_text_content, - ACTIONS(348), 30, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_SLASH, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_DOT, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [3839] = 2, - ACTIONS(346), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_SLASH, - anon_sym_AT, - anon_sym_AMP, - anon_sym_PIPE, - sym_text_content, - ACTIONS(344), 30, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_SLASH, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_DOT, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [3881] = 2, - ACTIONS(300), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_SLASH, - anon_sym_AT, - anon_sym_AMP, - anon_sym_PIPE, - sym_text_content, - ACTIONS(296), 30, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_SLASH, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_DOT, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [3923] = 2, - ACTIONS(310), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_SLASH, - anon_sym_AT, - anon_sym_AMP, - anon_sym_PIPE, - sym_text_content, - ACTIONS(308), 30, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_SLASH, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_DOT, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [3965] = 2, - ACTIONS(318), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_SLASH, - anon_sym_AT, - anon_sym_AMP, - anon_sym_PIPE, - sym_text_content, - ACTIONS(316), 30, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_SLASH, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_DOT, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [4007] = 20, - ACTIONS(426), 1, - aux_sym_rust_path_token1, - ACTIONS(428), 1, - anon_sym_LBRACE, - ACTIONS(430), 1, - anon_sym_LPAREN, - ACTIONS(432), 1, - anon_sym_LBRACK, - ACTIONS(434), 1, - anon_sym_PIPE, - ACTIONS(436), 1, - anon_sym_DQUOTE, - ACTIONS(438), 1, - anon_sym_SQUOTE, - ACTIONS(440), 1, - aux_sym_integer_literal_token1, - ACTIONS(444), 1, - sym_float_literal, - STATE(6), 1, - sym_expression, - STATE(14), 1, - sym_integer_literal, - STATE(17), 1, - sym_primary_expression, - STATE(24), 1, - sym_content_block, - STATE(144), 1, - sym_unary_operator, - ACTIONS(446), 2, - anon_sym_true, - anon_sym_false, - STATE(31), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(442), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(18), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(16), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [4085] = 20, - ACTIONS(156), 1, - anon_sym_RBRACE, - ACTIONS(158), 1, - anon_sym_LT, - ACTIONS(161), 1, - anon_sym_ATif, - ACTIONS(164), 1, - anon_sym_ATfor, - ACTIONS(167), 1, - anon_sym_AT, - ACTIONS(170), 1, - anon_sym_ATlet, - ACTIONS(173), 1, - anon_sym_ATmatch, - ACTIONS(176), 1, - anon_sym_ATbreak, - ACTIONS(179), 1, - anon_sym_ATcontinue, - ACTIONS(182), 1, - anon_sym_LT_AT, - ACTIONS(193), 1, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - ACTIONS(456), 1, - anon_sym_LT_SLASH, - ACTIONS(458), 1, - anon_sym_LT_SLASH_AT, - ACTIONS(187), 2, - sym_template_comment, - sym_html_comment, - STATE(179), 2, - sym_template_node, - aux_sym_content_block_repeat1, - STATE(414), 2, - sym_self_closing_function_tag, - sym_container_function_tag, - ACTIONS(190), 3, - sym_raw_block, - sym_escape_at, - sym_text_content, - STATE(412), 3, - sym_simple_expression, - sym_complex_expression, - sym_safe_expression, - STATE(411), 6, - sym_html_element, - sym_template_expression, - sym_template_control_flow, - sym_function_tag, - sym_comment, - sym_embedded_language, - STATE(413), 6, - sym_let_statement, - sym_if_statement, - sym_for_loop, - sym_match_statement, - sym_break_statement, - sym_continue_statement, - [4163] = 2, - ACTIONS(358), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_SLASH, - anon_sym_AT, - anon_sym_AMP, - anon_sym_PIPE, - sym_text_content, - ACTIONS(356), 30, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_SLASH, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_DOT, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [4205] = 20, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(376), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_PIPE, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - ACTIONS(460), 1, - anon_sym_RPAREN, - STATE(132), 1, - sym_unary_operator, - STATE(213), 1, - sym_integer_literal, - STATE(235), 1, - sym_primary_expression, - STATE(287), 1, - sym_expression, - STATE(710), 1, - sym_argument_list, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(230), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(237), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [4283] = 20, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(376), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_PIPE, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - ACTIONS(462), 1, - anon_sym_RPAREN, - STATE(132), 1, - sym_unary_operator, - STATE(213), 1, - sym_integer_literal, - STATE(235), 1, - sym_primary_expression, - STATE(287), 1, - sym_expression, - STATE(746), 1, - sym_argument_list, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(230), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(237), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [4361] = 20, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(376), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_PIPE, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - ACTIONS(464), 1, - anon_sym_RPAREN, - STATE(132), 1, - sym_unary_operator, - STATE(213), 1, - sym_integer_literal, - STATE(235), 1, - sym_primary_expression, - STATE(287), 1, - sym_expression, - STATE(702), 1, - sym_argument_list, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(230), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(237), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [4439] = 20, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(376), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_PIPE, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - ACTIONS(466), 1, - anon_sym_RPAREN, - STATE(132), 1, - sym_unary_operator, - STATE(213), 1, - sym_integer_literal, - STATE(235), 1, - sym_primary_expression, - STATE(287), 1, - sym_expression, - STATE(707), 1, - sym_argument_list, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(230), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(237), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [4517] = 20, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(376), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_PIPE, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - ACTIONS(394), 1, - anon_sym_LBRACE, - STATE(132), 1, - sym_unary_operator, - STATE(213), 1, - sym_integer_literal, - STATE(225), 1, - sym_expression, - STATE(235), 1, - sym_primary_expression, - STATE(239), 1, - sym_content_block, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(230), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(237), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [4595] = 19, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(376), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_PIPE, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - ACTIONS(468), 1, - anon_sym_RBRACK, - STATE(132), 1, - sym_unary_operator, - STATE(213), 1, - sym_integer_literal, - STATE(235), 1, - sym_primary_expression, - STATE(291), 1, - sym_expression, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(230), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(237), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [4670] = 19, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(376), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_PIPE, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - ACTIONS(470), 1, - anon_sym_RPAREN, - STATE(132), 1, - sym_unary_operator, - STATE(213), 1, - sym_integer_literal, - STATE(235), 1, - sym_primary_expression, - STATE(291), 1, - sym_expression, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(230), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(237), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [4745] = 3, - STATE(129), 1, - sym_binary_operator, - ACTIONS(198), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_SLASH, - anon_sym_AT, - anon_sym_AMP, - anon_sym_PIPE, - sym_text_content, - ACTIONS(196), 28, - anon_sym_RBRACE, - anon_sym_SLASH, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [4788] = 19, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(376), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_PIPE, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - ACTIONS(472), 1, - anon_sym_RBRACK, - STATE(132), 1, - sym_unary_operator, - STATE(213), 1, - sym_integer_literal, - STATE(235), 1, - sym_primary_expression, - STATE(300), 1, - sym_expression, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(230), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(237), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [4863] = 19, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(376), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_PIPE, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - ACTIONS(474), 1, - anon_sym_let, - STATE(132), 1, - sym_unary_operator, - STATE(213), 1, - sym_integer_literal, - STATE(235), 1, - sym_primary_expression, - STATE(323), 1, - sym_expression, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(230), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(237), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [4938] = 19, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(376), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_PIPE, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - ACTIONS(476), 1, - anon_sym_RBRACK, - STATE(132), 1, - sym_unary_operator, - STATE(213), 1, - sym_integer_literal, - STATE(235), 1, - sym_primary_expression, - STATE(292), 1, - sym_expression, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(230), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(237), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [5013] = 19, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(376), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_PIPE, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - ACTIONS(478), 1, - anon_sym_RBRACK, - STATE(132), 1, - sym_unary_operator, - STATE(213), 1, - sym_integer_literal, - STATE(235), 1, - sym_primary_expression, - STATE(291), 1, - sym_expression, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(230), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(237), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [5088] = 19, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(376), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_PIPE, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - ACTIONS(480), 1, - anon_sym_RBRACK, - STATE(132), 1, - sym_unary_operator, - STATE(213), 1, - sym_integer_literal, - STATE(235), 1, - sym_primary_expression, - STATE(291), 1, - sym_expression, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(230), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(237), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [5163] = 19, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(376), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_PIPE, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - ACTIONS(482), 1, - anon_sym_RBRACK, - STATE(132), 1, - sym_unary_operator, - STATE(213), 1, - sym_integer_literal, - STATE(235), 1, - sym_primary_expression, - STATE(291), 1, - sym_expression, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(230), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(237), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [5238] = 19, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(376), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_PIPE, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - ACTIONS(484), 1, - anon_sym_let, - STATE(132), 1, - sym_unary_operator, - STATE(213), 1, - sym_integer_literal, - STATE(235), 1, - sym_primary_expression, - STATE(304), 1, - sym_expression, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(230), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(237), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [5313] = 19, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(376), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_PIPE, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - ACTIONS(486), 1, - anon_sym_RBRACK, - STATE(132), 1, - sym_unary_operator, - STATE(213), 1, - sym_integer_literal, - STATE(235), 1, - sym_primary_expression, - STATE(284), 1, - sym_expression, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(230), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(237), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [5388] = 19, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(376), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_PIPE, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - ACTIONS(488), 1, - anon_sym_RPAREN, - STATE(132), 1, - sym_unary_operator, - STATE(213), 1, - sym_integer_literal, - STATE(235), 1, - sym_primary_expression, - STATE(291), 1, - sym_expression, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(230), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(237), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [5463] = 19, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(376), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_PIPE, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - ACTIONS(490), 1, - anon_sym_RBRACK, - STATE(132), 1, - sym_unary_operator, - STATE(213), 1, - sym_integer_literal, - STATE(235), 1, - sym_primary_expression, - STATE(291), 1, - sym_expression, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(230), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(237), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [5538] = 19, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(376), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_PIPE, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - ACTIONS(492), 1, - anon_sym_RBRACK, - STATE(132), 1, - sym_unary_operator, - STATE(213), 1, - sym_integer_literal, - STATE(235), 1, - sym_primary_expression, - STATE(291), 1, - sym_expression, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(230), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(237), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [5613] = 5, - STATE(129), 1, - sym_binary_operator, - ACTIONS(366), 3, - anon_sym_LT_SLASH, - anon_sym_AT, - sym_text_content, - ACTIONS(140), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(142), 14, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(364), 14, - anon_sym_RBRACE, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [5660] = 3, - STATE(129), 1, - sym_binary_operator, - ACTIONS(96), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_SLASH, - anon_sym_AT, - anon_sym_AMP, - anon_sym_PIPE, - sym_text_content, - ACTIONS(94), 28, - anon_sym_RBRACE, - anon_sym_SLASH, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [5703] = 19, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(376), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_PIPE, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - ACTIONS(494), 1, - anon_sym_let, - STATE(132), 1, - sym_unary_operator, - STATE(213), 1, - sym_integer_literal, - STATE(235), 1, - sym_primary_expression, - STATE(351), 1, - sym_expression, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(230), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(237), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [5778] = 19, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(376), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_PIPE, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - STATE(132), 1, - sym_unary_operator, - STATE(213), 1, - sym_integer_literal, - STATE(235), 1, - sym_primary_expression, - STATE(316), 1, - sym_expression, - STATE(651), 1, - sym_default_value, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(230), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(237), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [5853] = 19, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(376), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_PIPE, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - ACTIONS(496), 1, - anon_sym_let, - STATE(132), 1, - sym_unary_operator, - STATE(213), 1, - sym_integer_literal, - STATE(235), 1, - sym_primary_expression, - STATE(356), 1, - sym_expression, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(230), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(237), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [5928] = 18, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(376), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_PIPE, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - STATE(132), 1, - sym_unary_operator, - STATE(213), 1, - sym_integer_literal, - STATE(235), 1, - sym_primary_expression, - STATE(354), 1, - sym_expression, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(230), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(237), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [6000] = 18, - ACTIONS(498), 1, - anon_sym_LT, - ACTIONS(501), 1, - anon_sym_ATif, - ACTIONS(504), 1, - anon_sym_ATfor, - ACTIONS(507), 1, - anon_sym_AT, - ACTIONS(510), 1, - anon_sym_ATlet, - ACTIONS(513), 1, - anon_sym_ATmatch, - ACTIONS(516), 1, - anon_sym_ATbreak, - ACTIONS(519), 1, - anon_sym_ATcontinue, - ACTIONS(522), 1, - anon_sym_LT_AT, - ACTIONS(525), 1, - anon_sym_LT_SLASH_AT, - ACTIONS(533), 1, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - ACTIONS(527), 2, - sym_template_comment, - sym_html_comment, - STATE(107), 2, - sym_template_node, - aux_sym_content_block_repeat1, - STATE(414), 2, - sym_self_closing_function_tag, - sym_container_function_tag, - ACTIONS(530), 3, - sym_raw_block, - sym_escape_at, - sym_text_content, - STATE(412), 3, - sym_simple_expression, - sym_complex_expression, - sym_safe_expression, - STATE(411), 6, - sym_html_element, - sym_template_expression, - sym_template_control_flow, - sym_function_tag, - sym_comment, - sym_embedded_language, - STATE(413), 6, - sym_let_statement, - sym_if_statement, - sym_for_loop, - sym_match_statement, - sym_break_statement, - sym_continue_statement, - [6072] = 18, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(376), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_PIPE, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - STATE(132), 1, - sym_unary_operator, - STATE(213), 1, - sym_integer_literal, - STATE(235), 1, - sym_primary_expression, - STATE(387), 1, - sym_expression, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(230), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(237), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [6144] = 18, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(376), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_PIPE, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - STATE(132), 1, - sym_unary_operator, - STATE(213), 1, - sym_integer_literal, - STATE(235), 1, - sym_primary_expression, - STATE(319), 1, - sym_expression, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(230), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(237), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [6216] = 18, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(376), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_PIPE, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - STATE(132), 1, - sym_unary_operator, - STATE(213), 1, - sym_integer_literal, - STATE(235), 1, - sym_primary_expression, - STATE(395), 1, - sym_expression, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(230), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(237), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [6288] = 18, - ACTIONS(426), 1, - aux_sym_rust_path_token1, - ACTIONS(430), 1, - anon_sym_LPAREN, - ACTIONS(432), 1, - anon_sym_LBRACK, - ACTIONS(434), 1, - anon_sym_PIPE, - ACTIONS(436), 1, - anon_sym_DQUOTE, - ACTIONS(438), 1, - anon_sym_SQUOTE, - ACTIONS(440), 1, - aux_sym_integer_literal_token1, - ACTIONS(444), 1, - sym_float_literal, - STATE(14), 1, - sym_integer_literal, - STATE(17), 1, - sym_primary_expression, - STATE(40), 1, - sym_expression, - STATE(111), 1, - sym_unary_operator, - ACTIONS(446), 2, - anon_sym_true, - anon_sym_false, - STATE(41), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(442), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(18), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(16), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [6360] = 18, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(376), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_PIPE, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - STATE(132), 1, - sym_unary_operator, - STATE(213), 1, - sym_integer_literal, - STATE(235), 1, - sym_primary_expression, - STATE(376), 1, - sym_expression, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(230), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(237), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [6432] = 18, - ACTIONS(202), 1, - anon_sym_LT, - ACTIONS(207), 1, - anon_sym_ATif, - ACTIONS(210), 1, - anon_sym_ATfor, - ACTIONS(213), 1, - anon_sym_AT, - ACTIONS(216), 1, - anon_sym_ATlet, - ACTIONS(219), 1, - anon_sym_ATmatch, - ACTIONS(222), 1, - anon_sym_ATbreak, - ACTIONS(225), 1, - anon_sym_ATcontinue, - ACTIONS(228), 1, - anon_sym_LT_AT, - ACTIONS(237), 1, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - ACTIONS(536), 1, - anon_sym_LT_SLASH, - ACTIONS(231), 2, - sym_template_comment, - sym_html_comment, - STATE(178), 2, - sym_template_node, - aux_sym_content_block_repeat1, - STATE(414), 2, - sym_self_closing_function_tag, - sym_container_function_tag, - ACTIONS(234), 3, - sym_raw_block, - sym_escape_at, - sym_text_content, - STATE(412), 3, - sym_simple_expression, - sym_complex_expression, - sym_safe_expression, - STATE(411), 6, - sym_html_element, - sym_template_expression, - sym_template_control_flow, - sym_function_tag, - sym_comment, - sym_embedded_language, - STATE(413), 6, - sym_let_statement, - sym_if_statement, - sym_for_loop, - sym_match_statement, - sym_break_statement, - sym_continue_statement, - [6504] = 18, - ACTIONS(426), 1, - aux_sym_rust_path_token1, - ACTIONS(430), 1, - anon_sym_LPAREN, - ACTIONS(432), 1, - anon_sym_LBRACK, - ACTIONS(434), 1, - anon_sym_PIPE, - ACTIONS(436), 1, - anon_sym_DQUOTE, - ACTIONS(438), 1, - anon_sym_SQUOTE, - ACTIONS(440), 1, - aux_sym_integer_literal_token1, - ACTIONS(444), 1, - sym_float_literal, - STATE(14), 1, - sym_integer_literal, - STATE(17), 1, - sym_primary_expression, - STATE(38), 1, - sym_expression, - STATE(111), 1, - sym_unary_operator, - ACTIONS(446), 2, - anon_sym_true, - anon_sym_false, - STATE(41), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(442), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(18), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(16), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [6576] = 18, - ACTIONS(539), 1, - anon_sym_RBRACE, - ACTIONS(541), 1, - anon_sym_LT, - ACTIONS(543), 1, - anon_sym_ATif, - ACTIONS(545), 1, - anon_sym_ATfor, - ACTIONS(547), 1, - anon_sym_AT, - ACTIONS(549), 1, - anon_sym_ATlet, - ACTIONS(551), 1, - anon_sym_ATmatch, - ACTIONS(553), 1, - anon_sym_ATbreak, - ACTIONS(555), 1, - anon_sym_ATcontinue, - ACTIONS(557), 1, - anon_sym_LT_AT, - ACTIONS(563), 1, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - ACTIONS(559), 2, - sym_template_comment, - sym_html_comment, - STATE(127), 2, - sym_template_node, - aux_sym_content_block_repeat1, - STATE(414), 2, - sym_self_closing_function_tag, - sym_container_function_tag, - ACTIONS(561), 3, - sym_raw_block, - sym_escape_at, - sym_text_content, - STATE(412), 3, - sym_simple_expression, - sym_complex_expression, - sym_safe_expression, - STATE(411), 6, - sym_html_element, - sym_template_expression, - sym_template_control_flow, - sym_function_tag, - sym_comment, - sym_embedded_language, - STATE(413), 6, - sym_let_statement, - sym_if_statement, - sym_for_loop, - sym_match_statement, - sym_break_statement, - sym_continue_statement, - [6648] = 18, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(376), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_PIPE, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - STATE(132), 1, - sym_unary_operator, - STATE(213), 1, - sym_integer_literal, - STATE(219), 1, - sym_expression, - STATE(235), 1, - sym_primary_expression, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(230), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(237), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [6720] = 18, - ACTIONS(242), 1, - anon_sym_LT, - ACTIONS(247), 1, - anon_sym_ATif, - ACTIONS(250), 1, - anon_sym_ATfor, - ACTIONS(253), 1, - anon_sym_AT, - ACTIONS(256), 1, - anon_sym_ATlet, - ACTIONS(259), 1, - anon_sym_ATmatch, - ACTIONS(262), 1, - anon_sym_ATbreak, - ACTIONS(265), 1, - anon_sym_ATcontinue, - ACTIONS(268), 1, - anon_sym_LT_AT, - ACTIONS(277), 1, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - ACTIONS(565), 1, - anon_sym_LT_SLASH, - ACTIONS(271), 2, - sym_template_comment, - sym_html_comment, - STATE(181), 2, - sym_template_node, - aux_sym_content_block_repeat1, - STATE(414), 2, - sym_self_closing_function_tag, - sym_container_function_tag, - ACTIONS(274), 3, - sym_raw_block, - sym_escape_at, - sym_text_content, - STATE(412), 3, - sym_simple_expression, - sym_complex_expression, - sym_safe_expression, - STATE(411), 6, - sym_html_element, - sym_template_expression, - sym_template_control_flow, - sym_function_tag, - sym_comment, - sym_embedded_language, - STATE(413), 6, - sym_let_statement, - sym_if_statement, - sym_for_loop, - sym_match_statement, - sym_break_statement, - sym_continue_statement, - [6792] = 18, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(376), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_PIPE, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - STATE(132), 1, - sym_unary_operator, - STATE(213), 1, - sym_integer_literal, - STATE(235), 1, - sym_primary_expression, - STATE(375), 1, - sym_expression, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(230), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(237), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [6864] = 18, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(376), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_PIPE, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - STATE(132), 1, - sym_unary_operator, - STATE(213), 1, - sym_integer_literal, - STATE(235), 1, - sym_primary_expression, - STATE(340), 1, - sym_expression, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(230), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(237), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [6936] = 18, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(376), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_PIPE, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - STATE(132), 1, - sym_unary_operator, - STATE(213), 1, - sym_integer_literal, - STATE(235), 1, - sym_primary_expression, - STATE(342), 1, - sym_expression, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(230), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(237), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [7008] = 18, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(376), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_PIPE, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - STATE(132), 1, - sym_unary_operator, - STATE(213), 1, - sym_integer_literal, - STATE(235), 1, - sym_primary_expression, - STATE(382), 1, - sym_expression, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(230), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(237), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [7080] = 18, - ACTIONS(426), 1, - aux_sym_rust_path_token1, - ACTIONS(430), 1, - anon_sym_LPAREN, - ACTIONS(432), 1, - anon_sym_LBRACK, - ACTIONS(434), 1, - anon_sym_PIPE, - ACTIONS(436), 1, - anon_sym_DQUOTE, - ACTIONS(438), 1, - anon_sym_SQUOTE, - ACTIONS(440), 1, - aux_sym_integer_literal_token1, - ACTIONS(444), 1, - sym_float_literal, - STATE(14), 1, - sym_integer_literal, - STATE(17), 1, - sym_primary_expression, - STATE(36), 1, - sym_expression, - STATE(111), 1, - sym_unary_operator, - ACTIONS(446), 2, - anon_sym_true, - anon_sym_false, - STATE(41), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(442), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(18), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(16), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [7152] = 18, - ACTIONS(245), 1, - anon_sym_LT_SLASH, - ACTIONS(543), 1, - anon_sym_ATif, - ACTIONS(545), 1, - anon_sym_ATfor, - ACTIONS(547), 1, - anon_sym_AT, - ACTIONS(549), 1, - anon_sym_ATlet, - ACTIONS(551), 1, - anon_sym_ATmatch, - ACTIONS(553), 1, - anon_sym_ATbreak, - ACTIONS(555), 1, - anon_sym_ATcontinue, - ACTIONS(557), 1, - anon_sym_LT_AT, - ACTIONS(563), 1, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - ACTIONS(568), 1, - anon_sym_LT, - ACTIONS(559), 2, - sym_template_comment, - sym_html_comment, - STATE(183), 2, - sym_template_node, - aux_sym_content_block_repeat1, - STATE(414), 2, - sym_self_closing_function_tag, - sym_container_function_tag, - ACTIONS(561), 3, - sym_raw_block, - sym_escape_at, - sym_text_content, - STATE(412), 3, - sym_simple_expression, - sym_complex_expression, - sym_safe_expression, - STATE(411), 6, - sym_html_element, - sym_template_expression, - sym_template_control_flow, - sym_function_tag, - sym_comment, - sym_embedded_language, - STATE(413), 6, - sym_let_statement, - sym_if_statement, - sym_for_loop, - sym_match_statement, - sym_break_statement, - sym_continue_statement, - [7224] = 18, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(376), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_PIPE, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - STATE(132), 1, - sym_unary_operator, - STATE(213), 1, - sym_integer_literal, - STATE(235), 1, - sym_primary_expression, - STATE(397), 1, - sym_expression, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(230), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(237), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [7296] = 18, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(376), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_PIPE, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - STATE(132), 1, - sym_unary_operator, - STATE(213), 1, - sym_integer_literal, - STATE(235), 1, - sym_primary_expression, - STATE(380), 1, - sym_expression, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(230), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(237), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [7368] = 18, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(376), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_PIPE, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - STATE(132), 1, - sym_unary_operator, - STATE(213), 1, - sym_integer_literal, - STATE(235), 1, - sym_primary_expression, - STATE(360), 1, - sym_expression, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(230), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(237), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [7440] = 18, - ACTIONS(541), 1, - anon_sym_LT, - ACTIONS(543), 1, - anon_sym_ATif, - ACTIONS(545), 1, - anon_sym_ATfor, - ACTIONS(547), 1, - anon_sym_AT, - ACTIONS(549), 1, - anon_sym_ATlet, - ACTIONS(551), 1, - anon_sym_ATmatch, - ACTIONS(553), 1, - anon_sym_ATbreak, - ACTIONS(555), 1, - anon_sym_ATcontinue, - ACTIONS(557), 1, - anon_sym_LT_AT, - ACTIONS(563), 1, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - ACTIONS(570), 1, - anon_sym_RBRACE, - ACTIONS(559), 2, - sym_template_comment, - sym_html_comment, - STATE(180), 2, - sym_template_node, - aux_sym_content_block_repeat1, - STATE(414), 2, - sym_self_closing_function_tag, - sym_container_function_tag, - ACTIONS(561), 3, - sym_raw_block, - sym_escape_at, - sym_text_content, - STATE(412), 3, - sym_simple_expression, - sym_complex_expression, - sym_safe_expression, - STATE(411), 6, - sym_html_element, - sym_template_expression, - sym_template_control_flow, - sym_function_tag, - sym_comment, - sym_embedded_language, - STATE(413), 6, - sym_let_statement, - sym_if_statement, - sym_for_loop, - sym_match_statement, - sym_break_statement, - sym_continue_statement, - [7512] = 18, - ACTIONS(404), 1, - aux_sym_rust_path_token1, - ACTIONS(408), 1, - anon_sym_LPAREN, - ACTIONS(410), 1, - anon_sym_LBRACK, - ACTIONS(412), 1, - anon_sym_PIPE, - ACTIONS(414), 1, - anon_sym_DQUOTE, - ACTIONS(416), 1, - anon_sym_SQUOTE, - ACTIONS(418), 1, - aux_sym_integer_literal_token1, - ACTIONS(422), 1, - sym_float_literal, - STATE(51), 1, - sym_integer_literal, - STATE(55), 1, - sym_primary_expression, - STATE(102), 1, - sym_expression, - STATE(128), 1, - sym_unary_operator, - ACTIONS(424), 2, - anon_sym_true, - anon_sym_false, - STATE(136), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(420), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(56), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(53), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [7584] = 18, - ACTIONS(404), 1, - aux_sym_rust_path_token1, - ACTIONS(408), 1, - anon_sym_LPAREN, - ACTIONS(410), 1, - anon_sym_LBRACK, - ACTIONS(412), 1, - anon_sym_PIPE, - ACTIONS(414), 1, - anon_sym_DQUOTE, - ACTIONS(416), 1, - anon_sym_SQUOTE, - ACTIONS(418), 1, - aux_sym_integer_literal_token1, - ACTIONS(422), 1, - sym_float_literal, - STATE(51), 1, - sym_integer_literal, - STATE(55), 1, - sym_primary_expression, - STATE(89), 1, - sym_expression, - STATE(128), 1, - sym_unary_operator, - ACTIONS(424), 2, - anon_sym_true, - anon_sym_false, - STATE(136), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(420), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(56), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(53), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [7656] = 18, - ACTIONS(158), 1, - anon_sym_LT, - ACTIONS(161), 1, - anon_sym_ATif, - ACTIONS(164), 1, - anon_sym_ATfor, - ACTIONS(167), 1, - anon_sym_AT, - ACTIONS(170), 1, - anon_sym_ATlet, - ACTIONS(173), 1, - anon_sym_ATmatch, - ACTIONS(176), 1, - anon_sym_ATbreak, - ACTIONS(179), 1, - anon_sym_ATcontinue, - ACTIONS(182), 1, - anon_sym_LT_AT, - ACTIONS(193), 1, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - ACTIONS(572), 1, - anon_sym_LT_SLASH_AT, - ACTIONS(187), 2, - sym_template_comment, - sym_html_comment, - STATE(179), 2, - sym_template_node, - aux_sym_content_block_repeat1, - STATE(414), 2, - sym_self_closing_function_tag, - sym_container_function_tag, - ACTIONS(190), 3, - sym_raw_block, - sym_escape_at, - sym_text_content, - STATE(412), 3, - sym_simple_expression, - sym_complex_expression, - sym_safe_expression, - STATE(411), 6, - sym_html_element, - sym_template_expression, - sym_template_control_flow, - sym_function_tag, - sym_comment, - sym_embedded_language, - STATE(413), 6, - sym_let_statement, - sym_if_statement, - sym_for_loop, - sym_match_statement, - sym_break_statement, - sym_continue_statement, - [7728] = 18, + STATE(118), 1, + sym_type_expression, + STATE(158), 1, + sym_rust_type, + STATE(122), 11, + sym_closure_type, + sym_render_type, + sym_out_type, + sym_target_type, + sym_primitive_type, + sym_reference_type, + sym_generic_type, + sym_path_type, + sym_tuple_type, + sym_array_type, + sym_slice_type, + ACTIONS(124), 18, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [508] = 13, ACTIONS(127), 1, - anon_sym_LT_SLASH_AT, - ACTIONS(541), 1, - anon_sym_LT, - ACTIONS(543), 1, - anon_sym_ATif, - ACTIONS(545), 1, - anon_sym_ATfor, - ACTIONS(547), 1, anon_sym_AT, - ACTIONS(549), 1, - anon_sym_ATlet, - ACTIONS(551), 1, - anon_sym_ATmatch, - ACTIONS(553), 1, - anon_sym_ATbreak, - ACTIONS(555), 1, - anon_sym_ATcontinue, - ACTIONS(563), 1, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - ACTIONS(575), 1, - anon_sym_LT_AT, - ACTIONS(559), 2, - sym_template_comment, - sym_html_comment, - STATE(107), 2, - sym_template_node, - aux_sym_content_block_repeat1, - STATE(414), 2, - sym_self_closing_function_tag, - sym_container_function_tag, - ACTIONS(561), 3, - sym_raw_block, - sym_escape_at, - sym_text_content, - STATE(412), 3, - sym_simple_expression, - sym_complex_expression, - sym_safe_expression, - STATE(411), 6, - sym_html_element, - sym_template_expression, - sym_template_control_flow, - sym_function_tag, - sym_comment, - sym_embedded_language, - STATE(413), 6, - sym_let_statement, - sym_if_statement, - sym_for_loop, - sym_match_statement, - sym_break_statement, - sym_continue_statement, - [7800] = 18, - ACTIONS(370), 1, + ACTIONS(129), 1, aux_sym_rust_path_token1, - ACTIONS(372), 1, + ACTIONS(131), 1, anon_sym_LPAREN, - ACTIONS(376), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_PIPE, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - STATE(132), 1, - sym_unary_operator, - STATE(213), 1, - sym_integer_literal, - STATE(218), 1, - sym_expression, - STATE(235), 1, - sym_primary_expression, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(230), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(237), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [7872] = 18, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(376), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_PIPE, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - STATE(132), 1, - sym_unary_operator, - STATE(213), 1, - sym_integer_literal, - STATE(235), 1, - sym_primary_expression, - STATE(378), 1, - sym_expression, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(230), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(237), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [7944] = 18, - ACTIONS(100), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_ATif, - ACTIONS(106), 1, - anon_sym_ATfor, - ACTIONS(109), 1, - anon_sym_AT, - ACTIONS(112), 1, - anon_sym_ATlet, - ACTIONS(115), 1, - anon_sym_ATmatch, - ACTIONS(118), 1, - anon_sym_ATbreak, - ACTIONS(121), 1, - anon_sym_ATcontinue, - ACTIONS(124), 1, - anon_sym_LT_AT, + ACTIONS(133), 1, + anon_sym_RPAREN, ACTIONS(135), 1, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - ACTIONS(577), 1, - anon_sym_LT_SLASH_AT, - ACTIONS(129), 2, - sym_template_comment, - sym_html_comment, - STATE(182), 2, - sym_template_node, - aux_sym_content_block_repeat1, - STATE(414), 2, - sym_self_closing_function_tag, - sym_container_function_tag, - ACTIONS(132), 3, - sym_raw_block, - sym_escape_at, - sym_text_content, - STATE(412), 3, - sym_simple_expression, - sym_complex_expression, - sym_safe_expression, - STATE(411), 6, - sym_html_element, - sym_template_expression, - sym_template_control_flow, - sym_function_tag, - sym_comment, - sym_embedded_language, - STATE(413), 6, - sym_let_statement, - sym_if_statement, - sym_for_loop, - sym_match_statement, - sym_break_statement, - sym_continue_statement, - [8016] = 18, - ACTIONS(543), 1, - anon_sym_ATif, - ACTIONS(545), 1, - anon_sym_ATfor, - ACTIONS(547), 1, - anon_sym_AT, - ACTIONS(549), 1, - anon_sym_ATlet, - ACTIONS(551), 1, - anon_sym_ATmatch, - ACTIONS(553), 1, - anon_sym_ATbreak, - ACTIONS(555), 1, - anon_sym_ATcontinue, - ACTIONS(557), 1, - anon_sym_LT_AT, - ACTIONS(563), 1, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - ACTIONS(568), 1, - anon_sym_LT, - ACTIONS(580), 1, - anon_sym_LT_SLASH, - ACTIONS(559), 2, - sym_template_comment, - sym_html_comment, - STATE(183), 2, - sym_template_node, - aux_sym_content_block_repeat1, - STATE(414), 2, - sym_self_closing_function_tag, - sym_container_function_tag, - ACTIONS(561), 3, - sym_raw_block, - sym_escape_at, - sym_text_content, - STATE(412), 3, - sym_simple_expression, - sym_complex_expression, - sym_safe_expression, - STATE(411), 6, - sym_html_element, - sym_template_expression, - sym_template_control_flow, - sym_function_tag, - sym_comment, - sym_embedded_language, - STATE(413), 6, - sym_let_statement, - sym_if_statement, - sym_for_loop, - sym_match_statement, - sym_break_statement, - sym_continue_statement, - [8088] = 2, - ACTIONS(300), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_SLASH, - anon_sym_AT, - anon_sym_AMP, - anon_sym_PIPE, - sym_text_content, - ACTIONS(296), 28, - anon_sym_RBRACE, - anon_sym_SLASH, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [8128] = 18, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(376), 1, anon_sym_LBRACK, - ACTIONS(380), 1, + ACTIONS(137), 1, + anon_sym_AMP, + ACTIONS(139), 1, anon_sym_PIPE, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - STATE(132), 1, - sym_unary_operator, - STATE(213), 1, - sym_integer_literal, - STATE(235), 1, - sym_primary_expression, - STATE(372), 1, - sym_expression, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(230), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(237), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [8200] = 18, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(376), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_PIPE, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - STATE(132), 1, - sym_unary_operator, - STATE(213), 1, - sym_integer_literal, - STATE(235), 1, - sym_primary_expression, - STATE(389), 1, - sym_expression, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(230), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(237), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [8272] = 18, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(376), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_PIPE, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - STATE(132), 1, - sym_unary_operator, - STATE(213), 1, - sym_integer_literal, - STATE(235), 1, - sym_primary_expression, - STATE(391), 1, - sym_expression, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(230), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(237), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [8344] = 18, - ACTIONS(541), 1, - anon_sym_LT, - ACTIONS(543), 1, - anon_sym_ATif, - ACTIONS(545), 1, - anon_sym_ATfor, - ACTIONS(547), 1, - anon_sym_AT, - ACTIONS(549), 1, - anon_sym_ATlet, - ACTIONS(551), 1, - anon_sym_ATmatch, - ACTIONS(553), 1, - anon_sym_ATbreak, - ACTIONS(555), 1, - anon_sym_ATcontinue, - ACTIONS(563), 1, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - ACTIONS(575), 1, - anon_sym_LT_AT, - ACTIONS(582), 1, - anon_sym_LT_SLASH_AT, - ACTIONS(559), 2, - sym_template_comment, - sym_html_comment, - STATE(107), 2, - sym_template_node, - aux_sym_content_block_repeat1, - STATE(414), 2, - sym_self_closing_function_tag, - sym_container_function_tag, - ACTIONS(561), 3, - sym_raw_block, - sym_escape_at, - sym_text_content, - STATE(412), 3, - sym_simple_expression, - sym_complex_expression, - sym_safe_expression, - STATE(411), 6, - sym_html_element, - sym_template_expression, - sym_template_control_flow, - sym_function_tag, - sym_comment, - sym_embedded_language, - STATE(413), 6, - sym_let_statement, - sym_if_statement, - sym_for_loop, - sym_match_statement, - sym_break_statement, - sym_continue_statement, - [8416] = 18, - ACTIONS(541), 1, - anon_sym_LT, - ACTIONS(543), 1, - anon_sym_ATif, - ACTIONS(545), 1, - anon_sym_ATfor, - ACTIONS(547), 1, - anon_sym_AT, - ACTIONS(549), 1, - anon_sym_ATlet, - ACTIONS(551), 1, - anon_sym_ATmatch, - ACTIONS(553), 1, - anon_sym_ATbreak, - ACTIONS(555), 1, - anon_sym_ATcontinue, - ACTIONS(557), 1, - anon_sym_LT_AT, - ACTIONS(563), 1, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - ACTIONS(584), 1, - anon_sym_RBRACE, - ACTIONS(559), 2, - sym_template_comment, - sym_html_comment, - STATE(143), 2, - sym_template_node, - aux_sym_content_block_repeat1, - STATE(414), 2, - sym_self_closing_function_tag, - sym_container_function_tag, - ACTIONS(561), 3, - sym_raw_block, - sym_escape_at, - sym_text_content, - STATE(412), 3, - sym_simple_expression, - sym_complex_expression, - sym_safe_expression, - STATE(411), 6, - sym_html_element, - sym_template_expression, - sym_template_control_flow, - sym_function_tag, - sym_comment, - sym_embedded_language, - STATE(413), 6, - sym_let_statement, - sym_if_statement, - sym_for_loop, - sym_match_statement, - sym_break_statement, - sym_continue_statement, - [8488] = 18, - ACTIONS(404), 1, - aux_sym_rust_path_token1, - ACTIONS(408), 1, - anon_sym_LPAREN, - ACTIONS(410), 1, - anon_sym_LBRACK, - ACTIONS(412), 1, - anon_sym_PIPE, - ACTIONS(414), 1, - anon_sym_DQUOTE, - ACTIONS(416), 1, - anon_sym_SQUOTE, - ACTIONS(418), 1, - aux_sym_integer_literal_token1, - ACTIONS(422), 1, - sym_float_literal, - STATE(51), 1, - sym_integer_literal, - STATE(55), 1, - sym_primary_expression, - STATE(101), 1, - sym_expression, - STATE(128), 1, - sym_unary_operator, - ACTIONS(424), 2, - anon_sym_true, - anon_sym_false, - STATE(136), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(420), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(56), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(53), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [8560] = 18, - ACTIONS(541), 1, - anon_sym_LT, - ACTIONS(543), 1, - anon_sym_ATif, - ACTIONS(545), 1, - anon_sym_ATfor, - ACTIONS(547), 1, - anon_sym_AT, - ACTIONS(549), 1, - anon_sym_ATlet, - ACTIONS(551), 1, - anon_sym_ATmatch, - ACTIONS(553), 1, - anon_sym_ATbreak, - ACTIONS(555), 1, - anon_sym_ATcontinue, - ACTIONS(557), 1, - anon_sym_LT_AT, - ACTIONS(563), 1, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - ACTIONS(586), 1, - anon_sym_RBRACE, - ACTIONS(559), 2, - sym_template_comment, - sym_html_comment, - STATE(180), 2, - sym_template_node, - aux_sym_content_block_repeat1, - STATE(414), 2, - sym_self_closing_function_tag, - sym_container_function_tag, - ACTIONS(561), 3, - sym_raw_block, - sym_escape_at, - sym_text_content, - STATE(412), 3, - sym_simple_expression, - sym_complex_expression, - sym_safe_expression, - STATE(411), 6, - sym_html_element, - sym_template_expression, - sym_template_control_flow, - sym_function_tag, - sym_comment, - sym_embedded_language, - STATE(413), 6, - sym_let_statement, - sym_if_statement, - sym_for_loop, - sym_match_statement, - sym_break_statement, - sym_continue_statement, - [8632] = 18, - ACTIONS(426), 1, - aux_sym_rust_path_token1, - ACTIONS(430), 1, - anon_sym_LPAREN, - ACTIONS(432), 1, - anon_sym_LBRACK, - ACTIONS(434), 1, - anon_sym_PIPE, - ACTIONS(436), 1, - anon_sym_DQUOTE, - ACTIONS(438), 1, - anon_sym_SQUOTE, - ACTIONS(440), 1, - aux_sym_integer_literal_token1, - ACTIONS(444), 1, - sym_float_literal, - STATE(4), 1, - sym_expression, - STATE(14), 1, - sym_integer_literal, - STATE(17), 1, - sym_primary_expression, - STATE(144), 1, - sym_unary_operator, - ACTIONS(446), 2, - anon_sym_true, - anon_sym_false, - STATE(31), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(442), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(18), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(16), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [8704] = 18, - ACTIONS(426), 1, - aux_sym_rust_path_token1, - ACTIONS(430), 1, - anon_sym_LPAREN, - ACTIONS(432), 1, - anon_sym_LBRACK, - ACTIONS(434), 1, - anon_sym_PIPE, - ACTIONS(436), 1, - anon_sym_DQUOTE, - ACTIONS(438), 1, - anon_sym_SQUOTE, - ACTIONS(440), 1, - aux_sym_integer_literal_token1, - ACTIONS(444), 1, - sym_float_literal, - STATE(10), 1, - sym_expression, - STATE(14), 1, - sym_integer_literal, - STATE(17), 1, - sym_primary_expression, - STATE(144), 1, - sym_unary_operator, - ACTIONS(446), 2, - anon_sym_true, - anon_sym_false, - STATE(31), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(442), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(18), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(16), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [8776] = 18, - ACTIONS(404), 1, - aux_sym_rust_path_token1, - ACTIONS(408), 1, - anon_sym_LPAREN, - ACTIONS(410), 1, - anon_sym_LBRACK, - ACTIONS(412), 1, - anon_sym_PIPE, - ACTIONS(414), 1, - anon_sym_DQUOTE, - ACTIONS(416), 1, - anon_sym_SQUOTE, - ACTIONS(418), 1, - aux_sym_integer_literal_token1, - ACTIONS(422), 1, - sym_float_literal, - STATE(43), 1, - sym_expression, - STATE(51), 1, - sym_integer_literal, - STATE(55), 1, - sym_primary_expression, - STATE(146), 1, - sym_unary_operator, - ACTIONS(424), 2, - anon_sym_true, - anon_sym_false, - STATE(76), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(420), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(56), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(53), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [8848] = 18, - ACTIONS(404), 1, - aux_sym_rust_path_token1, - ACTIONS(408), 1, - anon_sym_LPAREN, - ACTIONS(410), 1, - anon_sym_LBRACK, - ACTIONS(412), 1, - anon_sym_PIPE, - ACTIONS(414), 1, - anon_sym_DQUOTE, - ACTIONS(416), 1, - anon_sym_SQUOTE, - ACTIONS(418), 1, - aux_sym_integer_literal_token1, - ACTIONS(422), 1, - sym_float_literal, - STATE(44), 1, - sym_expression, - STATE(51), 1, - sym_integer_literal, - STATE(55), 1, - sym_primary_expression, - STATE(146), 1, - sym_unary_operator, - ACTIONS(424), 2, - anon_sym_true, - anon_sym_false, - STATE(76), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(420), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(56), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(53), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [8920] = 18, - ACTIONS(541), 1, - anon_sym_LT, - ACTIONS(543), 1, - anon_sym_ATif, - ACTIONS(545), 1, - anon_sym_ATfor, - ACTIONS(547), 1, - anon_sym_AT, - ACTIONS(549), 1, - anon_sym_ATlet, - ACTIONS(551), 1, - anon_sym_ATmatch, - ACTIONS(553), 1, - anon_sym_ATbreak, - ACTIONS(555), 1, - anon_sym_ATcontinue, - ACTIONS(557), 1, - anon_sym_LT_AT, - ACTIONS(563), 1, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - ACTIONS(588), 1, - anon_sym_RBRACE, - ACTIONS(559), 2, - sym_template_comment, - sym_html_comment, - STATE(150), 2, - sym_template_node, - aux_sym_content_block_repeat1, - STATE(414), 2, - sym_self_closing_function_tag, - sym_container_function_tag, - ACTIONS(561), 3, - sym_raw_block, - sym_escape_at, - sym_text_content, - STATE(412), 3, - sym_simple_expression, - sym_complex_expression, - sym_safe_expression, - STATE(411), 6, - sym_html_element, - sym_template_expression, - sym_template_control_flow, - sym_function_tag, - sym_comment, - sym_embedded_language, - STATE(413), 6, - sym_let_statement, - sym_if_statement, - sym_for_loop, - sym_match_statement, - sym_break_statement, - sym_continue_statement, - [8992] = 18, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(376), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_PIPE, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - STATE(132), 1, - sym_unary_operator, - STATE(213), 1, - sym_integer_literal, - STATE(235), 1, - sym_primary_expression, - STATE(379), 1, - sym_expression, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(230), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(237), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [9064] = 18, - ACTIONS(541), 1, - anon_sym_LT, - ACTIONS(543), 1, - anon_sym_ATif, - ACTIONS(545), 1, - anon_sym_ATfor, - ACTIONS(547), 1, - anon_sym_AT, - ACTIONS(549), 1, - anon_sym_ATlet, - ACTIONS(551), 1, - anon_sym_ATmatch, - ACTIONS(553), 1, - anon_sym_ATbreak, - ACTIONS(555), 1, - anon_sym_ATcontinue, - ACTIONS(557), 1, - anon_sym_LT_AT, - ACTIONS(563), 1, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - ACTIONS(590), 1, - anon_sym_RBRACE, - ACTIONS(559), 2, - sym_template_comment, - sym_html_comment, - STATE(180), 2, - sym_template_node, - aux_sym_content_block_repeat1, - STATE(414), 2, - sym_self_closing_function_tag, - sym_container_function_tag, - ACTIONS(561), 3, - sym_raw_block, - sym_escape_at, - sym_text_content, - STATE(412), 3, - sym_simple_expression, - sym_complex_expression, - sym_safe_expression, - STATE(411), 6, - sym_html_element, - sym_template_expression, - sym_template_control_flow, - sym_function_tag, - sym_comment, - sym_embedded_language, - STATE(413), 6, - sym_let_statement, - sym_if_statement, - sym_for_loop, - sym_match_statement, - sym_break_statement, - sym_continue_statement, - [9136] = 18, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(376), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_PIPE, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - STATE(132), 1, - sym_unary_operator, - STATE(213), 1, - sym_integer_literal, - STATE(235), 1, - sym_primary_expression, - STATE(291), 1, - sym_expression, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(230), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(237), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [9208] = 18, - ACTIONS(541), 1, - anon_sym_LT, - ACTIONS(543), 1, - anon_sym_ATif, - ACTIONS(545), 1, - anon_sym_ATfor, - ACTIONS(547), 1, - anon_sym_AT, - ACTIONS(549), 1, - anon_sym_ATlet, - ACTIONS(551), 1, - anon_sym_ATmatch, - ACTIONS(553), 1, - anon_sym_ATbreak, - ACTIONS(555), 1, - anon_sym_ATcontinue, - ACTIONS(557), 1, - anon_sym_LT_AT, - ACTIONS(563), 1, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - ACTIONS(592), 1, - anon_sym_RBRACE, - ACTIONS(559), 2, - sym_template_comment, - sym_html_comment, - STATE(153), 2, - sym_template_node, - aux_sym_content_block_repeat1, - STATE(414), 2, - sym_self_closing_function_tag, - sym_container_function_tag, - ACTIONS(561), 3, - sym_raw_block, - sym_escape_at, - sym_text_content, - STATE(412), 3, - sym_simple_expression, - sym_complex_expression, - sym_safe_expression, - STATE(411), 6, - sym_html_element, - sym_template_expression, - sym_template_control_flow, - sym_function_tag, - sym_comment, - sym_embedded_language, - STATE(413), 6, - sym_let_statement, - sym_if_statement, - sym_for_loop, - sym_match_statement, - sym_break_statement, - sym_continue_statement, - [9280] = 18, - ACTIONS(541), 1, - anon_sym_LT, - ACTIONS(543), 1, - anon_sym_ATif, - ACTIONS(545), 1, - anon_sym_ATfor, - ACTIONS(547), 1, - anon_sym_AT, - ACTIONS(549), 1, - anon_sym_ATlet, - ACTIONS(551), 1, - anon_sym_ATmatch, - ACTIONS(553), 1, - anon_sym_ATbreak, - ACTIONS(555), 1, - anon_sym_ATcontinue, - ACTIONS(557), 1, - anon_sym_LT_AT, - ACTIONS(563), 1, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - ACTIONS(594), 1, - anon_sym_RBRACE, - ACTIONS(559), 2, - sym_template_comment, - sym_html_comment, - STATE(180), 2, - sym_template_node, - aux_sym_content_block_repeat1, - STATE(414), 2, - sym_self_closing_function_tag, - sym_container_function_tag, - ACTIONS(561), 3, - sym_raw_block, - sym_escape_at, - sym_text_content, - STATE(412), 3, - sym_simple_expression, - sym_complex_expression, - sym_safe_expression, - STATE(411), 6, - sym_html_element, - sym_template_expression, - sym_template_control_flow, - sym_function_tag, - sym_comment, - sym_embedded_language, - STATE(413), 6, - sym_let_statement, - sym_if_statement, - sym_for_loop, - sym_match_statement, - sym_break_statement, - sym_continue_statement, - [9352] = 18, - ACTIONS(541), 1, - anon_sym_LT, - ACTIONS(543), 1, - anon_sym_ATif, - ACTIONS(545), 1, - anon_sym_ATfor, - ACTIONS(547), 1, - anon_sym_AT, - ACTIONS(549), 1, - anon_sym_ATlet, - ACTIONS(551), 1, - anon_sym_ATmatch, - ACTIONS(553), 1, - anon_sym_ATbreak, - ACTIONS(555), 1, - anon_sym_ATcontinue, - ACTIONS(557), 1, - anon_sym_LT_AT, - ACTIONS(563), 1, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - ACTIONS(596), 1, - anon_sym_RBRACE, - ACTIONS(559), 2, - sym_template_comment, - sym_html_comment, - STATE(155), 2, - sym_template_node, - aux_sym_content_block_repeat1, - STATE(414), 2, - sym_self_closing_function_tag, - sym_container_function_tag, - ACTIONS(561), 3, - sym_raw_block, - sym_escape_at, - sym_text_content, - STATE(412), 3, - sym_simple_expression, - sym_complex_expression, - sym_safe_expression, - STATE(411), 6, - sym_html_element, - sym_template_expression, - sym_template_control_flow, - sym_function_tag, - sym_comment, - sym_embedded_language, - STATE(413), 6, - sym_let_statement, - sym_if_statement, - sym_for_loop, - sym_match_statement, - sym_break_statement, - sym_continue_statement, - [9424] = 18, - ACTIONS(541), 1, - anon_sym_LT, - ACTIONS(543), 1, - anon_sym_ATif, - ACTIONS(545), 1, - anon_sym_ATfor, - ACTIONS(547), 1, - anon_sym_AT, - ACTIONS(549), 1, - anon_sym_ATlet, - ACTIONS(551), 1, - anon_sym_ATmatch, - ACTIONS(553), 1, - anon_sym_ATbreak, - ACTIONS(555), 1, - anon_sym_ATcontinue, - ACTIONS(557), 1, - anon_sym_LT_AT, - ACTIONS(563), 1, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - ACTIONS(598), 1, - anon_sym_RBRACE, - ACTIONS(559), 2, - sym_template_comment, - sym_html_comment, - STATE(180), 2, - sym_template_node, - aux_sym_content_block_repeat1, - STATE(414), 2, - sym_self_closing_function_tag, - sym_container_function_tag, - ACTIONS(561), 3, - sym_raw_block, - sym_escape_at, - sym_text_content, - STATE(412), 3, - sym_simple_expression, - sym_complex_expression, - sym_safe_expression, - STATE(411), 6, - sym_html_element, - sym_template_expression, - sym_template_control_flow, - sym_function_tag, - sym_comment, - sym_embedded_language, - STATE(413), 6, - sym_let_statement, - sym_if_statement, - sym_for_loop, - sym_match_statement, - sym_break_statement, - sym_continue_statement, - [9496] = 18, - ACTIONS(541), 1, - anon_sym_LT, - ACTIONS(543), 1, - anon_sym_ATif, - ACTIONS(545), 1, - anon_sym_ATfor, - ACTIONS(547), 1, - anon_sym_AT, - ACTIONS(549), 1, - anon_sym_ATlet, - ACTIONS(551), 1, - anon_sym_ATmatch, - ACTIONS(553), 1, - anon_sym_ATbreak, - ACTIONS(555), 1, - anon_sym_ATcontinue, - ACTIONS(557), 1, - anon_sym_LT_AT, - ACTIONS(563), 1, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - ACTIONS(600), 1, - anon_sym_RBRACE, - ACTIONS(559), 2, - sym_template_comment, - sym_html_comment, - STATE(157), 2, - sym_template_node, - aux_sym_content_block_repeat1, - STATE(414), 2, - sym_self_closing_function_tag, - sym_container_function_tag, - ACTIONS(561), 3, - sym_raw_block, - sym_escape_at, - sym_text_content, - STATE(412), 3, - sym_simple_expression, - sym_complex_expression, - sym_safe_expression, - STATE(411), 6, - sym_html_element, - sym_template_expression, - sym_template_control_flow, - sym_function_tag, - sym_comment, - sym_embedded_language, - STATE(413), 6, - sym_let_statement, - sym_if_statement, - sym_for_loop, - sym_match_statement, - sym_break_statement, - sym_continue_statement, - [9568] = 18, - ACTIONS(541), 1, - anon_sym_LT, - ACTIONS(543), 1, - anon_sym_ATif, - ACTIONS(545), 1, - anon_sym_ATfor, - ACTIONS(547), 1, - anon_sym_AT, - ACTIONS(549), 1, - anon_sym_ATlet, - ACTIONS(551), 1, - anon_sym_ATmatch, - ACTIONS(553), 1, - anon_sym_ATbreak, - ACTIONS(555), 1, - anon_sym_ATcontinue, - ACTIONS(557), 1, - anon_sym_LT_AT, - ACTIONS(563), 1, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - ACTIONS(602), 1, - anon_sym_RBRACE, - ACTIONS(559), 2, - sym_template_comment, - sym_html_comment, - STATE(180), 2, - sym_template_node, - aux_sym_content_block_repeat1, - STATE(414), 2, - sym_self_closing_function_tag, - sym_container_function_tag, - ACTIONS(561), 3, - sym_raw_block, - sym_escape_at, - sym_text_content, - STATE(412), 3, - sym_simple_expression, - sym_complex_expression, - sym_safe_expression, - STATE(411), 6, - sym_html_element, - sym_template_expression, - sym_template_control_flow, - sym_function_tag, - sym_comment, - sym_embedded_language, - STATE(413), 6, - sym_let_statement, - sym_if_statement, - sym_for_loop, - sym_match_statement, - sym_break_statement, - sym_continue_statement, - [9640] = 18, - ACTIONS(541), 1, - anon_sym_LT, - ACTIONS(543), 1, - anon_sym_ATif, - ACTIONS(545), 1, - anon_sym_ATfor, - ACTIONS(547), 1, - anon_sym_AT, - ACTIONS(549), 1, - anon_sym_ATlet, - ACTIONS(551), 1, - anon_sym_ATmatch, - ACTIONS(553), 1, - anon_sym_ATbreak, - ACTIONS(555), 1, - anon_sym_ATcontinue, - ACTIONS(557), 1, - anon_sym_LT_AT, - ACTIONS(563), 1, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - ACTIONS(604), 1, - anon_sym_RBRACE, - ACTIONS(559), 2, - sym_template_comment, - sym_html_comment, - STATE(159), 2, - sym_template_node, - aux_sym_content_block_repeat1, - STATE(414), 2, - sym_self_closing_function_tag, - sym_container_function_tag, - ACTIONS(561), 3, - sym_raw_block, - sym_escape_at, - sym_text_content, - STATE(412), 3, - sym_simple_expression, - sym_complex_expression, - sym_safe_expression, - STATE(411), 6, - sym_html_element, - sym_template_expression, - sym_template_control_flow, - sym_function_tag, - sym_comment, - sym_embedded_language, - STATE(413), 6, - sym_let_statement, - sym_if_statement, - sym_for_loop, - sym_match_statement, - sym_break_statement, - sym_continue_statement, - [9712] = 18, - ACTIONS(541), 1, - anon_sym_LT, - ACTIONS(543), 1, - anon_sym_ATif, - ACTIONS(545), 1, - anon_sym_ATfor, - ACTIONS(547), 1, - anon_sym_AT, - ACTIONS(549), 1, - anon_sym_ATlet, - ACTIONS(551), 1, - anon_sym_ATmatch, - ACTIONS(553), 1, - anon_sym_ATbreak, - ACTIONS(555), 1, - anon_sym_ATcontinue, - ACTIONS(557), 1, - anon_sym_LT_AT, - ACTIONS(563), 1, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - ACTIONS(606), 1, - anon_sym_RBRACE, - ACTIONS(559), 2, - sym_template_comment, - sym_html_comment, - STATE(180), 2, - sym_template_node, - aux_sym_content_block_repeat1, - STATE(414), 2, - sym_self_closing_function_tag, - sym_container_function_tag, - ACTIONS(561), 3, - sym_raw_block, - sym_escape_at, - sym_text_content, - STATE(412), 3, - sym_simple_expression, - sym_complex_expression, - sym_safe_expression, - STATE(411), 6, - sym_html_element, - sym_template_expression, - sym_template_control_flow, - sym_function_tag, - sym_comment, - sym_embedded_language, - STATE(413), 6, - sym_let_statement, - sym_if_statement, - sym_for_loop, - sym_match_statement, - sym_break_statement, - sym_continue_statement, - [9784] = 18, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(376), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_PIPE, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - STATE(132), 1, - sym_unary_operator, - STATE(213), 1, - sym_integer_literal, - STATE(235), 1, - sym_primary_expression, - STATE(398), 1, - sym_expression, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(230), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(237), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [9856] = 18, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(376), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_PIPE, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - STATE(132), 1, - sym_unary_operator, - STATE(213), 1, - sym_integer_literal, - STATE(235), 1, - sym_primary_expression, - STATE(373), 1, - sym_expression, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(230), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(237), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [9928] = 18, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(376), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_PIPE, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - STATE(132), 1, - sym_unary_operator, - STATE(213), 1, - sym_integer_literal, - STATE(235), 1, - sym_primary_expression, - STATE(374), 1, - sym_expression, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(230), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(237), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [10000] = 18, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(376), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_PIPE, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - STATE(132), 1, - sym_unary_operator, - STATE(213), 1, - sym_integer_literal, - STATE(235), 1, - sym_primary_expression, - STATE(353), 1, - sym_expression, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(230), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(237), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [10072] = 18, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(376), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_PIPE, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - STATE(132), 1, - sym_unary_operator, - STATE(213), 1, - sym_integer_literal, - STATE(235), 1, - sym_primary_expression, - STATE(377), 1, - sym_expression, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(230), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(237), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [10144] = 18, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(376), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_PIPE, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - STATE(132), 1, - sym_unary_operator, - STATE(213), 1, - sym_integer_literal, - STATE(235), 1, - sym_primary_expression, - STATE(355), 1, - sym_expression, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(230), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(237), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [10216] = 18, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(376), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_PIPE, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - STATE(132), 1, - sym_unary_operator, - STATE(213), 1, - sym_integer_literal, - STATE(235), 1, - sym_primary_expression, - STATE(357), 1, - sym_expression, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(230), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(237), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [10288] = 18, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(376), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_PIPE, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - STATE(132), 1, - sym_unary_operator, - STATE(213), 1, - sym_integer_literal, - STATE(235), 1, - sym_primary_expression, - STATE(381), 1, - sym_expression, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(230), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(237), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [10360] = 18, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(376), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_PIPE, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - STATE(132), 1, - sym_unary_operator, - STATE(213), 1, - sym_integer_literal, - STATE(235), 1, - sym_primary_expression, - STATE(383), 1, - sym_expression, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(230), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(237), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [10432] = 18, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(376), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_PIPE, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - STATE(132), 1, - sym_unary_operator, - STATE(213), 1, - sym_integer_literal, - STATE(235), 1, - sym_primary_expression, - STATE(359), 1, - sym_expression, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(230), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(237), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [10504] = 18, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(376), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_PIPE, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - STATE(132), 1, - sym_unary_operator, - STATE(213), 1, - sym_integer_literal, - STATE(235), 1, - sym_primary_expression, - STATE(384), 1, - sym_expression, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(230), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(237), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [10576] = 18, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(376), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_PIPE, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - STATE(132), 1, - sym_unary_operator, - STATE(213), 1, - sym_integer_literal, - STATE(235), 1, - sym_primary_expression, - STATE(385), 1, - sym_expression, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(230), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(237), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [10648] = 18, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(376), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_PIPE, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - STATE(132), 1, - sym_unary_operator, - STATE(213), 1, - sym_integer_literal, - STATE(235), 1, - sym_primary_expression, - STATE(386), 1, - sym_expression, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(230), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(237), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [10720] = 18, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(376), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_PIPE, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - STATE(132), 1, - sym_unary_operator, - STATE(213), 1, - sym_integer_literal, - STATE(235), 1, - sym_primary_expression, - STATE(361), 1, - sym_expression, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(230), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(237), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [10792] = 18, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(376), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_PIPE, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - STATE(132), 1, - sym_unary_operator, - STATE(213), 1, - sym_integer_literal, - STATE(235), 1, - sym_primary_expression, - STATE(388), 1, - sym_expression, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(230), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(237), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [10864] = 18, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(376), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_PIPE, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - STATE(132), 1, - sym_unary_operator, - STATE(213), 1, - sym_integer_literal, - STATE(235), 1, - sym_primary_expression, - STATE(390), 1, - sym_expression, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(230), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(237), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [10936] = 18, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(376), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_PIPE, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - STATE(132), 1, - sym_unary_operator, - STATE(213), 1, - sym_integer_literal, - STATE(235), 1, - sym_primary_expression, - STATE(392), 1, - sym_expression, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(230), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(237), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [11008] = 18, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(376), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_PIPE, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - STATE(132), 1, - sym_unary_operator, - STATE(213), 1, - sym_integer_literal, - STATE(235), 1, - sym_primary_expression, - STATE(396), 1, - sym_expression, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(230), 2, - sym_binary_expression, - sym_unary_expression, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - ACTIONS(378), 4, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(237), 8, - sym_rust_path, - sym_method_call, - sym_field_access, - sym_index_access, - sym_parenthesized_expression, - sym_array_literal, - sym_closure_expression, - sym_literal, - [11080] = 18, - ACTIONS(543), 1, - anon_sym_ATif, - ACTIONS(545), 1, - anon_sym_ATfor, - ACTIONS(547), 1, - anon_sym_AT, - ACTIONS(549), 1, - anon_sym_ATlet, - ACTIONS(551), 1, - anon_sym_ATmatch, - ACTIONS(553), 1, - anon_sym_ATbreak, - ACTIONS(555), 1, - anon_sym_ATcontinue, - ACTIONS(557), 1, - anon_sym_LT_AT, - ACTIONS(563), 1, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - ACTIONS(568), 1, - anon_sym_LT, - ACTIONS(608), 1, - anon_sym_LT_SLASH, - ACTIONS(559), 2, - sym_template_comment, - sym_html_comment, - STATE(183), 2, - sym_template_node, - aux_sym_content_block_repeat1, - STATE(414), 2, - sym_self_closing_function_tag, - sym_container_function_tag, - ACTIONS(561), 3, - sym_raw_block, - sym_escape_at, - sym_text_content, - STATE(412), 3, - sym_simple_expression, - sym_complex_expression, - sym_safe_expression, - STATE(411), 6, - sym_html_element, - sym_template_expression, - sym_template_control_flow, - sym_function_tag, - sym_comment, - sym_embedded_language, - STATE(413), 6, - sym_let_statement, - sym_if_statement, - sym_for_loop, - sym_match_statement, - sym_break_statement, - sym_continue_statement, - [11152] = 18, - ACTIONS(452), 1, - anon_sym_LT_SLASH_AT, - ACTIONS(541), 1, - anon_sym_LT, - ACTIONS(543), 1, - anon_sym_ATif, - ACTIONS(545), 1, - anon_sym_ATfor, - ACTIONS(547), 1, - anon_sym_AT, - ACTIONS(549), 1, - anon_sym_ATlet, - ACTIONS(551), 1, - anon_sym_ATmatch, - ACTIONS(553), 1, - anon_sym_ATbreak, - ACTIONS(555), 1, - anon_sym_ATcontinue, - ACTIONS(563), 1, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - ACTIONS(575), 1, - anon_sym_LT_AT, - ACTIONS(559), 2, - sym_template_comment, - sym_html_comment, - STATE(107), 2, - sym_template_node, - aux_sym_content_block_repeat1, - STATE(414), 2, - sym_self_closing_function_tag, - sym_container_function_tag, - ACTIONS(561), 3, - sym_raw_block, - sym_escape_at, - sym_text_content, - STATE(412), 3, - sym_simple_expression, - sym_complex_expression, - sym_safe_expression, - STATE(411), 6, - sym_html_element, - sym_template_expression, - sym_template_control_flow, - sym_function_tag, - sym_comment, - sym_embedded_language, - STATE(413), 6, - sym_let_statement, - sym_if_statement, - sym_for_loop, - sym_match_statement, - sym_break_statement, - sym_continue_statement, - [11224] = 18, - ACTIONS(498), 1, - anon_sym_LT, - ACTIONS(501), 1, - anon_sym_ATif, - ACTIONS(504), 1, - anon_sym_ATfor, - ACTIONS(507), 1, - anon_sym_AT, - ACTIONS(510), 1, - anon_sym_ATlet, - ACTIONS(513), 1, - anon_sym_ATmatch, - ACTIONS(516), 1, - anon_sym_ATbreak, - ACTIONS(519), 1, - anon_sym_ATcontinue, - ACTIONS(525), 1, - anon_sym_RBRACE, - ACTIONS(533), 1, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - ACTIONS(610), 1, - anon_sym_LT_AT, - ACTIONS(527), 2, - sym_template_comment, - sym_html_comment, - STATE(180), 2, - sym_template_node, - aux_sym_content_block_repeat1, - STATE(414), 2, - sym_self_closing_function_tag, - sym_container_function_tag, - ACTIONS(530), 3, - sym_raw_block, - sym_escape_at, - sym_text_content, - STATE(412), 3, - sym_simple_expression, - sym_complex_expression, - sym_safe_expression, - STATE(411), 6, - sym_html_element, - sym_template_expression, - sym_template_control_flow, - sym_function_tag, - sym_comment, - sym_embedded_language, - STATE(413), 6, - sym_let_statement, - sym_if_statement, - sym_for_loop, - sym_match_statement, - sym_break_statement, - sym_continue_statement, - [11296] = 18, - ACTIONS(543), 1, - anon_sym_ATif, - ACTIONS(545), 1, - anon_sym_ATfor, - ACTIONS(547), 1, - anon_sym_AT, - ACTIONS(549), 1, - anon_sym_ATlet, - ACTIONS(551), 1, - anon_sym_ATmatch, - ACTIONS(553), 1, - anon_sym_ATbreak, - ACTIONS(555), 1, - anon_sym_ATcontinue, - ACTIONS(557), 1, - anon_sym_LT_AT, - ACTIONS(563), 1, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - ACTIONS(568), 1, - anon_sym_LT, - ACTIONS(613), 1, - anon_sym_LT_SLASH, - ACTIONS(559), 2, - sym_template_comment, - sym_html_comment, - STATE(183), 2, - sym_template_node, - aux_sym_content_block_repeat1, - STATE(414), 2, - sym_self_closing_function_tag, - sym_container_function_tag, - ACTIONS(561), 3, - sym_raw_block, - sym_escape_at, - sym_text_content, - STATE(412), 3, - sym_simple_expression, - sym_complex_expression, - sym_safe_expression, - STATE(411), 6, - sym_html_element, - sym_template_expression, - sym_template_control_flow, - sym_function_tag, - sym_comment, - sym_embedded_language, - STATE(413), 6, - sym_let_statement, - sym_if_statement, - sym_for_loop, - sym_match_statement, - sym_break_statement, - sym_continue_statement, - [11368] = 18, - ACTIONS(541), 1, - anon_sym_LT, - ACTIONS(543), 1, - anon_sym_ATif, - ACTIONS(545), 1, - anon_sym_ATfor, - ACTIONS(547), 1, - anon_sym_AT, - ACTIONS(549), 1, - anon_sym_ATlet, - ACTIONS(551), 1, - anon_sym_ATmatch, - ACTIONS(553), 1, - anon_sym_ATbreak, - ACTIONS(555), 1, - anon_sym_ATcontinue, - ACTIONS(563), 1, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - ACTIONS(575), 1, - anon_sym_LT_AT, - ACTIONS(615), 1, - anon_sym_LT_SLASH_AT, - ACTIONS(559), 2, - sym_template_comment, - sym_html_comment, - STATE(107), 2, - sym_template_node, - aux_sym_content_block_repeat1, - STATE(414), 2, - sym_self_closing_function_tag, - sym_container_function_tag, - ACTIONS(561), 3, - sym_raw_block, - sym_escape_at, - sym_text_content, - STATE(412), 3, - sym_simple_expression, - sym_complex_expression, - sym_safe_expression, - STATE(411), 6, - sym_html_element, - sym_template_expression, - sym_template_control_flow, - sym_function_tag, - sym_comment, - sym_embedded_language, - STATE(413), 6, - sym_let_statement, - sym_if_statement, - sym_for_loop, - sym_match_statement, - sym_break_statement, - sym_continue_statement, - [11440] = 18, - ACTIONS(501), 1, - anon_sym_ATif, - ACTIONS(504), 1, - anon_sym_ATfor, - ACTIONS(507), 1, - anon_sym_AT, - ACTIONS(510), 1, - anon_sym_ATlet, - ACTIONS(513), 1, - anon_sym_ATmatch, - ACTIONS(516), 1, - anon_sym_ATbreak, - ACTIONS(519), 1, - anon_sym_ATcontinue, - ACTIONS(525), 1, - anon_sym_LT_SLASH, - ACTIONS(533), 1, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - ACTIONS(610), 1, - anon_sym_LT_AT, - ACTIONS(617), 1, - anon_sym_LT, - ACTIONS(527), 2, - sym_template_comment, - sym_html_comment, - STATE(183), 2, - sym_template_node, - aux_sym_content_block_repeat1, - STATE(414), 2, - sym_self_closing_function_tag, - sym_container_function_tag, - ACTIONS(530), 3, - sym_raw_block, - sym_escape_at, - sym_text_content, - STATE(412), 3, - sym_simple_expression, - sym_complex_expression, - sym_safe_expression, - STATE(411), 6, - sym_html_element, - sym_template_expression, - sym_template_control_flow, - sym_function_tag, - sym_comment, - sym_embedded_language, - STATE(413), 6, - sym_let_statement, - sym_if_statement, - sym_for_loop, - sym_match_statement, - sym_break_statement, - sym_continue_statement, - [11512] = 11, - ACTIONS(620), 1, - aux_sym_rust_path_token1, - ACTIONS(623), 1, - anon_sym_LPAREN, - ACTIONS(626), 1, - anon_sym_RPAREN, - ACTIONS(628), 1, - anon_sym_LBRACK, - ACTIONS(631), 1, - anon_sym_AMP, - STATE(184), 1, + STATE(8), 1, aux_sym_enum_variant_repeat1, - STATE(249), 1, + STATE(88), 1, sym_rust_path, - STATE(259), 1, - sym_rust_type, - STATE(261), 1, + STATE(118), 1, sym_type_expression, - STATE(260), 7, + STATE(158), 1, + sym_rust_type, + STATE(122), 11, + sym_closure_type, + sym_render_type, + sym_out_type, + sym_target_type, sym_primitive_type, sym_reference_type, sym_generic_type, @@ -16129,7 +8118,7 @@ static const uint16_t ts_small_parse_table[] = { sym_tuple_type, sym_array_type, sym_slice_type, - ACTIONS(634), 18, + ACTIONS(141), 18, anon_sym_i8, anon_sym_i16, anon_sym_i32, @@ -16148,72 +8137,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_str, anon_sym_String, - [11569] = 11, - ACTIONS(637), 1, + [575] = 13, + ACTIONS(127), 1, + anon_sym_AT, + ACTIONS(129), 1, aux_sym_rust_path_token1, - ACTIONS(639), 1, + ACTIONS(131), 1, anon_sym_LPAREN, - ACTIONS(641), 1, - anon_sym_RPAREN, - ACTIONS(643), 1, + ACTIONS(135), 1, anon_sym_LBRACK, - ACTIONS(645), 1, + ACTIONS(137), 1, anon_sym_AMP, - STATE(186), 1, + ACTIONS(139), 1, + anon_sym_PIPE, + ACTIONS(143), 1, + anon_sym_RPAREN, + STATE(9), 1, aux_sym_enum_variant_repeat1, - STATE(249), 1, + STATE(88), 1, sym_rust_path, - STATE(259), 1, - sym_rust_type, - STATE(261), 1, + STATE(118), 1, sym_type_expression, - STATE(260), 7, - sym_primitive_type, - sym_reference_type, - sym_generic_type, - sym_path_type, - sym_tuple_type, - sym_array_type, - sym_slice_type, - ACTIONS(647), 18, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - anon_sym_isize, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - anon_sym_str, - anon_sym_String, - [11626] = 11, - ACTIONS(637), 1, - aux_sym_rust_path_token1, - ACTIONS(639), 1, - anon_sym_LPAREN, - ACTIONS(643), 1, - anon_sym_LBRACK, - ACTIONS(645), 1, - anon_sym_AMP, - ACTIONS(649), 1, - anon_sym_RPAREN, - STATE(184), 1, - aux_sym_enum_variant_repeat1, - STATE(249), 1, - sym_rust_path, - STATE(259), 1, + STATE(158), 1, sym_rust_type, - STATE(261), 1, - sym_type_expression, - STATE(260), 7, + STATE(122), 11, + sym_closure_type, + sym_render_type, + sym_out_type, + sym_target_type, sym_primitive_type, sym_reference_type, sym_generic_type, @@ -16221,7 +8172,7 @@ static const uint16_t ts_small_parse_table[] = { sym_tuple_type, sym_array_type, sym_slice_type, - ACTIONS(647), 18, + ACTIONS(141), 18, anon_sym_i8, anon_sym_i16, anon_sym_i32, @@ -16240,106 +8191,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_str, anon_sym_String, - [11683] = 9, - ACTIONS(370), 1, + [642] = 12, + ACTIONS(23), 1, + anon_sym_AT, + ACTIONS(25), 1, aux_sym_rust_path_token1, - ACTIONS(651), 1, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(653), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(655), 1, + ACTIONS(33), 1, anon_sym_AMP, - STATE(473), 1, - sym_rust_path, - STATE(636), 1, - sym_type_expression, - STATE(638), 1, - sym_rust_type, - STATE(490), 7, - sym_primitive_type, - sym_reference_type, - sym_generic_type, - sym_path_type, - sym_tuple_type, - sym_array_type, - sym_slice_type, - ACTIONS(657), 18, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - anon_sym_isize, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - anon_sym_str, - anon_sym_String, - [11734] = 9, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(651), 1, - anon_sym_LPAREN, - ACTIONS(653), 1, - anon_sym_LBRACK, - ACTIONS(655), 1, - anon_sym_AMP, - ACTIONS(659), 1, - anon_sym_RPAREN, - STATE(473), 1, - sym_rust_path, - STATE(593), 1, - sym_rust_type, - STATE(490), 7, - sym_primitive_type, - sym_reference_type, - sym_generic_type, - sym_path_type, - sym_tuple_type, - sym_array_type, - sym_slice_type, - ACTIONS(657), 18, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - anon_sym_isize, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - anon_sym_str, - anon_sym_String, - [11785] = 9, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(651), 1, - anon_sym_LPAREN, - ACTIONS(653), 1, - anon_sym_LBRACK, - ACTIONS(655), 1, - anon_sym_AMP, - ACTIONS(661), 1, - anon_sym_RPAREN, - STATE(473), 1, + ACTIONS(41), 1, + sym_identifier, + ACTIONS(145), 1, + anon_sym_PIPE, + STATE(307), 1, sym_rust_path, STATE(586), 1, + sym_closure_param, + STATE(602), 1, sym_rust_type, - STATE(490), 7, + STATE(338), 11, + sym_closure_type, + sym_render_type, + sym_out_type, + sym_target_type, sym_primitive_type, sym_reference_type, sym_generic_type, @@ -16347,7 +8224,7 @@ static const uint16_t ts_small_parse_table[] = { sym_tuple_type, sym_array_type, sym_slice_type, - ACTIONS(657), 18, + ACTIONS(39), 18, anon_sym_i8, anon_sym_i16, anon_sym_i32, @@ -16366,22 +8243,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_str, anon_sym_String, - [11836] = 9, - ACTIONS(370), 1, + [706] = 12, + ACTIONS(23), 1, + anon_sym_AT, + ACTIONS(25), 1, aux_sym_rust_path_token1, - ACTIONS(651), 1, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(653), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(655), 1, + ACTIONS(33), 1, anon_sym_AMP, - ACTIONS(663), 1, - anon_sym_mut, - STATE(473), 1, + ACTIONS(41), 1, + sym_identifier, + ACTIONS(147), 1, + anon_sym_PIPE, + STATE(307), 1, sym_rust_path, - STATE(485), 1, + STATE(495), 1, + sym_closure_param, + STATE(602), 1, sym_rust_type, - STATE(490), 7, + STATE(338), 11, + sym_closure_type, + sym_render_type, + sym_out_type, + sym_target_type, sym_primitive_type, sym_reference_type, sym_generic_type, @@ -16389,7 +8276,7 @@ static const uint16_t ts_small_parse_table[] = { sym_tuple_type, sym_array_type, sym_slice_type, - ACTIONS(657), 18, + ACTIONS(39), 18, anon_sym_i8, anon_sym_i16, anon_sym_i32, @@ -16408,22 +8295,2096 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_str, anon_sym_String, - [11887] = 9, - ACTIONS(370), 1, + [770] = 12, + ACTIONS(23), 1, + anon_sym_AT, + ACTIONS(25), 1, aux_sym_rust_path_token1, - ACTIONS(651), 1, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(653), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(655), 1, + ACTIONS(33), 1, anon_sym_AMP, - STATE(473), 1, + ACTIONS(41), 1, + sym_identifier, + ACTIONS(149), 1, + anon_sym_PIPE, + STATE(307), 1, + sym_rust_path, + STATE(541), 1, + sym_closure_param, + STATE(602), 1, + sym_rust_type, + STATE(338), 11, + sym_closure_type, + sym_render_type, + sym_out_type, + sym_target_type, + sym_primitive_type, + sym_reference_type, + sym_generic_type, + sym_path_type, + sym_tuple_type, + sym_array_type, + sym_slice_type, + ACTIONS(39), 18, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [834] = 12, + ACTIONS(23), 1, + anon_sym_AT, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_AMP, + ACTIONS(41), 1, + sym_identifier, + ACTIONS(151), 1, + anon_sym_PIPE, + STATE(307), 1, + sym_rust_path, + STATE(581), 1, + sym_closure_param, + STATE(602), 1, + sym_rust_type, + STATE(338), 11, + sym_closure_type, + sym_render_type, + sym_out_type, + sym_target_type, + sym_primitive_type, + sym_reference_type, + sym_generic_type, + sym_path_type, + sym_tuple_type, + sym_array_type, + sym_slice_type, + ACTIONS(39), 18, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [898] = 12, + ACTIONS(23), 1, + anon_sym_AT, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_AMP, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(41), 1, + sym_identifier, + STATE(307), 1, + sym_rust_path, + STATE(583), 1, + sym_closure_param, + STATE(602), 1, + sym_rust_type, + STATE(338), 11, + sym_closure_type, + sym_render_type, + sym_out_type, + sym_target_type, + sym_primitive_type, + sym_reference_type, + sym_generic_type, + sym_path_type, + sym_tuple_type, + sym_array_type, + sym_slice_type, + ACTIONS(39), 18, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [962] = 11, + ACTIONS(23), 1, + anon_sym_AT, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(153), 1, + anon_sym_AMP, + ACTIONS(155), 1, + anon_sym_PIPE, + ACTIONS(157), 1, + anon_sym_mut, + STATE(307), 1, + sym_rust_path, + STATE(323), 1, + sym_rust_type, + STATE(338), 11, + sym_closure_type, + sym_render_type, + sym_out_type, + sym_target_type, + sym_primitive_type, + sym_reference_type, + sym_generic_type, + sym_path_type, + sym_tuple_type, + sym_array_type, + sym_slice_type, + ACTIONS(39), 18, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [1023] = 11, + ACTIONS(23), 1, + anon_sym_AT, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(159), 1, + anon_sym_RPAREN, + ACTIONS(161), 1, + anon_sym_AMP, + ACTIONS(163), 1, + anon_sym_PIPE, + STATE(307), 1, + sym_rust_path, + STATE(484), 1, + sym_rust_type, + STATE(338), 11, + sym_closure_type, + sym_render_type, + sym_out_type, + sym_target_type, + sym_primitive_type, + sym_reference_type, + sym_generic_type, + sym_path_type, + sym_tuple_type, + sym_array_type, + sym_slice_type, + ACTIONS(39), 18, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [1084] = 11, + ACTIONS(23), 1, + anon_sym_AT, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(161), 1, + anon_sym_AMP, + ACTIONS(163), 1, + anon_sym_PIPE, + ACTIONS(165), 1, + anon_sym_RPAREN, + STATE(307), 1, + sym_rust_path, + STATE(519), 1, + sym_rust_type, + STATE(338), 11, + sym_closure_type, + sym_render_type, + sym_out_type, + sym_target_type, + sym_primitive_type, + sym_reference_type, + sym_generic_type, + sym_path_type, + sym_tuple_type, + sym_array_type, + sym_slice_type, + ACTIONS(39), 18, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [1145] = 11, + ACTIONS(23), 1, + anon_sym_AT, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(161), 1, + anon_sym_AMP, + ACTIONS(163), 1, + anon_sym_PIPE, + ACTIONS(167), 1, + anon_sym_RPAREN, + STATE(307), 1, + sym_rust_path, + STATE(517), 1, + sym_rust_type, + STATE(338), 11, + sym_closure_type, + sym_render_type, + sym_out_type, + sym_target_type, + sym_primitive_type, + sym_reference_type, + sym_generic_type, + sym_path_type, + sym_tuple_type, + sym_array_type, + sym_slice_type, + ACTIONS(39), 18, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [1206] = 11, + ACTIONS(23), 1, + anon_sym_AT, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(161), 1, + anon_sym_AMP, + ACTIONS(163), 1, + anon_sym_PIPE, + ACTIONS(169), 1, + anon_sym_RPAREN, + STATE(307), 1, + sym_rust_path, + STATE(519), 1, + sym_rust_type, + STATE(338), 11, + sym_closure_type, + sym_render_type, + sym_out_type, + sym_target_type, + sym_primitive_type, + sym_reference_type, + sym_generic_type, + sym_path_type, + sym_tuple_type, + sym_array_type, + sym_slice_type, + ACTIONS(39), 18, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [1267] = 11, + ACTIONS(23), 1, + anon_sym_AT, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(153), 1, + anon_sym_AMP, + ACTIONS(155), 1, + anon_sym_PIPE, + STATE(307), 1, + sym_rust_path, + STATE(508), 1, + sym_type_expression, + STATE(523), 1, + sym_rust_type, + STATE(338), 11, + sym_closure_type, + sym_render_type, + sym_out_type, + sym_target_type, + sym_primitive_type, + sym_reference_type, + sym_generic_type, + sym_path_type, + sym_tuple_type, + sym_array_type, + sym_slice_type, + ACTIONS(39), 18, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [1328] = 11, + ACTIONS(23), 1, + anon_sym_AT, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(153), 1, + anon_sym_AMP, + ACTIONS(155), 1, + anon_sym_PIPE, + STATE(307), 1, + sym_rust_path, + STATE(522), 1, + sym_type_expression, + STATE(523), 1, + sym_rust_type, + STATE(338), 11, + sym_closure_type, + sym_render_type, + sym_out_type, + sym_target_type, + sym_primitive_type, + sym_reference_type, + sym_generic_type, + sym_path_type, + sym_tuple_type, + sym_array_type, + sym_slice_type, + ACTIONS(39), 18, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [1389] = 11, + ACTIONS(23), 1, + anon_sym_AT, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(161), 1, + anon_sym_AMP, + ACTIONS(163), 1, + anon_sym_PIPE, + ACTIONS(171), 1, + anon_sym_RPAREN, + STATE(307), 1, + sym_rust_path, + STATE(490), 1, + sym_rust_type, + STATE(338), 11, + sym_closure_type, + sym_render_type, + sym_out_type, + sym_target_type, + sym_primitive_type, + sym_reference_type, + sym_generic_type, + sym_path_type, + sym_tuple_type, + sym_array_type, + sym_slice_type, + ACTIONS(39), 18, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [1450] = 17, + ACTIONS(173), 1, + anon_sym_AT, + ACTIONS(178), 1, + anon_sym_LT, + ACTIONS(181), 1, + anon_sym_LT_SLASH, + ACTIONS(183), 1, + aux_sym_simple_expression_token1, + ACTIONS(186), 1, + anon_sym_LT_AT, + ACTIONS(189), 1, + sym_template_comment_1, + ACTIONS(192), 1, + sym_html_comment, + ACTIONS(195), 1, + sym_raw_block_1, + ACTIONS(198), 1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + STATE(250), 1, + sym_template_comment, + ACTIONS(176), 2, + anon_sym_RBRACE, + anon_sym_LT_SLASH_AT, + ACTIONS(201), 2, + sym_escape_at, + sym_text_content, + STATE(24), 2, + aux_sym__template_nodes, + sym_template_node, + STATE(270), 2, + sym_self_closing_function_tag, + sym_container_function_tag, + STATE(268), 6, + sym_let_statement, + sym_if_statement, + sym_for_loop, + sym_match_statement, + sym_break_statement, + sym_continue_statement, + STATE(258), 7, + sym_html_element, + sym_template_expression, + sym_template_control_flow, + sym_function_tag, + sym_comment, + sym_raw_block, + sym_embedded_language, + STATE(266), 7, + sym_out_ref, + sym_target_ref, + sym_simple_expression, + sym_complex_expression, + sym_safe_expression, + sym_format_expression, + sym_matches_expression, + [1523] = 11, + ACTIONS(23), 1, + anon_sym_AT, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(161), 1, + anon_sym_AMP, + ACTIONS(163), 1, + anon_sym_PIPE, + ACTIONS(204), 1, + anon_sym_RPAREN, + STATE(307), 1, + sym_rust_path, + STATE(542), 1, + sym_rust_type, + STATE(338), 11, + sym_closure_type, + sym_render_type, + sym_out_type, + sym_target_type, + sym_primitive_type, + sym_reference_type, + sym_generic_type, + sym_path_type, + sym_tuple_type, + sym_array_type, + sym_slice_type, + ACTIONS(39), 18, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [1584] = 11, + ACTIONS(23), 1, + anon_sym_AT, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(161), 1, + anon_sym_AMP, + ACTIONS(163), 1, + anon_sym_PIPE, + ACTIONS(206), 1, + anon_sym_RPAREN, + STATE(307), 1, + sym_rust_path, + STATE(539), 1, + sym_rust_type, + STATE(338), 11, + sym_closure_type, + sym_render_type, + sym_out_type, + sym_target_type, + sym_primitive_type, + sym_reference_type, + sym_generic_type, + sym_path_type, + sym_tuple_type, + sym_array_type, + sym_slice_type, + ACTIONS(39), 18, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [1645] = 11, + ACTIONS(23), 1, + anon_sym_AT, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(161), 1, + anon_sym_AMP, + ACTIONS(163), 1, + anon_sym_PIPE, + ACTIONS(208), 1, + anon_sym_RPAREN, + STATE(307), 1, + sym_rust_path, + STATE(519), 1, + sym_rust_type, + STATE(338), 11, + sym_closure_type, + sym_render_type, + sym_out_type, + sym_target_type, + sym_primitive_type, + sym_reference_type, + sym_generic_type, + sym_path_type, + sym_tuple_type, + sym_array_type, + sym_slice_type, + ACTIONS(39), 18, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [1706] = 11, + ACTIONS(23), 1, + anon_sym_AT, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(161), 1, + anon_sym_AMP, + ACTIONS(163), 1, + anon_sym_PIPE, + ACTIONS(210), 1, + anon_sym_RPAREN, + STATE(307), 1, + sym_rust_path, + STATE(519), 1, + sym_rust_type, + STATE(338), 11, + sym_closure_type, + sym_render_type, + sym_out_type, + sym_target_type, + sym_primitive_type, + sym_reference_type, + sym_generic_type, + sym_path_type, + sym_tuple_type, + sym_array_type, + sym_slice_type, + ACTIONS(39), 18, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [1767] = 11, + ACTIONS(127), 1, + anon_sym_AT, + ACTIONS(129), 1, + aux_sym_rust_path_token1, + ACTIONS(131), 1, + anon_sym_LPAREN, + ACTIONS(135), 1, + anon_sym_LBRACK, + ACTIONS(137), 1, + anon_sym_AMP, + ACTIONS(139), 1, + anon_sym_PIPE, + ACTIONS(212), 1, + anon_sym_mut, + STATE(88), 1, + sym_rust_path, + STATE(101), 1, + sym_rust_type, + STATE(122), 11, + sym_closure_type, + sym_render_type, + sym_out_type, + sym_target_type, + sym_primitive_type, + sym_reference_type, + sym_generic_type, + sym_path_type, + sym_tuple_type, + sym_array_type, + sym_slice_type, + ACTIONS(141), 18, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [1828] = 11, + ACTIONS(23), 1, + anon_sym_AT, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(161), 1, + anon_sym_AMP, + ACTIONS(163), 1, + anon_sym_PIPE, + ACTIONS(214), 1, + anon_sym_RPAREN, + STATE(307), 1, + sym_rust_path, + STATE(548), 1, + sym_rust_type, + STATE(338), 11, + sym_closure_type, + sym_render_type, + sym_out_type, + sym_target_type, + sym_primitive_type, + sym_reference_type, + sym_generic_type, + sym_path_type, + sym_tuple_type, + sym_array_type, + sym_slice_type, + ACTIONS(39), 18, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [1889] = 11, + ACTIONS(23), 1, + anon_sym_AT, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(161), 1, + anon_sym_AMP, + ACTIONS(163), 1, + anon_sym_PIPE, + ACTIONS(216), 1, + anon_sym_mut, + STATE(307), 1, + sym_rust_path, + STATE(323), 1, + sym_rust_type, + STATE(338), 11, + sym_closure_type, + sym_render_type, + sym_out_type, + sym_target_type, + sym_primitive_type, + sym_reference_type, + sym_generic_type, + sym_path_type, + sym_tuple_type, + sym_array_type, + sym_slice_type, + ACTIONS(39), 18, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [1950] = 11, + ACTIONS(23), 1, + anon_sym_AT, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_AMP, + ACTIONS(145), 1, + anon_sym_PIPE, + ACTIONS(218), 1, + anon_sym_mut, + STATE(307), 1, + sym_rust_path, + STATE(323), 1, + sym_rust_type, + STATE(338), 11, + sym_closure_type, + sym_render_type, + sym_out_type, + sym_target_type, + sym_primitive_type, + sym_reference_type, + sym_generic_type, + sym_path_type, + sym_tuple_type, + sym_array_type, + sym_slice_type, + ACTIONS(39), 18, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [2011] = 10, + ACTIONS(127), 1, + anon_sym_AT, + ACTIONS(129), 1, + aux_sym_rust_path_token1, + ACTIONS(131), 1, + anon_sym_LPAREN, + ACTIONS(135), 1, + anon_sym_LBRACK, + ACTIONS(137), 1, + anon_sym_AMP, + ACTIONS(139), 1, + anon_sym_PIPE, + STATE(88), 1, + sym_rust_path, + STATE(129), 1, + sym_rust_type, + STATE(122), 11, + sym_closure_type, + sym_render_type, + sym_out_type, + sym_target_type, + sym_primitive_type, + sym_reference_type, + sym_generic_type, + sym_path_type, + sym_tuple_type, + sym_array_type, + sym_slice_type, + ACTIONS(141), 18, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [2069] = 10, + ACTIONS(23), 1, + anon_sym_AT, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(153), 1, + anon_sym_AMP, + ACTIONS(155), 1, + anon_sym_PIPE, + STATE(307), 1, + sym_rust_path, + STATE(335), 1, + sym_rust_type, + STATE(338), 11, + sym_closure_type, + sym_render_type, + sym_out_type, + sym_target_type, + sym_primitive_type, + sym_reference_type, + sym_generic_type, + sym_path_type, + sym_tuple_type, + sym_array_type, + sym_slice_type, + ACTIONS(39), 18, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [2127] = 10, + ACTIONS(23), 1, + anon_sym_AT, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(161), 1, + anon_sym_AMP, + ACTIONS(163), 1, + anon_sym_PIPE, + STATE(307), 1, + sym_rust_path, + STATE(519), 1, + sym_rust_type, + STATE(338), 11, + sym_closure_type, + sym_render_type, + sym_out_type, + sym_target_type, + sym_primitive_type, + sym_reference_type, + sym_generic_type, + sym_path_type, + sym_tuple_type, + sym_array_type, + sym_slice_type, + ACTIONS(39), 18, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [2185] = 10, + ACTIONS(23), 1, + anon_sym_AT, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(161), 1, + anon_sym_AMP, + ACTIONS(163), 1, + anon_sym_PIPE, + STATE(307), 1, + sym_rust_path, + STATE(543), 1, + sym_rust_type, + STATE(338), 11, + sym_closure_type, + sym_render_type, + sym_out_type, + sym_target_type, + sym_primitive_type, + sym_reference_type, + sym_generic_type, + sym_path_type, + sym_tuple_type, + sym_array_type, + sym_slice_type, + ACTIONS(39), 18, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [2243] = 10, + ACTIONS(23), 1, + anon_sym_AT, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(153), 1, + anon_sym_AMP, + ACTIONS(155), 1, + anon_sym_PIPE, + STATE(307), 1, + sym_rust_path, + STATE(319), 1, + sym_rust_type, + STATE(338), 11, + sym_closure_type, + sym_render_type, + sym_out_type, + sym_target_type, + sym_primitive_type, + sym_reference_type, + sym_generic_type, + sym_path_type, + sym_tuple_type, + sym_array_type, + sym_slice_type, + ACTIONS(39), 18, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [2301] = 10, + ACTIONS(23), 1, + anon_sym_AT, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(153), 1, + anon_sym_AMP, + ACTIONS(155), 1, + anon_sym_PIPE, + STATE(307), 1, + sym_rust_path, + STATE(329), 1, + sym_rust_type, + STATE(338), 11, + sym_closure_type, + sym_render_type, + sym_out_type, + sym_target_type, + sym_primitive_type, + sym_reference_type, + sym_generic_type, + sym_path_type, + sym_tuple_type, + sym_array_type, + sym_slice_type, + ACTIONS(39), 18, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [2359] = 10, + ACTIONS(23), 1, + anon_sym_AT, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(161), 1, + anon_sym_AMP, + ACTIONS(163), 1, + anon_sym_PIPE, + STATE(307), 1, + sym_rust_path, + STATE(600), 1, + sym_rust_type, + STATE(338), 11, + sym_closure_type, + sym_render_type, + sym_out_type, + sym_target_type, + sym_primitive_type, + sym_reference_type, + sym_generic_type, + sym_path_type, + sym_tuple_type, + sym_array_type, + sym_slice_type, + ACTIONS(39), 18, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [2417] = 10, + ACTIONS(127), 1, + anon_sym_AT, + ACTIONS(129), 1, + aux_sym_rust_path_token1, + ACTIONS(131), 1, + anon_sym_LPAREN, + ACTIONS(135), 1, + anon_sym_LBRACK, + ACTIONS(137), 1, + anon_sym_AMP, + ACTIONS(139), 1, + anon_sym_PIPE, + STATE(88), 1, + sym_rust_path, + STATE(149), 1, + sym_rust_type, + STATE(122), 11, + sym_closure_type, + sym_render_type, + sym_out_type, + sym_target_type, + sym_primitive_type, + sym_reference_type, + sym_generic_type, + sym_path_type, + sym_tuple_type, + sym_array_type, + sym_slice_type, + ACTIONS(141), 18, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [2475] = 10, + ACTIONS(127), 1, + anon_sym_AT, + ACTIONS(129), 1, + aux_sym_rust_path_token1, + ACTIONS(131), 1, + anon_sym_LPAREN, + ACTIONS(135), 1, + anon_sym_LBRACK, + ACTIONS(137), 1, + anon_sym_AMP, + ACTIONS(139), 1, + anon_sym_PIPE, + STATE(88), 1, + sym_rust_path, + STATE(100), 1, + sym_rust_type, + STATE(122), 11, + sym_closure_type, + sym_render_type, + sym_out_type, + sym_target_type, + sym_primitive_type, + sym_reference_type, + sym_generic_type, + sym_path_type, + sym_tuple_type, + sym_array_type, + sym_slice_type, + ACTIONS(141), 18, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [2533] = 10, + ACTIONS(127), 1, + anon_sym_AT, + ACTIONS(129), 1, + aux_sym_rust_path_token1, + ACTIONS(131), 1, + anon_sym_LPAREN, + ACTIONS(135), 1, + anon_sym_LBRACK, + ACTIONS(137), 1, + anon_sym_AMP, + ACTIONS(139), 1, + anon_sym_PIPE, + STATE(88), 1, + sym_rust_path, + STATE(104), 1, + sym_rust_type, + STATE(122), 11, + sym_closure_type, + sym_render_type, + sym_out_type, + sym_target_type, + sym_primitive_type, + sym_reference_type, + sym_generic_type, + sym_path_type, + sym_tuple_type, + sym_array_type, + sym_slice_type, + ACTIONS(141), 18, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [2591] = 10, + ACTIONS(23), 1, + anon_sym_AT, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(153), 1, + anon_sym_AMP, + ACTIONS(155), 1, + anon_sym_PIPE, + STATE(307), 1, + sym_rust_path, + STATE(339), 1, + sym_rust_type, + STATE(338), 11, + sym_closure_type, + sym_render_type, + sym_out_type, + sym_target_type, + sym_primitive_type, + sym_reference_type, + sym_generic_type, + sym_path_type, + sym_tuple_type, + sym_array_type, + sym_slice_type, + ACTIONS(39), 18, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [2649] = 10, + ACTIONS(23), 1, + anon_sym_AT, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(161), 1, + anon_sym_AMP, + ACTIONS(163), 1, + anon_sym_PIPE, + STATE(307), 1, + sym_rust_path, + STATE(339), 1, + sym_rust_type, + STATE(338), 11, + sym_closure_type, + sym_render_type, + sym_out_type, + sym_target_type, + sym_primitive_type, + sym_reference_type, + sym_generic_type, + sym_path_type, + sym_tuple_type, + sym_array_type, + sym_slice_type, + ACTIONS(39), 18, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [2707] = 10, + ACTIONS(23), 1, + anon_sym_AT, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(161), 1, + anon_sym_AMP, + ACTIONS(163), 1, + anon_sym_PIPE, + STATE(307), 1, + sym_rust_path, + STATE(507), 1, + sym_rust_type, + STATE(338), 11, + sym_closure_type, + sym_render_type, + sym_out_type, + sym_target_type, + sym_primitive_type, + sym_reference_type, + sym_generic_type, + sym_path_type, + sym_tuple_type, + sym_array_type, + sym_slice_type, + ACTIONS(39), 18, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [2765] = 10, + ACTIONS(23), 1, + anon_sym_AT, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(161), 1, + anon_sym_AMP, + ACTIONS(163), 1, + anon_sym_PIPE, + STATE(307), 1, + sym_rust_path, + STATE(335), 1, + sym_rust_type, + STATE(338), 11, + sym_closure_type, + sym_render_type, + sym_out_type, + sym_target_type, + sym_primitive_type, + sym_reference_type, + sym_generic_type, + sym_path_type, + sym_tuple_type, + sym_array_type, + sym_slice_type, + ACTIONS(39), 18, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [2823] = 10, + ACTIONS(23), 1, + anon_sym_AT, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(161), 1, + anon_sym_AMP, + ACTIONS(163), 1, + anon_sym_PIPE, + STATE(307), 1, + sym_rust_path, + STATE(319), 1, + sym_rust_type, + STATE(338), 11, + sym_closure_type, + sym_render_type, + sym_out_type, + sym_target_type, + sym_primitive_type, + sym_reference_type, + sym_generic_type, + sym_path_type, + sym_tuple_type, + sym_array_type, + sym_slice_type, + ACTIONS(39), 18, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [2881] = 10, + ACTIONS(23), 1, + anon_sym_AT, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(161), 1, + anon_sym_AMP, + ACTIONS(163), 1, + anon_sym_PIPE, + STATE(307), 1, + sym_rust_path, + STATE(329), 1, + sym_rust_type, + STATE(338), 11, + sym_closure_type, + sym_render_type, + sym_out_type, + sym_target_type, + sym_primitive_type, + sym_reference_type, + sym_generic_type, + sym_path_type, + sym_tuple_type, + sym_array_type, + sym_slice_type, + ACTIONS(39), 18, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [2939] = 10, + ACTIONS(23), 1, + anon_sym_AT, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(161), 1, + anon_sym_AMP, + ACTIONS(163), 1, + anon_sym_PIPE, + STATE(307), 1, + sym_rust_path, + STATE(632), 1, + sym_rust_type, + STATE(338), 11, + sym_closure_type, + sym_render_type, + sym_out_type, + sym_target_type, + sym_primitive_type, + sym_reference_type, + sym_generic_type, + sym_path_type, + sym_tuple_type, + sym_array_type, + sym_slice_type, + ACTIONS(39), 18, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [2997] = 10, + ACTIONS(23), 1, + anon_sym_AT, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(161), 1, + anon_sym_AMP, + ACTIONS(163), 1, + anon_sym_PIPE, + STATE(307), 1, + sym_rust_path, + STATE(546), 1, + sym_rust_type, + STATE(338), 11, + sym_closure_type, + sym_render_type, + sym_out_type, + sym_target_type, + sym_primitive_type, + sym_reference_type, + sym_generic_type, + sym_path_type, + sym_tuple_type, + sym_array_type, + sym_slice_type, + ACTIONS(39), 18, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [3055] = 10, + ACTIONS(23), 1, + anon_sym_AT, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_AMP, + ACTIONS(145), 1, + anon_sym_PIPE, + STATE(307), 1, + sym_rust_path, + STATE(339), 1, + sym_rust_type, + STATE(338), 11, + sym_closure_type, + sym_render_type, + sym_out_type, + sym_target_type, + sym_primitive_type, + sym_reference_type, + sym_generic_type, + sym_path_type, + sym_tuple_type, + sym_array_type, + sym_slice_type, + ACTIONS(39), 18, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [3113] = 10, + ACTIONS(23), 1, + anon_sym_AT, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_AMP, + ACTIONS(145), 1, + anon_sym_PIPE, + STATE(307), 1, + sym_rust_path, + STATE(335), 1, + sym_rust_type, + STATE(338), 11, + sym_closure_type, + sym_render_type, + sym_out_type, + sym_target_type, + sym_primitive_type, + sym_reference_type, + sym_generic_type, + sym_path_type, + sym_tuple_type, + sym_array_type, + sym_slice_type, + ACTIONS(39), 18, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [3171] = 10, + ACTIONS(23), 1, + anon_sym_AT, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_AMP, + ACTIONS(145), 1, + anon_sym_PIPE, + STATE(307), 1, + sym_rust_path, + STATE(319), 1, + sym_rust_type, + STATE(338), 11, + sym_closure_type, + sym_render_type, + sym_out_type, + sym_target_type, + sym_primitive_type, + sym_reference_type, + sym_generic_type, + sym_path_type, + sym_tuple_type, + sym_array_type, + sym_slice_type, + ACTIONS(39), 18, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [3229] = 10, + ACTIONS(23), 1, + anon_sym_AT, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_AMP, + ACTIONS(145), 1, + anon_sym_PIPE, + STATE(307), 1, + sym_rust_path, + STATE(329), 1, + sym_rust_type, + STATE(338), 11, + sym_closure_type, + sym_render_type, + sym_out_type, + sym_target_type, + sym_primitive_type, + sym_reference_type, + sym_generic_type, + sym_path_type, + sym_tuple_type, + sym_array_type, + sym_slice_type, + ACTIONS(39), 18, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [3287] = 10, + ACTIONS(23), 1, + anon_sym_AT, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_AMP, + ACTIONS(145), 1, + anon_sym_PIPE, + STATE(307), 1, sym_rust_path, STATE(625), 1, - sym_type_expression, - STATE(638), 1, sym_rust_type, - STATE(490), 7, + STATE(338), 11, + sym_closure_type, + sym_render_type, + sym_out_type, + sym_target_type, sym_primitive_type, sym_reference_type, sym_generic_type, @@ -16431,7 +10392,7 @@ static const uint16_t ts_small_parse_table[] = { sym_tuple_type, sym_array_type, sym_slice_type, - ACTIONS(657), 18, + ACTIONS(39), 18, anon_sym_i8, anon_sym_i16, anon_sym_i32, @@ -16450,11136 +10411,11991 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_str, anon_sym_String, - [11938] = 9, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(651), 1, - anon_sym_LPAREN, - ACTIONS(653), 1, - anon_sym_LBRACK, - ACTIONS(655), 1, - anon_sym_AMP, - ACTIONS(665), 1, - anon_sym_RPAREN, - STATE(473), 1, - sym_rust_path, - STATE(586), 1, - sym_rust_type, - STATE(490), 7, - sym_primitive_type, - sym_reference_type, - sym_generic_type, - sym_path_type, - sym_tuple_type, - sym_array_type, - sym_slice_type, - ACTIONS(657), 18, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - anon_sym_isize, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - anon_sym_str, - anon_sym_String, - [11989] = 9, - ACTIONS(637), 1, - aux_sym_rust_path_token1, - ACTIONS(639), 1, - anon_sym_LPAREN, - ACTIONS(643), 1, - anon_sym_LBRACK, - ACTIONS(645), 1, - anon_sym_AMP, - ACTIONS(667), 1, - anon_sym_mut, - STATE(249), 1, - sym_rust_path, - STATE(266), 1, - sym_rust_type, - STATE(260), 7, - sym_primitive_type, - sym_reference_type, - sym_generic_type, - sym_path_type, - sym_tuple_type, - sym_array_type, - sym_slice_type, - ACTIONS(647), 18, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - anon_sym_isize, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - anon_sym_str, - anon_sym_String, - [12040] = 9, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(651), 1, - anon_sym_LPAREN, - ACTIONS(653), 1, - anon_sym_LBRACK, - ACTIONS(655), 1, - anon_sym_AMP, - ACTIONS(669), 1, - anon_sym_RPAREN, - STATE(473), 1, - sym_rust_path, - STATE(586), 1, - sym_rust_type, - STATE(490), 7, - sym_primitive_type, - sym_reference_type, - sym_generic_type, - sym_path_type, - sym_tuple_type, - sym_array_type, - sym_slice_type, - ACTIONS(657), 18, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - anon_sym_isize, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - anon_sym_str, - anon_sym_String, - [12091] = 9, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(651), 1, - anon_sym_LPAREN, - ACTIONS(653), 1, - anon_sym_LBRACK, - ACTIONS(655), 1, - anon_sym_AMP, - ACTIONS(671), 1, - anon_sym_RPAREN, - STATE(473), 1, - sym_rust_path, - STATE(611), 1, - sym_rust_type, - STATE(490), 7, - sym_primitive_type, - sym_reference_type, - sym_generic_type, - sym_path_type, - sym_tuple_type, - sym_array_type, - sym_slice_type, - ACTIONS(657), 18, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - anon_sym_isize, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - anon_sym_str, - anon_sym_String, - [12142] = 9, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(651), 1, - anon_sym_LPAREN, - ACTIONS(653), 1, - anon_sym_LBRACK, - ACTIONS(655), 1, - anon_sym_AMP, - ACTIONS(673), 1, - anon_sym_RPAREN, - STATE(473), 1, - sym_rust_path, - STATE(586), 1, - sym_rust_type, - STATE(490), 7, - sym_primitive_type, - sym_reference_type, - sym_generic_type, - sym_path_type, - sym_tuple_type, - sym_array_type, - sym_slice_type, - ACTIONS(657), 18, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - anon_sym_isize, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - anon_sym_str, - anon_sym_String, - [12193] = 9, - ACTIONS(637), 1, - aux_sym_rust_path_token1, - ACTIONS(651), 1, - anon_sym_LPAREN, - ACTIONS(653), 1, - anon_sym_LBRACK, - ACTIONS(675), 1, - anon_sym_AMP, - ACTIONS(677), 1, - anon_sym_mut, - STATE(473), 1, - sym_rust_path, - STATE(485), 1, - sym_rust_type, - STATE(490), 7, - sym_primitive_type, - sym_reference_type, - sym_generic_type, - sym_path_type, - sym_tuple_type, - sym_array_type, - sym_slice_type, - ACTIONS(657), 18, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - anon_sym_isize, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - anon_sym_str, - anon_sym_String, - [12244] = 8, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(651), 1, - anon_sym_LPAREN, - ACTIONS(653), 1, - anon_sym_LBRACK, - ACTIONS(655), 1, - anon_sym_AMP, - STATE(473), 1, - sym_rust_path, - STATE(658), 1, - sym_rust_type, - STATE(490), 7, - sym_primitive_type, - sym_reference_type, - sym_generic_type, - sym_path_type, - sym_tuple_type, - sym_array_type, - sym_slice_type, - ACTIONS(657), 18, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - anon_sym_isize, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - anon_sym_str, - anon_sym_String, - [12292] = 8, - ACTIONS(637), 1, - aux_sym_rust_path_token1, - ACTIONS(651), 1, - anon_sym_LPAREN, - ACTIONS(653), 1, - anon_sym_LBRACK, - ACTIONS(675), 1, - anon_sym_AMP, - STATE(473), 1, - sym_rust_path, - STATE(613), 1, - sym_rust_type, - STATE(490), 7, - sym_primitive_type, - sym_reference_type, - sym_generic_type, - sym_path_type, - sym_tuple_type, - sym_array_type, - sym_slice_type, - ACTIONS(657), 18, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - anon_sym_isize, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - anon_sym_str, - anon_sym_String, - [12340] = 8, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(651), 1, - anon_sym_LPAREN, - ACTIONS(653), 1, - anon_sym_LBRACK, - ACTIONS(655), 1, - anon_sym_AMP, - STATE(473), 1, - sym_rust_path, - STATE(489), 1, - sym_rust_type, - STATE(490), 7, - sym_primitive_type, - sym_reference_type, - sym_generic_type, - sym_path_type, - sym_tuple_type, - sym_array_type, - sym_slice_type, - ACTIONS(657), 18, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - anon_sym_isize, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - anon_sym_str, - anon_sym_String, - [12388] = 8, - ACTIONS(637), 1, - aux_sym_rust_path_token1, - ACTIONS(651), 1, - anon_sym_LPAREN, - ACTIONS(653), 1, - anon_sym_LBRACK, - ACTIONS(675), 1, - anon_sym_AMP, - STATE(473), 1, - sym_rust_path, - STATE(622), 1, - sym_rust_type, - STATE(490), 7, - sym_primitive_type, - sym_reference_type, - sym_generic_type, - sym_path_type, - sym_tuple_type, - sym_array_type, - sym_slice_type, - ACTIONS(657), 18, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - anon_sym_isize, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - anon_sym_str, - anon_sym_String, - [12436] = 8, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(651), 1, - anon_sym_LPAREN, - ACTIONS(653), 1, - anon_sym_LBRACK, - ACTIONS(655), 1, - anon_sym_AMP, - STATE(473), 1, - sym_rust_path, - STATE(603), 1, - sym_rust_type, - STATE(490), 7, - sym_primitive_type, - sym_reference_type, - sym_generic_type, - sym_path_type, - sym_tuple_type, - sym_array_type, - sym_slice_type, - ACTIONS(657), 18, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - anon_sym_isize, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - anon_sym_str, - anon_sym_String, - [12484] = 8, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(651), 1, - anon_sym_LPAREN, - ACTIONS(653), 1, - anon_sym_LBRACK, - ACTIONS(655), 1, - anon_sym_AMP, - STATE(473), 1, - sym_rust_path, - STATE(586), 1, - sym_rust_type, - STATE(490), 7, - sym_primitive_type, - sym_reference_type, - sym_generic_type, - sym_path_type, - sym_tuple_type, - sym_array_type, - sym_slice_type, - ACTIONS(657), 18, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - anon_sym_isize, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - anon_sym_str, - anon_sym_String, - [12532] = 8, - ACTIONS(637), 1, - aux_sym_rust_path_token1, - ACTIONS(651), 1, - anon_sym_LPAREN, - ACTIONS(653), 1, - anon_sym_LBRACK, - ACTIONS(675), 1, - anon_sym_AMP, - STATE(473), 1, - sym_rust_path, - STATE(586), 1, - sym_rust_type, - STATE(490), 7, - sym_primitive_type, - sym_reference_type, - sym_generic_type, - sym_path_type, - sym_tuple_type, - sym_array_type, - sym_slice_type, - ACTIONS(657), 18, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - anon_sym_isize, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - anon_sym_str, - anon_sym_String, - [12580] = 8, - ACTIONS(637), 1, - aux_sym_rust_path_token1, - ACTIONS(639), 1, - anon_sym_LPAREN, - ACTIONS(643), 1, - anon_sym_LBRACK, - ACTIONS(645), 1, - anon_sym_AMP, - STATE(249), 1, - sym_rust_path, - STATE(269), 1, - sym_rust_type, - STATE(260), 7, - sym_primitive_type, - sym_reference_type, - sym_generic_type, - sym_path_type, - sym_tuple_type, - sym_array_type, - sym_slice_type, - ACTIONS(647), 18, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - anon_sym_isize, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - anon_sym_str, - anon_sym_String, - [12628] = 8, - ACTIONS(370), 1, - aux_sym_rust_path_token1, - ACTIONS(651), 1, - anon_sym_LPAREN, - ACTIONS(653), 1, - anon_sym_LBRACK, - ACTIONS(655), 1, - anon_sym_AMP, - STATE(473), 1, - sym_rust_path, - STATE(643), 1, - sym_rust_type, - STATE(490), 7, - sym_primitive_type, - sym_reference_type, - sym_generic_type, - sym_path_type, - sym_tuple_type, - sym_array_type, - sym_slice_type, - ACTIONS(657), 18, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - anon_sym_isize, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - anon_sym_str, - anon_sym_String, - [12676] = 8, - ACTIONS(637), 1, - aux_sym_rust_path_token1, - ACTIONS(651), 1, - anon_sym_LPAREN, - ACTIONS(653), 1, - anon_sym_LBRACK, - ACTIONS(675), 1, - anon_sym_AMP, - STATE(473), 1, - sym_rust_path, - STATE(489), 1, - sym_rust_type, - STATE(490), 7, - sym_primitive_type, - sym_reference_type, - sym_generic_type, - sym_path_type, - sym_tuple_type, - sym_array_type, - sym_slice_type, - ACTIONS(657), 18, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - anon_sym_isize, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - anon_sym_str, - anon_sym_String, - [12724] = 2, - ACTIONS(318), 5, + [3345] = 16, + ACTIONS(7), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(316), 25, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SLASH, - anon_sym_in, - anon_sym_DOT, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [12759] = 2, - ACTIONS(310), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(308), 25, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SLASH, - anon_sym_in, - anon_sym_DOT, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [12794] = 2, - ACTIONS(330), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(328), 24, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SLASH, - anon_sym_in, - anon_sym_DOT, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [12828] = 2, - ACTIONS(282), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(280), 24, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SLASH, - anon_sym_in, - anon_sym_DOT, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [12862] = 2, - ACTIONS(306), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(304), 24, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SLASH, - anon_sym_in, - anon_sym_DOT, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [12896] = 2, - ACTIONS(286), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(284), 24, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SLASH, - anon_sym_in, - anon_sym_DOT, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [12930] = 2, - ACTIONS(290), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(288), 24, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SLASH, - anon_sym_in, - anon_sym_DOT, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [12964] = 2, - ACTIONS(346), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(344), 24, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SLASH, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_identifier, - [12998] = 17, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - ACTIONS(679), 1, - aux_sym_rust_path_token1, - ACTIONS(681), 1, - anon_sym_RBRACE, - ACTIONS(683), 1, - anon_sym_LPAREN, - ACTIONS(685), 1, - sym_wildcard_pattern, - ACTIONS(687), 1, - sym_identifier, - STATE(213), 1, - sym_integer_literal, - STATE(646), 1, - sym_pattern, - STATE(761), 1, - sym_rust_path, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(220), 2, - sym_match_arm, - aux_sym_match_statement_repeat1, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(525), 4, - sym_identifier_pattern, - sym_struct_pattern, - sym_tuple_pattern, - sym_literal, - [13060] = 17, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - ACTIONS(679), 1, - aux_sym_rust_path_token1, - ACTIONS(683), 1, - anon_sym_LPAREN, - ACTIONS(685), 1, - sym_wildcard_pattern, - ACTIONS(687), 1, - sym_identifier, - ACTIONS(689), 1, - anon_sym_RBRACE, - STATE(213), 1, - sym_integer_literal, - STATE(646), 1, - sym_pattern, - STATE(761), 1, - sym_rust_path, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(224), 2, - sym_match_arm, - aux_sym_match_statement_repeat1, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(525), 4, - sym_identifier_pattern, - sym_struct_pattern, - sym_tuple_pattern, - sym_literal, - [13122] = 3, - STATE(116), 1, - sym_binary_operator, - ACTIONS(96), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(94), 22, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SLASH, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [13156] = 3, - STATE(116), 1, - sym_binary_operator, - ACTIONS(198), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(196), 22, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SLASH, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [13190] = 17, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - ACTIONS(679), 1, - aux_sym_rust_path_token1, - ACTIONS(683), 1, - anon_sym_LPAREN, - ACTIONS(685), 1, - sym_wildcard_pattern, - ACTIONS(687), 1, - sym_identifier, - ACTIONS(691), 1, - anon_sym_RBRACE, - STATE(213), 1, - sym_integer_literal, - STATE(646), 1, - sym_pattern, - STATE(761), 1, - sym_rust_path, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(224), 2, - sym_match_arm, - aux_sym_match_statement_repeat1, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(525), 4, - sym_identifier_pattern, - sym_struct_pattern, - sym_tuple_pattern, - sym_literal, - [13252] = 3, - ACTIONS(693), 1, - anon_sym_LPAREN, - ACTIONS(150), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(146), 22, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SLASH, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [13286] = 4, - STATE(116), 1, - sym_binary_operator, - ACTIONS(140), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(152), 8, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_EQ_GT, - ACTIONS(142), 14, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [13322] = 17, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - ACTIONS(679), 1, - aux_sym_rust_path_token1, - ACTIONS(683), 1, - anon_sym_LPAREN, - ACTIONS(685), 1, - sym_wildcard_pattern, - ACTIONS(687), 1, - sym_identifier, - ACTIONS(695), 1, - anon_sym_RBRACE, - STATE(213), 1, - sym_integer_literal, - STATE(646), 1, - sym_pattern, - STATE(761), 1, - sym_rust_path, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(217), 2, - sym_match_arm, - aux_sym_match_statement_repeat1, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(525), 4, - sym_identifier_pattern, - sym_struct_pattern, - sym_tuple_pattern, - sym_literal, - [13384] = 17, - ACTIONS(697), 1, - aux_sym_rust_path_token1, - ACTIONS(700), 1, - anon_sym_RBRACE, - ACTIONS(702), 1, - anon_sym_LPAREN, - ACTIONS(705), 1, - sym_wildcard_pattern, - ACTIONS(708), 1, - anon_sym_DQUOTE, - ACTIONS(711), 1, - anon_sym_SQUOTE, - ACTIONS(714), 1, - aux_sym_integer_literal_token1, - ACTIONS(720), 1, - sym_float_literal, - ACTIONS(726), 1, - sym_identifier, - STATE(213), 1, - sym_integer_literal, - STATE(646), 1, - sym_pattern, - STATE(761), 1, - sym_rust_path, - ACTIONS(723), 2, - anon_sym_true, - anon_sym_false, - STATE(224), 2, - sym_match_arm, - aux_sym_match_statement_repeat1, - ACTIONS(717), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(525), 4, - sym_identifier_pattern, - sym_struct_pattern, - sym_tuple_pattern, - sym_literal, - [13446] = 4, - STATE(116), 1, - sym_binary_operator, - ACTIONS(140), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(138), 8, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_EQ_GT, - ACTIONS(142), 14, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [13482] = 2, - ACTIONS(314), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(312), 22, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SLASH, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [13513] = 2, - ACTIONS(344), 7, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - ACTIONS(346), 19, - aux_sym_rust_path_token1, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - anon_sym_isize, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - anon_sym_str, - anon_sym_String, - [13544] = 2, - ACTIONS(354), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(352), 22, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SLASH, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [13575] = 2, - ACTIONS(334), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(332), 22, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SLASH, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [13606] = 2, - ACTIONS(300), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(296), 22, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SLASH, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [13637] = 2, - ACTIONS(350), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(348), 22, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SLASH, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [13668] = 2, - ACTIONS(154), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(152), 22, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SLASH, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [13699] = 2, - ACTIONS(338), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(336), 22, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SLASH, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [13730] = 2, - ACTIONS(322), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(320), 22, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SLASH, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [13761] = 4, - ACTIONS(729), 1, - anon_sym_LBRACK, - ACTIONS(731), 1, - anon_sym_DOT, - ACTIONS(300), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(296), 20, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SLASH, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [13796] = 2, - ACTIONS(342), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(340), 22, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SLASH, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [13827] = 2, - ACTIONS(294), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(292), 22, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SLASH, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [13858] = 2, - ACTIONS(326), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(324), 22, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SLASH, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [13889] = 2, - ACTIONS(144), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(138), 22, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SLASH, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [13920] = 16, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - ACTIONS(679), 1, - aux_sym_rust_path_token1, - ACTIONS(683), 1, - anon_sym_LPAREN, - ACTIONS(685), 1, - sym_wildcard_pattern, - ACTIONS(687), 1, - sym_identifier, - ACTIONS(733), 1, - anon_sym_RPAREN, - STATE(213), 1, - sym_integer_literal, - STATE(645), 1, - sym_pattern, - STATE(761), 1, - sym_rust_path, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(525), 4, - sym_identifier_pattern, - sym_struct_pattern, - sym_tuple_pattern, - sym_literal, - [13978] = 16, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - ACTIONS(679), 1, - aux_sym_rust_path_token1, - ACTIONS(683), 1, - anon_sym_LPAREN, - ACTIONS(685), 1, - sym_wildcard_pattern, - ACTIONS(687), 1, - sym_identifier, - ACTIONS(735), 1, - anon_sym_RPAREN, - STATE(213), 1, - sym_integer_literal, - STATE(645), 1, - sym_pattern, - STATE(761), 1, - sym_rust_path, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(525), 4, - sym_identifier_pattern, - sym_struct_pattern, - sym_tuple_pattern, - sym_literal, - [14036] = 16, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - ACTIONS(679), 1, - aux_sym_rust_path_token1, - ACTIONS(683), 1, - anon_sym_LPAREN, - ACTIONS(685), 1, - sym_wildcard_pattern, - ACTIONS(687), 1, - sym_identifier, - ACTIONS(737), 1, - anon_sym_RPAREN, - STATE(213), 1, - sym_integer_literal, - STATE(645), 1, - sym_pattern, - STATE(761), 1, - sym_rust_path, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(525), 4, - sym_identifier_pattern, - sym_struct_pattern, - sym_tuple_pattern, - sym_literal, - [14094] = 6, - ACTIONS(741), 1, - anon_sym_LPAREN, - ACTIONS(744), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, - anon_sym_DOT, - STATE(243), 1, - aux_sym_expression_path_repeat1, - ACTIONS(747), 3, - anon_sym_LT, - anon_sym_AT, - sym_text_content, - ACTIONS(739), 18, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [14132] = 5, - ACTIONS(756), 1, - anon_sym_else, - STATE(339), 1, - sym_else_branch, - STATE(246), 2, - sym_else_if_branch, - aux_sym_if_statement_repeat1, - ACTIONS(754), 3, - anon_sym_LT, - anon_sym_AT, - sym_text_content, - ACTIONS(752), 18, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [14168] = 6, - ACTIONS(760), 1, - anon_sym_LPAREN, - ACTIONS(762), 1, - anon_sym_LBRACK, - ACTIONS(766), 1, - anon_sym_DOT, - STATE(243), 1, - aux_sym_expression_path_repeat1, - ACTIONS(764), 3, - anon_sym_LT, - anon_sym_AT, - sym_text_content, - ACTIONS(758), 18, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [14206] = 5, - ACTIONS(756), 1, - anon_sym_else, - STATE(363), 1, - sym_else_branch, - STATE(276), 2, - sym_else_if_branch, - aux_sym_if_statement_repeat1, - ACTIONS(770), 3, - anon_sym_LT, - anon_sym_AT, - sym_text_content, - ACTIONS(768), 18, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [14242] = 5, - ACTIONS(756), 1, - anon_sym_else, - STATE(311), 1, - sym_else_branch, - STATE(250), 2, - sym_else_if_branch, - aux_sym_if_statement_repeat1, - ACTIONS(774), 3, - anon_sym_LT, - anon_sym_AT, - sym_text_content, - ACTIONS(772), 18, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [14278] = 6, - ACTIONS(760), 1, - anon_sym_LPAREN, - ACTIONS(762), 1, - anon_sym_LBRACK, - ACTIONS(766), 1, - anon_sym_DOT, - STATE(245), 1, - aux_sym_expression_path_repeat1, - ACTIONS(778), 3, - anon_sym_LT, - anon_sym_AT, - sym_text_content, - ACTIONS(776), 18, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [14316] = 3, - ACTIONS(784), 1, - anon_sym_LT, - ACTIONS(782), 5, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(780), 19, - aux_sym_rust_path_token1, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - anon_sym_isize, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - anon_sym_str, - anon_sym_String, - [14348] = 5, - ACTIONS(756), 1, - anon_sym_else, - STATE(317), 1, - sym_else_branch, - STATE(276), 2, - sym_else_if_branch, - aux_sym_if_statement_repeat1, - ACTIONS(788), 3, - anon_sym_LT, - anon_sym_AT, - sym_text_content, - ACTIONS(786), 18, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [14384] = 16, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - ACTIONS(679), 1, - aux_sym_rust_path_token1, - ACTIONS(683), 1, - anon_sym_LPAREN, - ACTIONS(685), 1, - sym_wildcard_pattern, - ACTIONS(687), 1, - sym_identifier, - ACTIONS(790), 1, - anon_sym_RPAREN, - STATE(213), 1, - sym_integer_literal, - STATE(645), 1, - sym_pattern, - STATE(761), 1, - sym_rust_path, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(525), 4, - sym_identifier_pattern, - sym_struct_pattern, - sym_tuple_pattern, - sym_literal, - [14442] = 15, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - ACTIONS(679), 1, - aux_sym_rust_path_token1, - ACTIONS(683), 1, - anon_sym_LPAREN, - ACTIONS(685), 1, - sym_wildcard_pattern, - ACTIONS(687), 1, - sym_identifier, - STATE(213), 1, - sym_integer_literal, - STATE(730), 1, - sym_pattern, - STATE(761), 1, - sym_rust_path, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(525), 4, - sym_identifier_pattern, - sym_struct_pattern, - sym_tuple_pattern, - sym_literal, - [14497] = 15, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - ACTIONS(679), 1, - aux_sym_rust_path_token1, - ACTIONS(683), 1, - anon_sym_LPAREN, - ACTIONS(685), 1, - sym_wildcard_pattern, - ACTIONS(687), 1, - sym_identifier, - STATE(213), 1, - sym_integer_literal, - STATE(761), 1, - sym_rust_path, - STATE(780), 1, - sym_pattern, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(525), 4, - sym_identifier_pattern, - sym_struct_pattern, - sym_tuple_pattern, - sym_literal, - [14552] = 15, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - ACTIONS(679), 1, - aux_sym_rust_path_token1, - ACTIONS(683), 1, - anon_sym_LPAREN, - ACTIONS(685), 1, - sym_wildcard_pattern, - ACTIONS(687), 1, - sym_identifier, - STATE(213), 1, - sym_integer_literal, - STATE(592), 1, - sym_pattern, - STATE(761), 1, - sym_rust_path, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(525), 4, - sym_identifier_pattern, - sym_struct_pattern, - sym_tuple_pattern, - sym_literal, - [14607] = 2, - ACTIONS(794), 3, - anon_sym_LT, - anon_sym_AT, - sym_text_content, - ACTIONS(792), 21, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_DOT, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [14636] = 2, - ACTIONS(798), 5, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(796), 19, - aux_sym_rust_path_token1, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - anon_sym_isize, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - anon_sym_str, - anon_sym_String, - [14665] = 15, - ACTIONS(679), 1, - aux_sym_rust_path_token1, - ACTIONS(800), 1, - anon_sym_LPAREN, - ACTIONS(802), 1, - sym_wildcard_pattern, - ACTIONS(804), 1, - anon_sym_DQUOTE, - ACTIONS(806), 1, - anon_sym_SQUOTE, - ACTIONS(808), 1, - aux_sym_integer_literal_token1, - ACTIONS(812), 1, - sym_float_literal, - ACTIONS(816), 1, - sym_identifier, - STATE(561), 1, - sym_pattern, - STATE(567), 1, - sym_integer_literal, - STATE(733), 1, - sym_rust_path, - ACTIONS(814), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(810), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - STATE(572), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(575), 4, - sym_identifier_pattern, - sym_struct_pattern, - sym_tuple_pattern, - sym_literal, - [14720] = 15, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - ACTIONS(679), 1, - aux_sym_rust_path_token1, - ACTIONS(683), 1, - anon_sym_LPAREN, - ACTIONS(685), 1, - sym_wildcard_pattern, - ACTIONS(687), 1, - sym_identifier, - STATE(213), 1, - sym_integer_literal, - STATE(600), 1, - sym_pattern, - STATE(761), 1, - sym_rust_path, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(525), 4, - sym_identifier_pattern, - sym_struct_pattern, - sym_tuple_pattern, - sym_literal, - [14775] = 2, - ACTIONS(820), 5, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(818), 19, - aux_sym_rust_path_token1, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - anon_sym_isize, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - anon_sym_str, - anon_sym_String, - [14804] = 2, - ACTIONS(824), 5, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(822), 19, - aux_sym_rust_path_token1, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - anon_sym_isize, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - anon_sym_str, - anon_sym_String, - [14833] = 3, - ACTIONS(828), 1, - anon_sym_COMMA, - ACTIONS(830), 4, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(826), 19, - aux_sym_rust_path_token1, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - anon_sym_isize, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - anon_sym_str, - anon_sym_String, - [14864] = 2, - ACTIONS(747), 3, - anon_sym_LT, - anon_sym_AT, - sym_text_content, - ACTIONS(739), 21, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_DOT, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [14893] = 15, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - ACTIONS(679), 1, - aux_sym_rust_path_token1, - ACTIONS(683), 1, - anon_sym_LPAREN, - ACTIONS(685), 1, - sym_wildcard_pattern, - ACTIONS(687), 1, - sym_identifier, - STATE(213), 1, - sym_integer_literal, - STATE(761), 1, - sym_rust_path, - STATE(763), 1, - sym_pattern, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(525), 4, - sym_identifier_pattern, - sym_struct_pattern, - sym_tuple_pattern, - sym_literal, - [14948] = 15, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - ACTIONS(679), 1, - aux_sym_rust_path_token1, - ACTIONS(683), 1, - anon_sym_LPAREN, - ACTIONS(685), 1, - sym_wildcard_pattern, - ACTIONS(687), 1, - sym_identifier, - STATE(213), 1, - sym_integer_literal, - STATE(645), 1, - sym_pattern, - STATE(761), 1, - sym_rust_path, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(525), 4, - sym_identifier_pattern, - sym_struct_pattern, - sym_tuple_pattern, - sym_literal, - [15003] = 2, - ACTIONS(834), 5, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(832), 19, - aux_sym_rust_path_token1, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - anon_sym_isize, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - anon_sym_str, - anon_sym_String, - [15032] = 2, - ACTIONS(838), 5, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(836), 19, - aux_sym_rust_path_token1, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - anon_sym_isize, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - anon_sym_str, - anon_sym_String, - [15061] = 2, - ACTIONS(842), 5, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(840), 19, - aux_sym_rust_path_token1, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - anon_sym_isize, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - anon_sym_str, - anon_sym_String, - [15090] = 2, - ACTIONS(846), 5, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(844), 19, - aux_sym_rust_path_token1, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - anon_sym_isize, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - anon_sym_str, - anon_sym_String, - [15119] = 2, - ACTIONS(850), 5, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(848), 19, - aux_sym_rust_path_token1, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - anon_sym_isize, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - anon_sym_str, - anon_sym_String, - [15148] = 2, - ACTIONS(854), 5, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(852), 19, - aux_sym_rust_path_token1, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - anon_sym_isize, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - anon_sym_str, - anon_sym_String, - [15177] = 2, - ACTIONS(858), 5, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(856), 19, - aux_sym_rust_path_token1, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - anon_sym_isize, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - anon_sym_str, - anon_sym_String, - [15206] = 2, - ACTIONS(862), 5, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(860), 19, - aux_sym_rust_path_token1, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - anon_sym_isize, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - anon_sym_str, - anon_sym_String, - [15235] = 15, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - ACTIONS(679), 1, - aux_sym_rust_path_token1, - ACTIONS(683), 1, - anon_sym_LPAREN, - ACTIONS(685), 1, - sym_wildcard_pattern, - ACTIONS(687), 1, - sym_identifier, - STATE(213), 1, - sym_integer_literal, - STATE(734), 1, - sym_pattern, - STATE(761), 1, - sym_rust_path, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(525), 4, - sym_identifier_pattern, - sym_struct_pattern, - sym_tuple_pattern, - sym_literal, - [15290] = 2, - ACTIONS(866), 5, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(864), 19, - aux_sym_rust_path_token1, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - anon_sym_isize, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - anon_sym_str, - anon_sym_String, - [15319] = 2, - ACTIONS(870), 5, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(868), 19, - aux_sym_rust_path_token1, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - anon_sym_isize, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - anon_sym_str, - anon_sym_String, - [15348] = 4, - ACTIONS(876), 1, - anon_sym_else, - STATE(276), 2, - sym_else_if_branch, - aux_sym_if_statement_repeat1, - ACTIONS(874), 3, - anon_sym_LT, - anon_sym_AT, - sym_text_content, - ACTIONS(872), 18, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [15381] = 15, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - ACTIONS(679), 1, - aux_sym_rust_path_token1, - ACTIONS(683), 1, - anon_sym_LPAREN, - ACTIONS(685), 1, - sym_wildcard_pattern, - ACTIONS(687), 1, - sym_identifier, - STATE(213), 1, - sym_integer_literal, - STATE(725), 1, - sym_pattern, - STATE(761), 1, - sym_rust_path, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(525), 4, - sym_identifier_pattern, - sym_struct_pattern, - sym_tuple_pattern, - sym_literal, - [15436] = 15, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - ACTIONS(679), 1, - aux_sym_rust_path_token1, - ACTIONS(683), 1, - anon_sym_LPAREN, - ACTIONS(685), 1, - sym_wildcard_pattern, - ACTIONS(687), 1, - sym_identifier, - STATE(213), 1, - sym_integer_literal, - STATE(761), 1, - sym_rust_path, - STATE(773), 1, - sym_pattern, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - STATE(525), 4, - sym_identifier_pattern, - sym_struct_pattern, - sym_tuple_pattern, - sym_literal, - [15491] = 4, - ACTIONS(881), 1, - anon_sym_COLON, - ACTIONS(885), 1, - anon_sym_SEMI, - ACTIONS(883), 3, - anon_sym_LT, - anon_sym_AT, - sym_text_content, - ACTIONS(879), 18, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [15523] = 2, - ACTIONS(346), 3, - anon_sym_LT, - anon_sym_AT, - sym_text_content, - ACTIONS(344), 20, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_as, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_LBRACE, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [15551] = 2, - ACTIONS(626), 4, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(887), 19, - aux_sym_rust_path_token1, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i128, - anon_sym_isize, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u128, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_char, - anon_sym_str, - anon_sym_String, - [15579] = 4, - ACTIONS(891), 1, - anon_sym_COLON, - ACTIONS(895), 1, - anon_sym_SEMI, - ACTIONS(893), 3, - anon_sym_LT, - anon_sym_AT, - sym_text_content, - ACTIONS(889), 18, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [15611] = 6, - ACTIONS(897), 1, - anon_sym_LPAREN, - ACTIONS(899), 1, - anon_sym_LBRACK, - ACTIONS(901), 1, - anon_sym_DOT, - STATE(285), 1, - aux_sym_expression_path_repeat1, - ACTIONS(778), 4, - anon_sym_LT, - anon_sym_LT_SLASH, - anon_sym_AT, - sym_text_content, - ACTIONS(776), 14, - anon_sym_RBRACE, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [15646] = 6, - ACTIONS(903), 1, - anon_sym_COMMA, - ACTIONS(905), 1, - anon_sym_RBRACK, - STATE(116), 1, - sym_binary_operator, - STATE(624), 1, - aux_sym_array_literal_repeat1, - ACTIONS(140), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(142), 14, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [15681] = 6, - ACTIONS(897), 1, - anon_sym_LPAREN, - ACTIONS(899), 1, - anon_sym_LBRACK, - ACTIONS(901), 1, - anon_sym_DOT, - STATE(290), 1, - aux_sym_expression_path_repeat1, - ACTIONS(764), 4, - anon_sym_LT, - anon_sym_LT_SLASH, - anon_sym_AT, - sym_text_content, - ACTIONS(758), 14, - anon_sym_RBRACE, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [15716] = 5, - ACTIONS(907), 1, - anon_sym_else, - STATE(408), 1, - sym_else_branch, - STATE(330), 2, - sym_else_if_branch, - aux_sym_if_statement_repeat1, - ACTIONS(788), 4, - anon_sym_LT, - anon_sym_LT_SLASH, - anon_sym_AT, - sym_text_content, - ACTIONS(786), 14, - anon_sym_RBRACE, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [15749] = 6, - ACTIONS(909), 1, - anon_sym_COMMA, - ACTIONS(911), 1, - anon_sym_RPAREN, - STATE(116), 1, - sym_binary_operator, - STATE(630), 1, - aux_sym_array_literal_repeat1, - ACTIONS(140), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(142), 14, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [15784] = 5, - ACTIONS(907), 1, - anon_sym_else, - STATE(439), 1, - sym_else_branch, - STATE(298), 2, - sym_else_if_branch, - aux_sym_if_statement_repeat1, - ACTIONS(754), 4, - anon_sym_LT, - anon_sym_LT_SLASH, - anon_sym_AT, - sym_text_content, - ACTIONS(752), 14, - anon_sym_RBRACE, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [15817] = 2, - ACTIONS(358), 3, - anon_sym_LT, - anon_sym_AT, - sym_text_content, - ACTIONS(356), 19, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_else, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [15844] = 6, - ACTIONS(913), 1, - anon_sym_LPAREN, - ACTIONS(916), 1, - anon_sym_LBRACK, - ACTIONS(919), 1, - anon_sym_DOT, - STATE(290), 1, - aux_sym_expression_path_repeat1, - ACTIONS(747), 4, - anon_sym_LT, - anon_sym_LT_SLASH, - anon_sym_AT, - sym_text_content, - ACTIONS(739), 14, - anon_sym_RBRACE, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [15879] = 4, - STATE(116), 1, - sym_binary_operator, - ACTIONS(922), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(140), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(142), 14, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [15910] = 6, - ACTIONS(924), 1, - anon_sym_COMMA, - ACTIONS(926), 1, - anon_sym_RBRACK, - STATE(116), 1, - sym_binary_operator, - STATE(604), 1, - aux_sym_array_literal_repeat1, - ACTIONS(140), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(142), 14, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [15945] = 2, - ACTIONS(930), 3, - anon_sym_LT, - anon_sym_AT, - sym_text_content, - ACTIONS(928), 19, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_else, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [15972] = 3, - ACTIONS(936), 1, - anon_sym_SEMI, - ACTIONS(934), 3, - anon_sym_LT, - anon_sym_AT, - sym_text_content, - ACTIONS(932), 18, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [16001] = 5, - ACTIONS(907), 1, - anon_sym_else, - STATE(438), 1, - sym_else_branch, - STATE(286), 2, - sym_else_if_branch, - aux_sym_if_statement_repeat1, - ACTIONS(774), 4, - anon_sym_LT, - anon_sym_LT_SLASH, - anon_sym_AT, - sym_text_content, - ACTIONS(772), 14, - anon_sym_RBRACE, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [16034] = 2, - ACTIONS(940), 3, - anon_sym_LT, - anon_sym_AT, - sym_text_content, - ACTIONS(938), 19, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_else, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [16061] = 3, - ACTIONS(944), 1, - anon_sym_as, - ACTIONS(946), 3, - anon_sym_LT, - anon_sym_AT, - sym_text_content, - ACTIONS(942), 18, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [16090] = 5, - ACTIONS(907), 1, - anon_sym_else, - STATE(430), 1, - sym_else_branch, - STATE(330), 2, - sym_else_if_branch, - aux_sym_if_statement_repeat1, - ACTIONS(770), 4, - anon_sym_LT, - anon_sym_LT_SLASH, - anon_sym_AT, - sym_text_content, - ACTIONS(768), 14, - anon_sym_RBRACE, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [16123] = 3, - ACTIONS(952), 1, - anon_sym_SEMI, - ACTIONS(950), 3, - anon_sym_LT, - anon_sym_AT, - sym_text_content, - ACTIONS(948), 18, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [16152] = 6, - ACTIONS(954), 1, - anon_sym_COMMA, - ACTIONS(956), 1, - anon_sym_RBRACK, - STATE(116), 1, - sym_binary_operator, - STATE(609), 1, - aux_sym_array_literal_repeat1, - ACTIONS(140), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(142), 14, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [16187] = 2, - ACTIONS(362), 3, - anon_sym_LT, - anon_sym_AT, - sym_text_content, - ACTIONS(360), 19, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_else, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [16214] = 2, - ACTIONS(362), 2, - anon_sym_LT, - anon_sym_AT, - ACTIONS(360), 19, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [16240] = 2, - ACTIONS(960), 2, - anon_sym_LT, - anon_sym_AT, - ACTIONS(958), 19, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [16266] = 5, - ACTIONS(962), 1, - anon_sym_LBRACE, - STATE(116), 1, - sym_binary_operator, - STATE(296), 1, - sym_content_block, - ACTIONS(140), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(142), 14, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [16298] = 2, - ACTIONS(966), 2, - anon_sym_LT, - anon_sym_AT, - ACTIONS(964), 19, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [16324] = 2, - ACTIONS(970), 2, - anon_sym_LT, - anon_sym_AT, - ACTIONS(968), 19, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [16350] = 2, - ACTIONS(974), 2, - anon_sym_LT, - anon_sym_AT, - ACTIONS(972), 19, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [16376] = 2, - ACTIONS(978), 2, - anon_sym_LT, - anon_sym_AT, - ACTIONS(976), 19, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [16402] = 2, - ACTIONS(982), 2, - anon_sym_LT, - anon_sym_AT, - ACTIONS(980), 19, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [16428] = 13, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - ACTIONS(683), 1, - anon_sym_LPAREN, - ACTIONS(687), 1, - sym_identifier, - ACTIONS(984), 1, - sym_wildcard_pattern, - STATE(213), 1, - sym_integer_literal, - STATE(785), 1, - sym_simple_pattern, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - STATE(718), 3, - sym_identifier_pattern, - sym_tuple_pattern, - sym_literal, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - [16476] = 2, - ACTIONS(788), 2, - anon_sym_LT, - anon_sym_AT, - ACTIONS(786), 19, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [16502] = 2, - ACTIONS(988), 2, - anon_sym_LT, - anon_sym_AT, - ACTIONS(986), 19, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [16528] = 2, - ACTIONS(992), 2, - anon_sym_LT, - anon_sym_AT, - ACTIONS(990), 19, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [16554] = 2, - ACTIONS(996), 2, - anon_sym_LT, - anon_sym_AT, - ACTIONS(994), 19, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [16580] = 2, - ACTIONS(1000), 2, - anon_sym_LT, - anon_sym_AT, - ACTIONS(998), 19, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [16606] = 4, - STATE(116), 1, - sym_binary_operator, - ACTIONS(1002), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(140), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(142), 14, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [16636] = 2, - ACTIONS(1006), 2, - anon_sym_LT, - anon_sym_AT, - ACTIONS(1004), 19, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [16662] = 2, - ACTIONS(1010), 2, - anon_sym_LT, - anon_sym_AT, - ACTIONS(1008), 19, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [16688] = 5, - ACTIONS(962), 1, - anon_sym_LBRACE, - STATE(116), 1, - sym_binary_operator, - STATE(293), 1, - sym_content_block, - ACTIONS(140), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(142), 14, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [16720] = 2, - ACTIONS(1014), 2, - anon_sym_LT, - anon_sym_AT, - ACTIONS(1012), 19, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [16746] = 2, - ACTIONS(1018), 2, - anon_sym_LT, - anon_sym_AT, - ACTIONS(1016), 19, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [16772] = 2, - ACTIONS(1022), 2, - anon_sym_LT, - anon_sym_AT, - ACTIONS(1020), 19, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [16798] = 5, - ACTIONS(962), 1, - anon_sym_LBRACE, - STATE(116), 1, - sym_binary_operator, - STATE(244), 1, - sym_content_block, - ACTIONS(140), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(142), 14, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [16830] = 2, - ACTIONS(1026), 2, - anon_sym_LT, - anon_sym_AT, - ACTIONS(1024), 19, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [16856] = 2, - ACTIONS(1030), 2, - anon_sym_LT, - anon_sym_AT, - ACTIONS(1028), 19, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [16882] = 2, - ACTIONS(358), 2, - anon_sym_LT, - anon_sym_AT, - ACTIONS(356), 19, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [16908] = 2, - ACTIONS(747), 4, - anon_sym_LT, - anon_sym_LT_SLASH, - anon_sym_AT, - sym_text_content, - ACTIONS(739), 17, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_DOT, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [16934] = 2, - ACTIONS(1034), 2, - anon_sym_LT, - anon_sym_AT, - ACTIONS(1032), 19, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [16960] = 2, - ACTIONS(1036), 2, - anon_sym_LT, - anon_sym_AT, - ACTIONS(240), 19, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [16986] = 4, - ACTIONS(1038), 1, - anon_sym_else, - STATE(330), 2, - sym_else_if_branch, - aux_sym_if_statement_repeat1, - ACTIONS(874), 4, - anon_sym_LT, - anon_sym_LT_SLASH, - anon_sym_AT, - sym_text_content, - ACTIONS(872), 14, - anon_sym_RBRACE, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [17016] = 2, - ACTIONS(794), 4, - anon_sym_LT, - anon_sym_LT_SLASH, - anon_sym_AT, - sym_text_content, - ACTIONS(792), 17, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_DOT, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [17042] = 2, - ACTIONS(1043), 2, - anon_sym_LT, - anon_sym_AT, - ACTIONS(1041), 19, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [17068] = 2, - ACTIONS(1047), 2, - anon_sym_LT, - anon_sym_AT, - ACTIONS(1045), 19, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [17094] = 2, - ACTIONS(1051), 2, - anon_sym_LT, - anon_sym_AT, - ACTIONS(1049), 19, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [17120] = 2, - ACTIONS(1055), 2, - anon_sym_LT, - anon_sym_AT, - ACTIONS(1053), 19, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [17146] = 2, - ACTIONS(1059), 2, - anon_sym_LT, - anon_sym_AT, - ACTIONS(1057), 19, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [17172] = 2, - ACTIONS(1063), 2, - anon_sym_LT, - anon_sym_AT, - ACTIONS(1061), 19, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [17198] = 2, - ACTIONS(1067), 2, - anon_sym_LT, - anon_sym_AT, - ACTIONS(1065), 19, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [17224] = 2, - ACTIONS(770), 2, - anon_sym_LT, - anon_sym_AT, - ACTIONS(768), 19, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [17250] = 5, - ACTIONS(1069), 1, - anon_sym_LBRACE, - STATE(116), 1, - sym_binary_operator, - STATE(365), 1, - sym_content_block, - ACTIONS(140), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(142), 14, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [17282] = 2, - ACTIONS(1073), 2, - anon_sym_LT, - anon_sym_AT, - ACTIONS(1071), 19, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [17308] = 5, - ACTIONS(1075), 1, - anon_sym_COMMA, - ACTIONS(1077), 1, - anon_sym_RPAREN, - STATE(116), 1, - sym_binary_operator, - ACTIONS(140), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(142), 14, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [17340] = 2, - ACTIONS(1081), 2, - anon_sym_LT, - anon_sym_AT, - ACTIONS(1079), 19, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [17366] = 2, - ACTIONS(1085), 2, - anon_sym_LT, - anon_sym_AT, - ACTIONS(1083), 19, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [17392] = 2, - ACTIONS(1089), 2, - anon_sym_LT, - anon_sym_AT, - ACTIONS(1087), 19, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [17418] = 2, - ACTIONS(1093), 2, - anon_sym_LT, - anon_sym_AT, - ACTIONS(1091), 19, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [17444] = 2, - ACTIONS(1097), 2, - anon_sym_LT, - anon_sym_AT, - ACTIONS(1095), 19, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [17470] = 2, - ACTIONS(450), 2, - anon_sym_LT, - anon_sym_AT, - ACTIONS(98), 19, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [17496] = 2, - ACTIONS(1101), 2, - anon_sym_LT, - anon_sym_AT, - ACTIONS(1099), 19, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [17522] = 2, - ACTIONS(1105), 2, - anon_sym_LT, - anon_sym_AT, - ACTIONS(1103), 19, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [17548] = 5, - ACTIONS(1107), 1, - anon_sym_LBRACE, - STATE(116), 1, - sym_binary_operator, - STATE(288), 1, - sym_content_block, - ACTIONS(140), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(142), 14, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [17580] = 2, - ACTIONS(1111), 2, - anon_sym_LT, - anon_sym_AT, - ACTIONS(1109), 19, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [17606] = 5, - ACTIONS(1113), 1, - anon_sym_LBRACE, - STATE(116), 1, - sym_binary_operator, - STATE(431), 1, - sym_content_block, - ACTIONS(140), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(142), 14, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [17638] = 5, - ACTIONS(1115), 1, - anon_sym_COMMA, - ACTIONS(1117), 1, - anon_sym_RPAREN, - STATE(116), 1, - sym_binary_operator, - ACTIONS(140), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(142), 14, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [17670] = 5, - ACTIONS(1107), 1, - anon_sym_LBRACE, - STATE(116), 1, - sym_binary_operator, - STATE(295), 1, - sym_content_block, - ACTIONS(140), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(142), 14, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [17702] = 5, - ACTIONS(1107), 1, - anon_sym_LBRACE, - STATE(116), 1, - sym_binary_operator, - STATE(403), 1, - sym_content_block, - ACTIONS(140), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(142), 14, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [17734] = 5, - ACTIONS(1113), 1, - anon_sym_LBRACE, - STATE(116), 1, - sym_binary_operator, - STATE(435), 1, - sym_content_block, - ACTIONS(140), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(142), 14, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [17766] = 2, - ACTIONS(1121), 2, - anon_sym_LT, - anon_sym_AT, - ACTIONS(1119), 19, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [17792] = 5, - ACTIONS(1107), 1, - anon_sym_LBRACE, - STATE(116), 1, - sym_binary_operator, - STATE(404), 1, - sym_content_block, - ACTIONS(140), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(142), 14, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [17824] = 5, - ACTIONS(962), 1, - anon_sym_LBRACE, - STATE(116), 1, - sym_binary_operator, - STATE(247), 1, - sym_content_block, - ACTIONS(140), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(142), 14, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [17856] = 5, - ACTIONS(1123), 1, - anon_sym_COMMA, - ACTIONS(1125), 1, - anon_sym_RPAREN, - STATE(116), 1, - sym_binary_operator, - ACTIONS(140), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(142), 14, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [17888] = 2, - ACTIONS(1129), 2, - anon_sym_LT, - anon_sym_AT, - ACTIONS(1127), 19, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [17914] = 2, - ACTIONS(1133), 2, - anon_sym_LT, - anon_sym_AT, - ACTIONS(1131), 19, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [17940] = 13, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - ACTIONS(683), 1, - anon_sym_LPAREN, - ACTIONS(984), 1, - sym_wildcard_pattern, - ACTIONS(1135), 1, - sym_identifier, - STATE(213), 1, - sym_integer_literal, - STATE(786), 1, - sym_simple_pattern, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - STATE(718), 3, - sym_identifier_pattern, - sym_tuple_pattern, - sym_literal, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - [17988] = 2, - ACTIONS(1139), 2, - anon_sym_LT, - anon_sym_AT, - ACTIONS(1137), 19, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [18014] = 2, - ACTIONS(1143), 2, - anon_sym_LT, - anon_sym_AT, - ACTIONS(1141), 19, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [18040] = 13, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - ACTIONS(683), 1, - anon_sym_LPAREN, - ACTIONS(687), 1, - sym_identifier, - ACTIONS(984), 1, - sym_wildcard_pattern, - STATE(213), 1, - sym_integer_literal, - STATE(706), 1, - sym_simple_pattern, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - STATE(718), 3, - sym_identifier_pattern, - sym_tuple_pattern, - sym_literal, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - [18088] = 2, - ACTIONS(1147), 2, - anon_sym_LT, - anon_sym_AT, - ACTIONS(1145), 19, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [18114] = 2, - ACTIONS(1151), 2, - anon_sym_LT, - anon_sym_AT, - ACTIONS(1149), 19, - ts_builtin_sym_end, - anon_sym_ATuse, - anon_sym_ATimport, - anon_sym_ATstruct, - anon_sym_ATenum, - anon_sym_ATfn, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [18140] = 13, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - ACTIONS(683), 1, - anon_sym_LPAREN, - ACTIONS(984), 1, - sym_wildcard_pattern, - ACTIONS(1153), 1, - sym_identifier, - STATE(213), 1, - sym_integer_literal, - STATE(771), 1, - sym_simple_pattern, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - STATE(718), 3, - sym_identifier_pattern, - sym_tuple_pattern, - sym_literal, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - [18188] = 13, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(384), 1, - anon_sym_SQUOTE, - ACTIONS(386), 1, - aux_sym_integer_literal_token1, - ACTIONS(390), 1, - sym_float_literal, - ACTIONS(683), 1, - anon_sym_LPAREN, - ACTIONS(687), 1, - sym_identifier, - ACTIONS(984), 1, - sym_wildcard_pattern, - STATE(213), 1, - sym_integer_literal, - STATE(775), 1, - sym_simple_pattern, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(388), 3, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - STATE(718), 3, - sym_identifier_pattern, - sym_tuple_pattern, - sym_literal, - STATE(212), 4, - sym_string_literal, - sym_char_literal, - sym_number_literal, - sym_boolean_literal, - [18236] = 5, - ACTIONS(1069), 1, - anon_sym_LBRACE, - STATE(116), 1, - sym_binary_operator, - STATE(312), 1, - sym_content_block, - ACTIONS(140), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(142), 14, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [18268] = 4, - ACTIONS(1155), 1, - anon_sym_RPAREN, - STATE(116), 1, - sym_binary_operator, - ACTIONS(140), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(142), 14, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [18297] = 4, - ACTIONS(1157), 1, - anon_sym_RBRACK, - STATE(116), 1, - sym_binary_operator, - ACTIONS(140), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(142), 14, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [18326] = 4, - ACTIONS(1159), 1, - anon_sym_RBRACK, - STATE(116), 1, - sym_binary_operator, - ACTIONS(140), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(142), 14, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [18355] = 4, - ACTIONS(1161), 1, - anon_sym_LBRACE, - STATE(116), 1, - sym_binary_operator, - ACTIONS(140), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(142), 14, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [18384] = 4, - ACTIONS(1163), 1, - anon_sym_RBRACK, - STATE(116), 1, - sym_binary_operator, - ACTIONS(140), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(142), 14, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [18413] = 4, - ACTIONS(1165), 1, - anon_sym_LBRACE, - STATE(116), 1, - sym_binary_operator, - ACTIONS(140), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(142), 14, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [18442] = 4, - ACTIONS(1167), 1, - anon_sym_RBRACE, - STATE(116), 1, - sym_binary_operator, - ACTIONS(140), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(142), 14, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [18471] = 4, - ACTIONS(1169), 1, - anon_sym_LBRACE, - STATE(116), 1, - sym_binary_operator, - ACTIONS(140), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(142), 14, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [18500] = 4, - ACTIONS(1171), 1, - anon_sym_RPAREN, - STATE(116), 1, - sym_binary_operator, - ACTIONS(140), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(142), 14, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [18529] = 4, - ACTIONS(1173), 1, - anon_sym_RBRACK, - STATE(116), 1, - sym_binary_operator, - ACTIONS(140), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(142), 14, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [18558] = 4, - ACTIONS(1175), 1, - anon_sym_RBRACK, - STATE(116), 1, - sym_binary_operator, - ACTIONS(140), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(142), 14, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [18587] = 4, - ACTIONS(1177), 1, - anon_sym_RPAREN, - STATE(116), 1, - sym_binary_operator, - ACTIONS(140), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(142), 14, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [18616] = 4, - ACTIONS(1179), 1, - anon_sym_RPAREN, - STATE(116), 1, - sym_binary_operator, - ACTIONS(140), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(142), 14, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [18645] = 4, - ACTIONS(1181), 1, - anon_sym_RBRACK, - STATE(116), 1, - sym_binary_operator, - ACTIONS(140), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(142), 14, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [18674] = 4, - ACTIONS(1183), 1, - anon_sym_RBRACK, - STATE(116), 1, - sym_binary_operator, - ACTIONS(140), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(142), 14, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [18703] = 4, - ACTIONS(1185), 1, - anon_sym_RBRACK, - STATE(116), 1, - sym_binary_operator, - ACTIONS(140), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(142), 14, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [18732] = 4, - ACTIONS(1187), 1, - anon_sym_RPAREN, - STATE(116), 1, - sym_binary_operator, - ACTIONS(140), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(142), 14, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [18761] = 4, - ACTIONS(1189), 1, - anon_sym_RPAREN, - STATE(116), 1, - sym_binary_operator, - ACTIONS(140), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(142), 14, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [18790] = 4, - ACTIONS(1191), 1, - anon_sym_EQ_GT, - STATE(116), 1, - sym_binary_operator, - ACTIONS(140), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(142), 14, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [18819] = 4, - ACTIONS(1193), 1, - anon_sym_RBRACK, - STATE(116), 1, - sym_binary_operator, - ACTIONS(140), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(142), 14, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [18848] = 4, - ACTIONS(1195), 1, - anon_sym_COLON, - ACTIONS(1197), 1, - anon_sym_SEMI, - ACTIONS(883), 4, - anon_sym_LT, - anon_sym_LT_SLASH, - anon_sym_AT, - sym_text_content, - ACTIONS(879), 14, - anon_sym_RBRACE, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [18877] = 4, - ACTIONS(1199), 1, - anon_sym_COLON, - ACTIONS(1201), 1, - anon_sym_SEMI, - ACTIONS(893), 4, - anon_sym_LT, - anon_sym_LT_SLASH, - anon_sym_AT, - sym_text_content, - ACTIONS(889), 14, - anon_sym_RBRACE, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [18906] = 4, - ACTIONS(1203), 1, - anon_sym_RPAREN, - STATE(116), 1, - sym_binary_operator, - ACTIONS(140), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(142), 14, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [18935] = 4, - ACTIONS(1205), 1, - anon_sym_LBRACE, - STATE(116), 1, - sym_binary_operator, - ACTIONS(140), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(142), 14, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [18964] = 4, - ACTIONS(1207), 1, - anon_sym_RPAREN, - STATE(116), 1, - sym_binary_operator, - ACTIONS(140), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(142), 14, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [18993] = 4, - ACTIONS(1209), 1, - anon_sym_RPAREN, - STATE(116), 1, - sym_binary_operator, - ACTIONS(140), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(142), 14, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [19022] = 3, - ACTIONS(1211), 1, - anon_sym_SEMI, - ACTIONS(950), 4, - anon_sym_LT, - anon_sym_LT_SLASH, - anon_sym_AT, - sym_text_content, - ACTIONS(948), 14, - anon_sym_RBRACE, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [19048] = 3, - ACTIONS(1213), 1, - anon_sym_SEMI, - ACTIONS(934), 4, - anon_sym_LT, - anon_sym_LT_SLASH, - anon_sym_AT, - sym_text_content, - ACTIONS(932), 14, - anon_sym_RBRACE, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [19074] = 2, - ACTIONS(362), 4, - anon_sym_LT, - anon_sym_LT_SLASH, - anon_sym_AT, - sym_text_content, - ACTIONS(360), 15, - anon_sym_RBRACE, - anon_sym_ATif, - anon_sym_else, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [19098] = 2, - ACTIONS(358), 4, - anon_sym_LT, - anon_sym_LT_SLASH, - anon_sym_AT, - sym_text_content, - ACTIONS(356), 15, - anon_sym_RBRACE, - anon_sym_ATif, - anon_sym_else, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [19122] = 2, - ACTIONS(940), 4, - anon_sym_LT, - anon_sym_LT_SLASH, - anon_sym_AT, - sym_text_content, - ACTIONS(938), 15, - anon_sym_RBRACE, - anon_sym_ATif, - anon_sym_else, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [19146] = 2, - ACTIONS(930), 4, - anon_sym_LT, - anon_sym_LT_SLASH, - anon_sym_AT, - sym_text_content, - ACTIONS(928), 15, - anon_sym_RBRACE, - anon_sym_ATif, - anon_sym_else, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - [19170] = 2, - ACTIONS(960), 3, - anon_sym_LT, - anon_sym_LT_SLASH, - anon_sym_AT, - ACTIONS(958), 15, - anon_sym_RBRACE, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [19193] = 2, - ACTIONS(996), 3, - anon_sym_LT, - anon_sym_LT_SLASH, - anon_sym_AT, - ACTIONS(994), 15, - anon_sym_RBRACE, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [19216] = 2, - ACTIONS(1000), 3, - anon_sym_LT, - anon_sym_LT_SLASH, - anon_sym_AT, - ACTIONS(998), 15, - anon_sym_RBRACE, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [19239] = 2, - ACTIONS(1006), 3, - anon_sym_LT, - anon_sym_LT_SLASH, - anon_sym_AT, - ACTIONS(1004), 15, - anon_sym_RBRACE, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [19262] = 2, - ACTIONS(1010), 3, - anon_sym_LT, - anon_sym_LT_SLASH, - anon_sym_AT, - ACTIONS(1008), 15, - anon_sym_RBRACE, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [19285] = 2, - ACTIONS(1014), 3, - anon_sym_LT, - anon_sym_LT_SLASH, - anon_sym_AT, - ACTIONS(1012), 15, - anon_sym_RBRACE, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [19308] = 2, - ACTIONS(1034), 3, - anon_sym_LT, - anon_sym_LT_SLASH, - anon_sym_AT, - ACTIONS(1032), 15, - anon_sym_RBRACE, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [19331] = 2, - ACTIONS(1055), 3, - anon_sym_LT, - anon_sym_LT_SLASH, - anon_sym_AT, - ACTIONS(1053), 15, - anon_sym_RBRACE, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [19354] = 2, - ACTIONS(1059), 3, - anon_sym_LT, - anon_sym_LT_SLASH, - anon_sym_AT, - ACTIONS(1057), 15, - anon_sym_RBRACE, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [19377] = 2, - ACTIONS(1063), 3, - anon_sym_LT, - anon_sym_LT_SLASH, - anon_sym_AT, - ACTIONS(1061), 15, - anon_sym_RBRACE, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [19400] = 2, - ACTIONS(1067), 3, - anon_sym_LT, - anon_sym_LT_SLASH, - anon_sym_AT, - ACTIONS(1065), 15, - anon_sym_RBRACE, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [19423] = 2, - ACTIONS(1081), 3, - anon_sym_LT, - anon_sym_LT_SLASH, - anon_sym_AT, - ACTIONS(1079), 15, - anon_sym_RBRACE, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [19446] = 2, - ACTIONS(1089), 3, - anon_sym_LT, - anon_sym_LT_SLASH, - anon_sym_AT, - ACTIONS(1087), 15, - anon_sym_RBRACE, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [19469] = 2, - ACTIONS(358), 3, - anon_sym_LT, - anon_sym_LT_SLASH, - anon_sym_AT, - ACTIONS(356), 15, - anon_sym_RBRACE, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [19492] = 2, - ACTIONS(362), 3, - anon_sym_LT, - anon_sym_LT_SLASH, - anon_sym_AT, - ACTIONS(360), 15, - anon_sym_RBRACE, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [19515] = 2, - ACTIONS(1036), 3, - anon_sym_LT, - anon_sym_LT_SLASH, - anon_sym_AT, - ACTIONS(240), 15, - anon_sym_RBRACE, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [19538] = 2, - ACTIONS(992), 3, - anon_sym_LT, - anon_sym_LT_SLASH, - anon_sym_AT, - ACTIONS(990), 15, - anon_sym_RBRACE, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [19561] = 2, - ACTIONS(1073), 3, - anon_sym_LT, - anon_sym_LT_SLASH, - anon_sym_AT, - ACTIONS(1071), 15, - anon_sym_RBRACE, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [19584] = 2, - ACTIONS(1085), 3, - anon_sym_LT, - anon_sym_LT_SLASH, - anon_sym_AT, - ACTIONS(1083), 15, - anon_sym_RBRACE, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [19607] = 2, - ACTIONS(1093), 3, - anon_sym_LT, - anon_sym_LT_SLASH, - anon_sym_AT, - ACTIONS(1091), 15, - anon_sym_RBRACE, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [19630] = 2, - ACTIONS(1097), 3, - anon_sym_LT, - anon_sym_LT_SLASH, - anon_sym_AT, - ACTIONS(1095), 15, - anon_sym_RBRACE, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [19653] = 2, - ACTIONS(450), 3, - anon_sym_LT, - anon_sym_LT_SLASH, - anon_sym_AT, - ACTIONS(98), 15, - anon_sym_RBRACE, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [19676] = 2, - ACTIONS(1101), 3, - anon_sym_LT, - anon_sym_LT_SLASH, - anon_sym_AT, - ACTIONS(1099), 15, - anon_sym_RBRACE, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [19699] = 2, - ACTIONS(1121), 3, - anon_sym_LT, - anon_sym_LT_SLASH, - anon_sym_AT, - ACTIONS(1119), 15, - anon_sym_RBRACE, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [19722] = 2, - ACTIONS(1129), 3, - anon_sym_LT, - anon_sym_LT_SLASH, - anon_sym_AT, - ACTIONS(1127), 15, - anon_sym_RBRACE, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, + ACTIONS(9), 1, + aux_sym_simple_expression_token1, + ACTIONS(11), 1, anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [19745] = 2, - ACTIONS(1133), 3, - anon_sym_LT, - anon_sym_LT_SLASH, - anon_sym_AT, - ACTIONS(1131), 15, - anon_sym_RBRACE, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [19768] = 2, - ACTIONS(1139), 3, - anon_sym_LT, - anon_sym_LT_SLASH, - anon_sym_AT, - ACTIONS(1137), 15, - anon_sym_RBRACE, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [19791] = 2, - ACTIONS(1143), 3, - anon_sym_LT, - anon_sym_LT_SLASH, - anon_sym_AT, - ACTIONS(1141), 15, - anon_sym_RBRACE, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [19814] = 2, - ACTIONS(1147), 3, - anon_sym_LT, - anon_sym_LT_SLASH, - anon_sym_AT, - ACTIONS(1145), 15, - anon_sym_RBRACE, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [19837] = 2, - ACTIONS(1151), 3, - anon_sym_LT, - anon_sym_LT_SLASH, - anon_sym_AT, - ACTIONS(1149), 15, - anon_sym_RBRACE, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [19860] = 2, - ACTIONS(988), 3, - anon_sym_LT, - anon_sym_LT_SLASH, - anon_sym_AT, - ACTIONS(986), 15, - anon_sym_RBRACE, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [19883] = 2, - ACTIONS(970), 3, - anon_sym_LT, - anon_sym_LT_SLASH, - anon_sym_AT, - ACTIONS(968), 15, - anon_sym_RBRACE, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - sym_template_comment, + ACTIONS(13), 1, + sym_template_comment_1, + ACTIONS(15), 1, sym_html_comment, - sym_raw_block, + ACTIONS(17), 1, + sym_raw_block_1, + ACTIONS(19), 1, anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [19906] = 2, - ACTIONS(982), 3, - anon_sym_LT, - anon_sym_LT_SLASH, - anon_sym_AT, - ACTIONS(980), 15, - anon_sym_RBRACE, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [19929] = 2, - ACTIONS(788), 3, - anon_sym_LT, - anon_sym_LT_SLASH, - anon_sym_AT, - ACTIONS(786), 15, - anon_sym_RBRACE, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, - sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, - sym_escape_at, - sym_text_content, - [19952] = 2, - ACTIONS(770), 3, - anon_sym_LT, - anon_sym_LT_SLASH, + ACTIONS(220), 1, anon_sym_AT, - ACTIONS(768), 15, + ACTIONS(222), 1, anon_sym_RBRACE, - anon_sym_ATif, - anon_sym_ATfor, - anon_sym_ATlet, - anon_sym_ATmatch, - anon_sym_ATbreak, - anon_sym_ATcontinue, - anon_sym_LT_AT, - anon_sym_LT_SLASH_AT, + STATE(250), 1, sym_template_comment, - sym_html_comment, - sym_raw_block, - anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + ACTIONS(21), 2, sym_escape_at, sym_text_content, - [19975] = 2, - ACTIONS(1215), 4, - aux_sym_rust_path_token1, - aux_sym_integer_literal_token1, - anon_sym_true, - anon_sym_false, - ACTIONS(1217), 13, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - sym_float_literal, - [19997] = 2, - ACTIONS(1219), 4, - aux_sym_rust_path_token1, - aux_sym_integer_literal_token1, - anon_sym_true, - anon_sym_false, - ACTIONS(1221), 13, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - sym_float_literal, - [20019] = 3, - ACTIONS(1227), 1, - anon_sym_COMMA, - ACTIONS(1223), 6, - aux_sym_rust_path_token1, - sym_wildcard_pattern, - aux_sym_integer_literal_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1225), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - sym_float_literal, - [20041] = 3, - ACTIONS(1233), 1, - anon_sym_COMMA, - ACTIONS(1229), 6, - aux_sym_rust_path_token1, - sym_wildcard_pattern, - aux_sym_integer_literal_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1231), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - sym_float_literal, - [20063] = 2, - ACTIONS(1235), 6, - aux_sym_rust_path_token1, - sym_wildcard_pattern, - aux_sym_integer_literal_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1237), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - sym_float_literal, - [20082] = 2, - ACTIONS(1239), 6, - aux_sym_rust_path_token1, - sym_wildcard_pattern, - aux_sym_integer_literal_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1241), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym_integer_literal_token2, - aux_sym_integer_literal_token3, - aux_sym_integer_literal_token4, - sym_float_literal, - [20101] = 7, - ACTIONS(1245), 1, - anon_sym_ATif, - ACTIONS(1248), 1, - anon_sym_ATfor, - ACTIONS(1251), 1, - sym_attribute_name, - STATE(446), 2, - sym_attribute_or_control, - aux_sym_html_element_repeat1, - STATE(500), 2, - sym_attribute_control_flow, - sym_html_attribute, - STATE(511), 2, - sym_attribute_if_statement, - sym_attribute_for_loop, - ACTIONS(1243), 3, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_SLASH, - [20128] = 8, - ACTIONS(1254), 1, - anon_sym_GT, - ACTIONS(1256), 1, - anon_sym_SLASH, - ACTIONS(1258), 1, - anon_sym_ATif, - ACTIONS(1260), 1, - anon_sym_ATfor, - ACTIONS(1262), 1, - sym_attribute_name, - STATE(446), 2, - sym_attribute_or_control, - aux_sym_html_element_repeat1, - STATE(500), 2, - sym_attribute_control_flow, - sym_html_attribute, - STATE(511), 2, - sym_attribute_if_statement, - sym_attribute_for_loop, - [20156] = 8, - ACTIONS(1258), 1, - anon_sym_ATif, - ACTIONS(1260), 1, - anon_sym_ATfor, - ACTIONS(1262), 1, - sym_attribute_name, - ACTIONS(1264), 1, - anon_sym_GT, - ACTIONS(1266), 1, - anon_sym_SLASH, - STATE(449), 2, - sym_attribute_or_control, - aux_sym_html_element_repeat1, - STATE(500), 2, - sym_attribute_control_flow, - sym_html_attribute, - STATE(511), 2, - sym_attribute_if_statement, - sym_attribute_for_loop, - [20184] = 8, - ACTIONS(1258), 1, - anon_sym_ATif, - ACTIONS(1260), 1, - anon_sym_ATfor, - ACTIONS(1262), 1, - sym_attribute_name, - ACTIONS(1268), 1, - anon_sym_GT, - ACTIONS(1270), 1, - anon_sym_SLASH, - STATE(446), 2, - sym_attribute_or_control, - aux_sym_html_element_repeat1, - STATE(500), 2, - sym_attribute_control_flow, - sym_html_attribute, - STATE(511), 2, - sym_attribute_if_statement, - sym_attribute_for_loop, - [20212] = 8, - ACTIONS(1258), 1, - anon_sym_ATif, - ACTIONS(1260), 1, - anon_sym_ATfor, - ACTIONS(1262), 1, - sym_attribute_name, - ACTIONS(1270), 1, - anon_sym_SLASH, - ACTIONS(1272), 1, - anon_sym_GT, - STATE(446), 2, - sym_attribute_or_control, - aux_sym_html_element_repeat1, - STATE(500), 2, - sym_attribute_control_flow, - sym_html_attribute, - STATE(511), 2, - sym_attribute_if_statement, - sym_attribute_for_loop, - [20240] = 8, - ACTIONS(1258), 1, - anon_sym_ATif, - ACTIONS(1260), 1, - anon_sym_ATfor, - ACTIONS(1262), 1, - sym_attribute_name, - ACTIONS(1274), 1, - anon_sym_GT, - ACTIONS(1276), 1, - anon_sym_SLASH, - STATE(447), 2, - sym_attribute_or_control, - aux_sym_html_element_repeat1, - STATE(500), 2, - sym_attribute_control_flow, - sym_html_attribute, - STATE(511), 2, - sym_attribute_if_statement, - sym_attribute_for_loop, - [20268] = 8, - ACTIONS(1258), 1, - anon_sym_ATif, - ACTIONS(1260), 1, - anon_sym_ATfor, - ACTIONS(1262), 1, - sym_attribute_name, - ACTIONS(1266), 1, - anon_sym_SLASH, - ACTIONS(1278), 1, - anon_sym_GT, - STATE(450), 2, - sym_attribute_or_control, - aux_sym_html_element_repeat1, - STATE(500), 2, - sym_attribute_control_flow, - sym_html_attribute, - STATE(511), 2, - sym_attribute_if_statement, - sym_attribute_for_loop, - [20296] = 7, - ACTIONS(1258), 1, - anon_sym_ATif, - ACTIONS(1260), 1, - anon_sym_ATfor, - ACTIONS(1262), 1, - sym_attribute_name, - ACTIONS(1280), 1, - anon_sym_RBRACE, - STATE(460), 2, - sym_attribute_or_control, - aux_sym_html_element_repeat1, - STATE(500), 2, - sym_attribute_control_flow, - sym_html_attribute, - STATE(511), 2, - sym_attribute_if_statement, - sym_attribute_for_loop, - [20321] = 7, - ACTIONS(1258), 1, - anon_sym_ATif, - ACTIONS(1260), 1, - anon_sym_ATfor, - ACTIONS(1262), 1, - sym_attribute_name, - ACTIONS(1282), 1, - anon_sym_RBRACE, - STATE(462), 2, - sym_attribute_or_control, - aux_sym_html_element_repeat1, - STATE(500), 2, - sym_attribute_control_flow, - sym_html_attribute, - STATE(511), 2, - sym_attribute_if_statement, - sym_attribute_for_loop, - [20346] = 6, - ACTIONS(1284), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(1290), 1, - anon_sym_DOT, - STATE(455), 1, - aux_sym_expression_path_repeat1, - ACTIONS(739), 3, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_SLASH, - ACTIONS(747), 3, - anon_sym_ATif, - anon_sym_ATfor, - sym_attribute_name, - [20369] = 7, - ACTIONS(1258), 1, - anon_sym_ATif, - ACTIONS(1260), 1, - anon_sym_ATfor, - ACTIONS(1262), 1, - sym_attribute_name, - ACTIONS(1293), 1, - anon_sym_RBRACE, - STATE(446), 2, - sym_attribute_or_control, - aux_sym_html_element_repeat1, - STATE(500), 2, - sym_attribute_control_flow, - sym_html_attribute, - STATE(511), 2, - sym_attribute_if_statement, - sym_attribute_for_loop, - [20394] = 7, - ACTIONS(1258), 1, - anon_sym_ATif, - ACTIONS(1260), 1, - anon_sym_ATfor, - ACTIONS(1262), 1, - sym_attribute_name, - ACTIONS(1295), 1, - anon_sym_RBRACE, - STATE(456), 2, - sym_attribute_or_control, - aux_sym_html_element_repeat1, - STATE(500), 2, - sym_attribute_control_flow, - sym_html_attribute, - STATE(511), 2, - sym_attribute_if_statement, - sym_attribute_for_loop, - [20419] = 6, - ACTIONS(1297), 1, - anon_sym_LPAREN, - ACTIONS(1299), 1, - anon_sym_LBRACK, - ACTIONS(1301), 1, - anon_sym_DOT, - STATE(463), 1, - aux_sym_expression_path_repeat1, - ACTIONS(776), 3, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_SLASH, - ACTIONS(778), 3, - anon_sym_ATif, - anon_sym_ATfor, - sym_attribute_name, - [20442] = 7, - ACTIONS(1258), 1, - anon_sym_ATif, - ACTIONS(1260), 1, - anon_sym_ATfor, - ACTIONS(1262), 1, - sym_attribute_name, - ACTIONS(1303), 1, - anon_sym_RBRACE, - STATE(446), 2, - sym_attribute_or_control, - aux_sym_html_element_repeat1, - STATE(500), 2, - sym_attribute_control_flow, - sym_html_attribute, - STATE(511), 2, - sym_attribute_if_statement, - sym_attribute_for_loop, - [20467] = 7, - ACTIONS(1258), 1, - anon_sym_ATif, - ACTIONS(1260), 1, - anon_sym_ATfor, - ACTIONS(1262), 1, - sym_attribute_name, - ACTIONS(1305), 1, - anon_sym_RBRACE, - STATE(446), 2, - sym_attribute_or_control, - aux_sym_html_element_repeat1, - STATE(500), 2, - sym_attribute_control_flow, - sym_html_attribute, - STATE(511), 2, - sym_attribute_if_statement, - sym_attribute_for_loop, - [20492] = 7, - ACTIONS(1258), 1, - anon_sym_ATif, - ACTIONS(1260), 1, - anon_sym_ATfor, - ACTIONS(1262), 1, - sym_attribute_name, - ACTIONS(1305), 1, - anon_sym_RBRACE, - STATE(459), 2, - sym_attribute_or_control, - aux_sym_html_element_repeat1, - STATE(500), 2, - sym_attribute_control_flow, - sym_html_attribute, - STATE(511), 2, - sym_attribute_if_statement, - sym_attribute_for_loop, - [20517] = 7, - ACTIONS(1258), 1, - anon_sym_ATif, - ACTIONS(1260), 1, - anon_sym_ATfor, - ACTIONS(1262), 1, - sym_attribute_name, - ACTIONS(1307), 1, - anon_sym_RBRACE, - STATE(446), 2, - sym_attribute_or_control, - aux_sym_html_element_repeat1, - STATE(500), 2, - sym_attribute_control_flow, - sym_html_attribute, - STATE(511), 2, - sym_attribute_if_statement, - sym_attribute_for_loop, - [20542] = 6, - ACTIONS(1297), 1, - anon_sym_LPAREN, - ACTIONS(1299), 1, - anon_sym_LBRACK, - ACTIONS(1301), 1, - anon_sym_DOT, - STATE(455), 1, - aux_sym_expression_path_repeat1, - ACTIONS(758), 3, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_SLASH, - ACTIONS(764), 3, - anon_sym_ATif, - anon_sym_ATfor, - sym_attribute_name, - [20565] = 6, - ACTIONS(1309), 1, - anon_sym_GT, - ACTIONS(1311), 1, - anon_sym_SLASH, - ACTIONS(1313), 1, - anon_sym_AT, - ACTIONS(1315), 1, - sym_identifier, - STATE(466), 2, - sym_function_attribute, - aux_sym_self_closing_function_tag_repeat1, - STATE(551), 3, - sym_attribute_reference, - sym_named_function_attribute, - sym_boolean_attribute, - [20587] = 2, - ACTIONS(747), 3, - anon_sym_ATif, - anon_sym_ATfor, - sym_attribute_name, - ACTIONS(739), 6, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_DOT, - [20601] = 6, - ACTIONS(1313), 1, - anon_sym_AT, - ACTIONS(1315), 1, - sym_identifier, - ACTIONS(1317), 1, - anon_sym_GT, - ACTIONS(1319), 1, - anon_sym_SLASH, - STATE(472), 2, - sym_function_attribute, - aux_sym_self_closing_function_tag_repeat1, - STATE(551), 3, - sym_attribute_reference, - sym_named_function_attribute, - sym_boolean_attribute, - [20623] = 6, - ACTIONS(1313), 1, - anon_sym_AT, - ACTIONS(1315), 1, - sym_identifier, - ACTIONS(1321), 1, - anon_sym_GT, - ACTIONS(1323), 1, - anon_sym_SLASH, - STATE(472), 2, - sym_function_attribute, - aux_sym_self_closing_function_tag_repeat1, - STATE(551), 3, - sym_attribute_reference, - sym_named_function_attribute, - sym_boolean_attribute, - [20645] = 6, - ACTIONS(1311), 1, - anon_sym_SLASH, - ACTIONS(1313), 1, - anon_sym_AT, - ACTIONS(1315), 1, - sym_identifier, - ACTIONS(1325), 1, - anon_sym_GT, - STATE(469), 2, - sym_function_attribute, - aux_sym_self_closing_function_tag_repeat1, - STATE(551), 3, - sym_attribute_reference, - sym_named_function_attribute, - sym_boolean_attribute, - [20667] = 6, - ACTIONS(1313), 1, - anon_sym_AT, - ACTIONS(1315), 1, - sym_identifier, - ACTIONS(1319), 1, - anon_sym_SLASH, - ACTIONS(1327), 1, - anon_sym_GT, - STATE(472), 2, - sym_function_attribute, - aux_sym_self_closing_function_tag_repeat1, - STATE(551), 3, - sym_attribute_reference, - sym_named_function_attribute, - sym_boolean_attribute, - [20689] = 6, - ACTIONS(1313), 1, - anon_sym_AT, - ACTIONS(1315), 1, - sym_identifier, - ACTIONS(1329), 1, - anon_sym_GT, - ACTIONS(1331), 1, - anon_sym_SLASH, - STATE(467), 2, - sym_function_attribute, - aux_sym_self_closing_function_tag_repeat1, - STATE(551), 3, - sym_attribute_reference, - sym_named_function_attribute, - sym_boolean_attribute, - [20711] = 2, - ACTIONS(794), 3, - anon_sym_ATif, - anon_sym_ATfor, - sym_attribute_name, - ACTIONS(792), 6, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_DOT, - [20725] = 5, - ACTIONS(1335), 1, - anon_sym_AT, - ACTIONS(1338), 1, - sym_identifier, - ACTIONS(1333), 2, - anon_sym_GT, - anon_sym_SLASH, - STATE(472), 2, - sym_function_attribute, - aux_sym_self_closing_function_tag_repeat1, - STATE(551), 3, - sym_attribute_reference, - sym_named_function_attribute, - sym_boolean_attribute, - [20745] = 2, - ACTIONS(1341), 1, - anon_sym_LT, - ACTIONS(782), 8, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ, - anon_sym_SEMI, - sym_identifier, - [20759] = 5, - ACTIONS(1343), 1, - anon_sym_LPAREN, - ACTIONS(1346), 1, - anon_sym_LBRACK, - ACTIONS(1349), 1, - anon_sym_DOT, - STATE(474), 1, - aux_sym_expression_path_repeat1, - ACTIONS(739), 4, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AT, - sym_identifier, - [20778] = 1, - ACTIONS(870), 8, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ, - anon_sym_SEMI, - sym_identifier, - [20789] = 1, - ACTIONS(842), 8, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ, - anon_sym_SEMI, - sym_identifier, - [20800] = 5, - ACTIONS(1352), 1, - anon_sym_LPAREN, - ACTIONS(1354), 1, - anon_sym_LBRACK, - ACTIONS(1356), 1, - anon_sym_DOT, - STATE(480), 1, - aux_sym_expression_path_repeat1, - ACTIONS(776), 4, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AT, - sym_identifier, - [20819] = 1, - ACTIONS(854), 8, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ, - anon_sym_SEMI, - sym_identifier, - [20830] = 1, - ACTIONS(846), 8, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ, - anon_sym_SEMI, - sym_identifier, - [20841] = 5, - ACTIONS(1352), 1, - anon_sym_LPAREN, - ACTIONS(1354), 1, - anon_sym_LBRACK, - ACTIONS(1356), 1, - anon_sym_DOT, - STATE(474), 1, - aux_sym_expression_path_repeat1, - ACTIONS(758), 4, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AT, - sym_identifier, - [20860] = 1, - ACTIONS(858), 8, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ, - anon_sym_SEMI, - sym_identifier, - [20871] = 1, - ACTIONS(834), 8, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ, - anon_sym_SEMI, - sym_identifier, - [20882] = 1, - ACTIONS(866), 8, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ, - anon_sym_SEMI, - sym_identifier, - [20893] = 1, - ACTIONS(798), 8, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ, - anon_sym_SEMI, - sym_identifier, - [20904] = 1, - ACTIONS(838), 8, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ, - anon_sym_SEMI, - sym_identifier, - [20915] = 5, - ACTIONS(1358), 1, - anon_sym_AT, - ACTIONS(1360), 1, - anon_sym_DQUOTE, - STATE(514), 1, - sym_attribute_value, - STATE(515), 2, + STATE(74), 2, + aux_sym__template_nodes, + sym_template_node, + STATE(270), 2, + sym_self_closing_function_tag, + sym_container_function_tag, + STATE(268), 6, + sym_let_statement, + sym_if_statement, + sym_for_loop, + sym_match_statement, + sym_break_statement, + sym_continue_statement, + STATE(258), 7, + sym_html_element, sym_template_expression, - sym_string_literal, - STATE(504), 3, + sym_template_control_flow, + sym_function_tag, + sym_comment, + sym_raw_block, + sym_embedded_language, + STATE(266), 7, + sym_out_ref, + sym_target_ref, sym_simple_expression, sym_complex_expression, sym_safe_expression, - [20934] = 1, - ACTIONS(862), 8, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ, - anon_sym_SEMI, - sym_identifier, - [20945] = 3, - ACTIONS(1364), 1, - anon_sym_js, - STATE(736), 1, - sym_language_name, - ACTIONS(1362), 6, - anon_sym_html, - anon_sym_css, - anon_sym_javascript, - anon_sym_json, - anon_sym_alpine, - anon_sym_style, - [20960] = 1, - ACTIONS(850), 8, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ, - anon_sym_SEMI, - sym_identifier, - [20971] = 1, - ACTIONS(824), 8, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ, - anon_sym_SEMI, - sym_identifier, - [20982] = 3, - ACTIONS(1364), 1, - anon_sym_js, - STATE(754), 1, - sym_language_name, - ACTIONS(1362), 6, - anon_sym_html, - anon_sym_css, - anon_sym_javascript, - anon_sym_json, - anon_sym_alpine, - anon_sym_style, - [20997] = 1, - ACTIONS(316), 7, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_SLASH, + sym_format_expression, + sym_matches_expression, + [3414] = 16, + ACTIONS(7), 1, + anon_sym_LT, + ACTIONS(9), 1, + aux_sym_simple_expression_token1, + ACTIONS(11), 1, + anon_sym_LT_AT, + ACTIONS(13), 1, + sym_template_comment_1, + ACTIONS(15), 1, + sym_html_comment, + ACTIONS(17), 1, + sym_raw_block_1, + ACTIONS(19), 1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + ACTIONS(220), 1, anon_sym_AT, - anon_sym_DOT_DOT, - sym_identifier, - [21007] = 3, - ACTIONS(1370), 1, - anon_sym_else, - ACTIONS(1366), 3, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_SLASH, - ACTIONS(1368), 3, - anon_sym_ATif, - anon_sym_ATfor, - sym_attribute_name, - [21021] = 1, - ACTIONS(308), 7, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(224), 1, + anon_sym_LT_SLASH, + STATE(250), 1, + sym_template_comment, + ACTIONS(21), 2, + sym_escape_at, + sym_text_content, + STATE(64), 2, + aux_sym__template_nodes, + sym_template_node, + STATE(270), 2, + sym_self_closing_function_tag, + sym_container_function_tag, + STATE(268), 6, + sym_let_statement, + sym_if_statement, + sym_for_loop, + sym_match_statement, + sym_break_statement, + sym_continue_statement, + STATE(258), 7, + sym_html_element, + sym_template_expression, + sym_template_control_flow, + sym_function_tag, + sym_comment, + sym_raw_block, + sym_embedded_language, + STATE(266), 7, + sym_out_ref, + sym_target_ref, + sym_simple_expression, + sym_complex_expression, + sym_safe_expression, + sym_format_expression, + sym_matches_expression, + [3483] = 16, + ACTIONS(7), 1, + anon_sym_LT, + ACTIONS(9), 1, + aux_sym_simple_expression_token1, + ACTIONS(11), 1, + anon_sym_LT_AT, + ACTIONS(13), 1, + sym_template_comment_1, + ACTIONS(15), 1, + sym_html_comment, + ACTIONS(17), 1, + sym_raw_block_1, + ACTIONS(19), 1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + ACTIONS(220), 1, anon_sym_AT, - anon_sym_DOT_DOT, - sym_identifier, - [21031] = 1, - ACTIONS(739), 7, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(226), 1, + anon_sym_RBRACE, + STATE(250), 1, + sym_template_comment, + ACTIONS(21), 2, + sym_escape_at, + sym_text_content, + STATE(61), 2, + aux_sym__template_nodes, + sym_template_node, + STATE(270), 2, + sym_self_closing_function_tag, + sym_container_function_tag, + STATE(268), 6, + sym_let_statement, + sym_if_statement, + sym_for_loop, + sym_match_statement, + sym_break_statement, + sym_continue_statement, + STATE(258), 7, + sym_html_element, + sym_template_expression, + sym_template_control_flow, + sym_function_tag, + sym_comment, + sym_raw_block, + sym_embedded_language, + STATE(266), 7, + sym_out_ref, + sym_target_ref, + sym_simple_expression, + sym_complex_expression, + sym_safe_expression, + sym_format_expression, + sym_matches_expression, + [3552] = 16, + ACTIONS(7), 1, + anon_sym_LT, + ACTIONS(9), 1, + aux_sym_simple_expression_token1, + ACTIONS(11), 1, + anon_sym_LT_AT, + ACTIONS(13), 1, + sym_template_comment_1, + ACTIONS(15), 1, + sym_html_comment, + ACTIONS(17), 1, + sym_raw_block_1, + ACTIONS(19), 1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + ACTIONS(220), 1, anon_sym_AT, - anon_sym_DOT, - sym_identifier, - [21041] = 1, - ACTIONS(792), 7, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(228), 1, + anon_sym_LT_SLASH, + STATE(250), 1, + sym_template_comment, + ACTIONS(21), 2, + sym_escape_at, + sym_text_content, + STATE(76), 2, + aux_sym__template_nodes, + sym_template_node, + STATE(270), 2, + sym_self_closing_function_tag, + sym_container_function_tag, + STATE(268), 6, + sym_let_statement, + sym_if_statement, + sym_for_loop, + sym_match_statement, + sym_break_statement, + sym_continue_statement, + STATE(258), 7, + sym_html_element, + sym_template_expression, + sym_template_control_flow, + sym_function_tag, + sym_comment, + sym_raw_block, + sym_embedded_language, + STATE(266), 7, + sym_out_ref, + sym_target_ref, + sym_simple_expression, + sym_complex_expression, + sym_safe_expression, + sym_format_expression, + sym_matches_expression, + [3621] = 16, + ACTIONS(7), 1, + anon_sym_LT, + ACTIONS(9), 1, + aux_sym_simple_expression_token1, + ACTIONS(11), 1, + anon_sym_LT_AT, + ACTIONS(13), 1, + sym_template_comment_1, + ACTIONS(15), 1, + sym_html_comment, + ACTIONS(17), 1, + sym_raw_block_1, + ACTIONS(19), 1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + ACTIONS(220), 1, anon_sym_AT, - anon_sym_DOT, - sym_identifier, - [21051] = 3, - ACTIONS(1374), 1, - anon_sym_EQ, - ACTIONS(1372), 3, + ACTIONS(230), 1, anon_sym_RBRACE, - anon_sym_GT, - anon_sym_SLASH, - ACTIONS(1376), 3, - anon_sym_ATif, - anon_sym_ATfor, - sym_attribute_name, - [21065] = 3, - ACTIONS(1382), 1, - anon_sym_else, - ACTIONS(1378), 3, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_SLASH, - ACTIONS(1380), 3, - anon_sym_ATif, - anon_sym_ATfor, - sym_attribute_name, - [21079] = 2, - ACTIONS(1386), 1, - anon_sym_EQ, - ACTIONS(1384), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_if, - anon_sym_EQ_GT, - [21090] = 2, - ACTIONS(1388), 3, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_SLASH, - ACTIONS(1390), 3, - anon_sym_ATif, - anon_sym_ATfor, - sym_attribute_name, - [21101] = 2, - ACTIONS(1392), 3, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_SLASH, - ACTIONS(1394), 3, - anon_sym_ATif, - anon_sym_ATfor, - sym_attribute_name, - [21112] = 2, - ACTIONS(1396), 3, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_SLASH, - ACTIONS(1398), 3, - anon_sym_ATif, - anon_sym_ATfor, - sym_attribute_name, - [21123] = 2, - ACTIONS(1400), 3, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_SLASH, - ACTIONS(1402), 3, - anon_sym_ATif, - anon_sym_ATfor, - sym_attribute_name, - [21134] = 2, - ACTIONS(1053), 3, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_SLASH, - ACTIONS(1055), 3, - anon_sym_ATif, - anon_sym_ATfor, - sym_attribute_name, - [21145] = 2, - ACTIONS(1406), 1, - anon_sym_EQ, - ACTIONS(1404), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_if, - anon_sym_EQ_GT, - [21156] = 2, - ACTIONS(1410), 1, - anon_sym_EQ, - ACTIONS(1408), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_if, - anon_sym_EQ_GT, - [21167] = 2, - ACTIONS(1412), 3, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_SLASH, - ACTIONS(1414), 3, - anon_sym_ATif, - anon_sym_ATfor, - sym_attribute_name, - [21178] = 2, - ACTIONS(1065), 3, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_SLASH, - ACTIONS(1067), 3, - anon_sym_ATif, - anon_sym_ATfor, - sym_attribute_name, - [21189] = 2, - ACTIONS(308), 3, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_SLASH, - ACTIONS(310), 3, - anon_sym_ATif, - anon_sym_ATfor, - sym_attribute_name, - [21200] = 2, - ACTIONS(316), 3, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_SLASH, - ACTIONS(318), 3, - anon_sym_ATif, - anon_sym_ATfor, - sym_attribute_name, - [21211] = 2, - ACTIONS(1416), 3, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_SLASH, - ACTIONS(1418), 3, - anon_sym_ATif, - anon_sym_ATfor, - sym_attribute_name, - [21222] = 2, - ACTIONS(1141), 3, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_SLASH, - ACTIONS(1143), 3, - anon_sym_ATif, - anon_sym_ATfor, - sym_attribute_name, - [21233] = 2, - ACTIONS(990), 3, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_SLASH, - ACTIONS(992), 3, - anon_sym_ATif, - anon_sym_ATfor, - sym_attribute_name, - [21244] = 2, - ACTIONS(1420), 3, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_SLASH, - ACTIONS(1422), 3, - anon_sym_ATif, - anon_sym_ATfor, - sym_attribute_name, - [21255] = 2, - ACTIONS(1424), 3, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_SLASH, - ACTIONS(1426), 3, - anon_sym_ATif, - anon_sym_ATfor, - sym_attribute_name, - [21266] = 2, - ACTIONS(1428), 3, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_SLASH, - ACTIONS(1430), 3, - anon_sym_ATif, - anon_sym_ATfor, - sym_attribute_name, - [21277] = 2, - ACTIONS(1434), 1, - anon_sym_EQ, - ACTIONS(1432), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_if, - anon_sym_EQ_GT, - [21288] = 2, - ACTIONS(1436), 3, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_SLASH, - ACTIONS(1438), 3, - anon_sym_ATif, - anon_sym_ATfor, - sym_attribute_name, - [21299] = 2, - ACTIONS(1071), 3, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_SLASH, - ACTIONS(1073), 3, - anon_sym_ATif, - anon_sym_ATfor, - sym_attribute_name, - [21310] = 5, - ACTIONS(1440), 1, - anon_sym_RBRACE, - ACTIONS(1442), 1, - anon_sym_DOT_DOT, - ACTIONS(1444), 1, - sym_identifier, - STATE(524), 1, - aux_sym_struct_pattern_repeat1, - STATE(550), 1, - sym_field_pattern, - [21326] = 5, - ACTIONS(1444), 1, - sym_identifier, - ACTIONS(1446), 1, - anon_sym_RBRACE, - ACTIONS(1448), 1, - anon_sym_DOT_DOT, - STATE(522), 1, - aux_sym_struct_pattern_repeat1, - STATE(550), 1, - sym_field_pattern, - [21342] = 5, - ACTIONS(1444), 1, - sym_identifier, - ACTIONS(1450), 1, - anon_sym_RBRACE, - ACTIONS(1452), 1, - anon_sym_DOT_DOT, - STATE(531), 1, - aux_sym_struct_pattern_repeat1, - STATE(550), 1, - sym_field_pattern, - [21358] = 5, - ACTIONS(1454), 1, - anon_sym_LBRACE, - ACTIONS(1456), 1, - anon_sym_LPAREN, - ACTIONS(1458), 1, - anon_sym_safe, - ACTIONS(1460), 1, - sym_identifier, - STATE(508), 1, - sym_expression_path, - [21374] = 5, - ACTIONS(1444), 1, - sym_identifier, - ACTIONS(1462), 1, - anon_sym_RBRACE, - ACTIONS(1464), 1, - anon_sym_DOT_DOT, - STATE(531), 1, - aux_sym_struct_pattern_repeat1, - STATE(550), 1, - sym_field_pattern, - [21390] = 2, - ACTIONS(1468), 1, - anon_sym_EQ, - ACTIONS(1466), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_EQ_GT, - [21400] = 2, - ACTIONS(1472), 1, - anon_sym_EQ, - ACTIONS(1470), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_EQ_GT, - [21410] = 2, - ACTIONS(1476), 1, - anon_sym_EQ, - ACTIONS(1474), 4, - anon_sym_GT, - anon_sym_SLASH, + STATE(250), 1, + sym_template_comment, + ACTIONS(21), 2, + sym_escape_at, + sym_text_content, + STATE(70), 2, + aux_sym__template_nodes, + sym_template_node, + STATE(270), 2, + sym_self_closing_function_tag, + sym_container_function_tag, + STATE(268), 6, + sym_let_statement, + sym_if_statement, + sym_for_loop, + sym_match_statement, + sym_break_statement, + sym_continue_statement, + STATE(258), 7, + sym_html_element, + sym_template_expression, + sym_template_control_flow, + sym_function_tag, + sym_comment, + sym_raw_block, + sym_embedded_language, + STATE(266), 7, + sym_out_ref, + sym_target_ref, + sym_simple_expression, + sym_complex_expression, + sym_safe_expression, + sym_format_expression, + sym_matches_expression, + [3690] = 16, + ACTIONS(7), 1, + anon_sym_LT, + ACTIONS(9), 1, + aux_sym_simple_expression_token1, + ACTIONS(11), 1, + anon_sym_LT_AT, + ACTIONS(13), 1, + sym_template_comment_1, + ACTIONS(15), 1, + sym_html_comment, + ACTIONS(17), 1, + sym_raw_block_1, + ACTIONS(19), 1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + ACTIONS(220), 1, anon_sym_AT, - sym_identifier, - [21420] = 2, - ACTIONS(1480), 1, - anon_sym_EQ, - ACTIONS(1478), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_EQ_GT, - [21430] = 5, - ACTIONS(1482), 1, + ACTIONS(232), 1, + anon_sym_RBRACE, + STATE(250), 1, + sym_template_comment, + ACTIONS(21), 2, + sym_escape_at, + sym_text_content, + STATE(24), 2, + aux_sym__template_nodes, + sym_template_node, + STATE(270), 2, + sym_self_closing_function_tag, + sym_container_function_tag, + STATE(268), 6, + sym_let_statement, + sym_if_statement, + sym_for_loop, + sym_match_statement, + sym_break_statement, + sym_continue_statement, + STATE(258), 7, + sym_html_element, + sym_template_expression, + sym_template_control_flow, + sym_function_tag, + sym_comment, + sym_raw_block, + sym_embedded_language, + STATE(266), 7, + sym_out_ref, + sym_target_ref, + sym_simple_expression, + sym_complex_expression, + sym_safe_expression, + sym_format_expression, + sym_matches_expression, + [3759] = 16, + ACTIONS(7), 1, + anon_sym_LT, + ACTIONS(9), 1, + aux_sym_simple_expression_token1, + ACTIONS(11), 1, + anon_sym_LT_AT, + ACTIONS(13), 1, + sym_template_comment_1, + ACTIONS(15), 1, + sym_html_comment, + ACTIONS(17), 1, + sym_raw_block_1, + ACTIONS(19), 1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + ACTIONS(220), 1, anon_sym_AT, - ACTIONS(1484), 1, - sym_unquoted_value, - ACTIONS(1486), 1, + ACTIONS(234), 1, + anon_sym_RBRACE, + STATE(250), 1, + sym_template_comment, + ACTIONS(21), 2, + sym_escape_at, + sym_text_content, + STATE(63), 2, + aux_sym__template_nodes, + sym_template_node, + STATE(270), 2, + sym_self_closing_function_tag, + sym_container_function_tag, + STATE(268), 6, + sym_let_statement, + sym_if_statement, + sym_for_loop, + sym_match_statement, + sym_break_statement, + sym_continue_statement, + STATE(258), 7, + sym_html_element, + sym_template_expression, + sym_template_control_flow, + sym_function_tag, + sym_comment, + sym_raw_block, + sym_embedded_language, + STATE(266), 7, + sym_out_ref, + sym_target_ref, + sym_simple_expression, + sym_complex_expression, + sym_safe_expression, + sym_format_expression, + sym_matches_expression, + [3828] = 16, + ACTIONS(7), 1, + anon_sym_LT, + ACTIONS(9), 1, + aux_sym_simple_expression_token1, + ACTIONS(11), 1, + anon_sym_LT_AT, + ACTIONS(13), 1, + sym_template_comment_1, + ACTIONS(15), 1, + sym_html_comment, + ACTIONS(17), 1, + sym_raw_block_1, + ACTIONS(19), 1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + ACTIONS(220), 1, + anon_sym_AT, + ACTIONS(236), 1, + anon_sym_RBRACE, + STATE(250), 1, + sym_template_comment, + ACTIONS(21), 2, + sym_escape_at, + sym_text_content, + STATE(24), 2, + aux_sym__template_nodes, + sym_template_node, + STATE(270), 2, + sym_self_closing_function_tag, + sym_container_function_tag, + STATE(268), 6, + sym_let_statement, + sym_if_statement, + sym_for_loop, + sym_match_statement, + sym_break_statement, + sym_continue_statement, + STATE(258), 7, + sym_html_element, + sym_template_expression, + sym_template_control_flow, + sym_function_tag, + sym_comment, + sym_raw_block, + sym_embedded_language, + STATE(266), 7, + sym_out_ref, + sym_target_ref, + sym_simple_expression, + sym_complex_expression, + sym_safe_expression, + sym_format_expression, + sym_matches_expression, + [3897] = 16, + ACTIONS(7), 1, + anon_sym_LT, + ACTIONS(9), 1, + aux_sym_simple_expression_token1, + ACTIONS(11), 1, + anon_sym_LT_AT, + ACTIONS(13), 1, + sym_template_comment_1, + ACTIONS(15), 1, + sym_html_comment, + ACTIONS(17), 1, + sym_raw_block_1, + ACTIONS(19), 1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + ACTIONS(220), 1, + anon_sym_AT, + ACTIONS(238), 1, + anon_sym_LT_SLASH, + STATE(250), 1, + sym_template_comment, + ACTIONS(21), 2, + sym_escape_at, + sym_text_content, + STATE(24), 2, + aux_sym__template_nodes, + sym_template_node, + STATE(270), 2, + sym_self_closing_function_tag, + sym_container_function_tag, + STATE(268), 6, + sym_let_statement, + sym_if_statement, + sym_for_loop, + sym_match_statement, + sym_break_statement, + sym_continue_statement, + STATE(258), 7, + sym_html_element, + sym_template_expression, + sym_template_control_flow, + sym_function_tag, + sym_comment, + sym_raw_block, + sym_embedded_language, + STATE(266), 7, + sym_out_ref, + sym_target_ref, + sym_simple_expression, + sym_complex_expression, + sym_safe_expression, + sym_format_expression, + sym_matches_expression, + [3966] = 16, + ACTIONS(7), 1, + anon_sym_LT, + ACTIONS(9), 1, + aux_sym_simple_expression_token1, + ACTIONS(11), 1, + anon_sym_LT_AT, + ACTIONS(13), 1, + sym_template_comment_1, + ACTIONS(15), 1, + sym_html_comment, + ACTIONS(17), 1, + sym_raw_block_1, + ACTIONS(19), 1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + ACTIONS(220), 1, + anon_sym_AT, + ACTIONS(240), 1, + anon_sym_RBRACE, + STATE(250), 1, + sym_template_comment, + ACTIONS(21), 2, + sym_escape_at, + sym_text_content, + STATE(66), 2, + aux_sym__template_nodes, + sym_template_node, + STATE(270), 2, + sym_self_closing_function_tag, + sym_container_function_tag, + STATE(268), 6, + sym_let_statement, + sym_if_statement, + sym_for_loop, + sym_match_statement, + sym_break_statement, + sym_continue_statement, + STATE(258), 7, + sym_html_element, + sym_template_expression, + sym_template_control_flow, + sym_function_tag, + sym_comment, + sym_raw_block, + sym_embedded_language, + STATE(266), 7, + sym_out_ref, + sym_target_ref, + sym_simple_expression, + sym_complex_expression, + sym_safe_expression, + sym_format_expression, + sym_matches_expression, + [4035] = 16, + ACTIONS(7), 1, + anon_sym_LT, + ACTIONS(9), 1, + aux_sym_simple_expression_token1, + ACTIONS(11), 1, + anon_sym_LT_AT, + ACTIONS(13), 1, + sym_template_comment_1, + ACTIONS(15), 1, + sym_html_comment, + ACTIONS(17), 1, + sym_raw_block_1, + ACTIONS(19), 1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + ACTIONS(220), 1, + anon_sym_AT, + ACTIONS(242), 1, + anon_sym_RBRACE, + STATE(250), 1, + sym_template_comment, + ACTIONS(21), 2, + sym_escape_at, + sym_text_content, + STATE(24), 2, + aux_sym__template_nodes, + sym_template_node, + STATE(270), 2, + sym_self_closing_function_tag, + sym_container_function_tag, + STATE(268), 6, + sym_let_statement, + sym_if_statement, + sym_for_loop, + sym_match_statement, + sym_break_statement, + sym_continue_statement, + STATE(258), 7, + sym_html_element, + sym_template_expression, + sym_template_control_flow, + sym_function_tag, + sym_comment, + sym_raw_block, + sym_embedded_language, + STATE(266), 7, + sym_out_ref, + sym_target_ref, + sym_simple_expression, + sym_complex_expression, + sym_safe_expression, + sym_format_expression, + sym_matches_expression, + [4104] = 16, + ACTIONS(7), 1, + anon_sym_LT, + ACTIONS(9), 1, + aux_sym_simple_expression_token1, + ACTIONS(11), 1, + anon_sym_LT_AT, + ACTIONS(13), 1, + sym_template_comment_1, + ACTIONS(15), 1, + sym_html_comment, + ACTIONS(17), 1, + sym_raw_block_1, + ACTIONS(19), 1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + ACTIONS(220), 1, + anon_sym_AT, + ACTIONS(244), 1, + anon_sym_LT_SLASH_AT, + STATE(250), 1, + sym_template_comment, + ACTIONS(21), 2, + sym_escape_at, + sym_text_content, + STATE(24), 2, + aux_sym__template_nodes, + sym_template_node, + STATE(270), 2, + sym_self_closing_function_tag, + sym_container_function_tag, + STATE(268), 6, + sym_let_statement, + sym_if_statement, + sym_for_loop, + sym_match_statement, + sym_break_statement, + sym_continue_statement, + STATE(258), 7, + sym_html_element, + sym_template_expression, + sym_template_control_flow, + sym_function_tag, + sym_comment, + sym_raw_block, + sym_embedded_language, + STATE(266), 7, + sym_out_ref, + sym_target_ref, + sym_simple_expression, + sym_complex_expression, + sym_safe_expression, + sym_format_expression, + sym_matches_expression, + [4173] = 16, + ACTIONS(7), 1, + anon_sym_LT, + ACTIONS(9), 1, + aux_sym_simple_expression_token1, + ACTIONS(11), 1, + anon_sym_LT_AT, + ACTIONS(13), 1, + sym_template_comment_1, + ACTIONS(15), 1, + sym_html_comment, + ACTIONS(17), 1, + sym_raw_block_1, + ACTIONS(19), 1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + ACTIONS(220), 1, + anon_sym_AT, + ACTIONS(246), 1, + anon_sym_RBRACE, + STATE(250), 1, + sym_template_comment, + ACTIONS(21), 2, + sym_escape_at, + sym_text_content, + STATE(69), 2, + aux_sym__template_nodes, + sym_template_node, + STATE(270), 2, + sym_self_closing_function_tag, + sym_container_function_tag, + STATE(268), 6, + sym_let_statement, + sym_if_statement, + sym_for_loop, + sym_match_statement, + sym_break_statement, + sym_continue_statement, + STATE(258), 7, + sym_html_element, + sym_template_expression, + sym_template_control_flow, + sym_function_tag, + sym_comment, + sym_raw_block, + sym_embedded_language, + STATE(266), 7, + sym_out_ref, + sym_target_ref, + sym_simple_expression, + sym_complex_expression, + sym_safe_expression, + sym_format_expression, + sym_matches_expression, + [4242] = 16, + ACTIONS(7), 1, + anon_sym_LT, + ACTIONS(9), 1, + aux_sym_simple_expression_token1, + ACTIONS(11), 1, + anon_sym_LT_AT, + ACTIONS(13), 1, + sym_template_comment_1, + ACTIONS(15), 1, + sym_html_comment, + ACTIONS(17), 1, + sym_raw_block_1, + ACTIONS(19), 1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + ACTIONS(220), 1, + anon_sym_AT, + ACTIONS(248), 1, + anon_sym_RBRACE, + STATE(250), 1, + sym_template_comment, + ACTIONS(21), 2, + sym_escape_at, + sym_text_content, + STATE(24), 2, + aux_sym__template_nodes, + sym_template_node, + STATE(270), 2, + sym_self_closing_function_tag, + sym_container_function_tag, + STATE(268), 6, + sym_let_statement, + sym_if_statement, + sym_for_loop, + sym_match_statement, + sym_break_statement, + sym_continue_statement, + STATE(258), 7, + sym_html_element, + sym_template_expression, + sym_template_control_flow, + sym_function_tag, + sym_comment, + sym_raw_block, + sym_embedded_language, + STATE(266), 7, + sym_out_ref, + sym_target_ref, + sym_simple_expression, + sym_complex_expression, + sym_safe_expression, + sym_format_expression, + sym_matches_expression, + [4311] = 16, + ACTIONS(7), 1, + anon_sym_LT, + ACTIONS(9), 1, + aux_sym_simple_expression_token1, + ACTIONS(11), 1, + anon_sym_LT_AT, + ACTIONS(13), 1, + sym_template_comment_1, + ACTIONS(15), 1, + sym_html_comment, + ACTIONS(17), 1, + sym_raw_block_1, + ACTIONS(19), 1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + ACTIONS(220), 1, + anon_sym_AT, + ACTIONS(250), 1, + anon_sym_RBRACE, + STATE(250), 1, + sym_template_comment, + ACTIONS(21), 2, + sym_escape_at, + sym_text_content, + STATE(24), 2, + aux_sym__template_nodes, + sym_template_node, + STATE(270), 2, + sym_self_closing_function_tag, + sym_container_function_tag, + STATE(268), 6, + sym_let_statement, + sym_if_statement, + sym_for_loop, + sym_match_statement, + sym_break_statement, + sym_continue_statement, + STATE(258), 7, + sym_html_element, + sym_template_expression, + sym_template_control_flow, + sym_function_tag, + sym_comment, + sym_raw_block, + sym_embedded_language, + STATE(266), 7, + sym_out_ref, + sym_target_ref, + sym_simple_expression, + sym_complex_expression, + sym_safe_expression, + sym_format_expression, + sym_matches_expression, + [4380] = 16, + ACTIONS(7), 1, + anon_sym_LT, + ACTIONS(9), 1, + aux_sym_simple_expression_token1, + ACTIONS(11), 1, + anon_sym_LT_AT, + ACTIONS(13), 1, + sym_template_comment_1, + ACTIONS(15), 1, + sym_html_comment, + ACTIONS(17), 1, + sym_raw_block_1, + ACTIONS(19), 1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + ACTIONS(220), 1, + anon_sym_AT, + ACTIONS(252), 1, + anon_sym_LT_SLASH_AT, + STATE(250), 1, + sym_template_comment, + ACTIONS(21), 2, + sym_escape_at, + sym_text_content, + STATE(72), 2, + aux_sym__template_nodes, + sym_template_node, + STATE(270), 2, + sym_self_closing_function_tag, + sym_container_function_tag, + STATE(268), 6, + sym_let_statement, + sym_if_statement, + sym_for_loop, + sym_match_statement, + sym_break_statement, + sym_continue_statement, + STATE(258), 7, + sym_html_element, + sym_template_expression, + sym_template_control_flow, + sym_function_tag, + sym_comment, + sym_raw_block, + sym_embedded_language, + STATE(266), 7, + sym_out_ref, + sym_target_ref, + sym_simple_expression, + sym_complex_expression, + sym_safe_expression, + sym_format_expression, + sym_matches_expression, + [4449] = 16, + ACTIONS(7), 1, + anon_sym_LT, + ACTIONS(9), 1, + aux_sym_simple_expression_token1, + ACTIONS(11), 1, + anon_sym_LT_AT, + ACTIONS(13), 1, + sym_template_comment_1, + ACTIONS(15), 1, + sym_html_comment, + ACTIONS(17), 1, + sym_raw_block_1, + ACTIONS(19), 1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + ACTIONS(220), 1, + anon_sym_AT, + ACTIONS(254), 1, + anon_sym_LT_SLASH_AT, + STATE(250), 1, + sym_template_comment, + ACTIONS(21), 2, + sym_escape_at, + sym_text_content, + STATE(24), 2, + aux_sym__template_nodes, + sym_template_node, + STATE(270), 2, + sym_self_closing_function_tag, + sym_container_function_tag, + STATE(268), 6, + sym_let_statement, + sym_if_statement, + sym_for_loop, + sym_match_statement, + sym_break_statement, + sym_continue_statement, + STATE(258), 7, + sym_html_element, + sym_template_expression, + sym_template_control_flow, + sym_function_tag, + sym_comment, + sym_raw_block, + sym_embedded_language, + STATE(266), 7, + sym_out_ref, + sym_target_ref, + sym_simple_expression, + sym_complex_expression, + sym_safe_expression, + sym_format_expression, + sym_matches_expression, + [4518] = 16, + ACTIONS(7), 1, + anon_sym_LT, + ACTIONS(9), 1, + aux_sym_simple_expression_token1, + ACTIONS(11), 1, + anon_sym_LT_AT, + ACTIONS(13), 1, + sym_template_comment_1, + ACTIONS(15), 1, + sym_html_comment, + ACTIONS(17), 1, + sym_raw_block_1, + ACTIONS(19), 1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + ACTIONS(220), 1, + anon_sym_AT, + ACTIONS(254), 1, + anon_sym_LT_SLASH_AT, + STATE(250), 1, + sym_template_comment, + ACTIONS(21), 2, + sym_escape_at, + sym_text_content, + STATE(67), 2, + aux_sym__template_nodes, + sym_template_node, + STATE(270), 2, + sym_self_closing_function_tag, + sym_container_function_tag, + STATE(268), 6, + sym_let_statement, + sym_if_statement, + sym_for_loop, + sym_match_statement, + sym_break_statement, + sym_continue_statement, + STATE(258), 7, + sym_html_element, + sym_template_expression, + sym_template_control_flow, + sym_function_tag, + sym_comment, + sym_raw_block, + sym_embedded_language, + STATE(266), 7, + sym_out_ref, + sym_target_ref, + sym_simple_expression, + sym_complex_expression, + sym_safe_expression, + sym_format_expression, + sym_matches_expression, + [4587] = 16, + ACTIONS(7), 1, + anon_sym_LT, + ACTIONS(9), 1, + aux_sym_simple_expression_token1, + ACTIONS(11), 1, + anon_sym_LT_AT, + ACTIONS(13), 1, + sym_template_comment_1, + ACTIONS(15), 1, + sym_html_comment, + ACTIONS(17), 1, + sym_raw_block_1, + ACTIONS(19), 1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + ACTIONS(220), 1, + anon_sym_AT, + ACTIONS(256), 1, + anon_sym_RBRACE, + STATE(250), 1, + sym_template_comment, + ACTIONS(21), 2, + sym_escape_at, + sym_text_content, + STATE(24), 2, + aux_sym__template_nodes, + sym_template_node, + STATE(270), 2, + sym_self_closing_function_tag, + sym_container_function_tag, + STATE(268), 6, + sym_let_statement, + sym_if_statement, + sym_for_loop, + sym_match_statement, + sym_break_statement, + sym_continue_statement, + STATE(258), 7, + sym_html_element, + sym_template_expression, + sym_template_control_flow, + sym_function_tag, + sym_comment, + sym_raw_block, + sym_embedded_language, + STATE(266), 7, + sym_out_ref, + sym_target_ref, + sym_simple_expression, + sym_complex_expression, + sym_safe_expression, + sym_format_expression, + sym_matches_expression, + [4656] = 16, + ACTIONS(7), 1, + anon_sym_LT, + ACTIONS(9), 1, + aux_sym_simple_expression_token1, + ACTIONS(11), 1, + anon_sym_LT_AT, + ACTIONS(13), 1, + sym_template_comment_1, + ACTIONS(15), 1, + sym_html_comment, + ACTIONS(17), 1, + sym_raw_block_1, + ACTIONS(19), 1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + ACTIONS(220), 1, + anon_sym_AT, + ACTIONS(258), 1, + anon_sym_RBRACE, + STATE(250), 1, + sym_template_comment, + ACTIONS(21), 2, + sym_escape_at, + sym_text_content, + STATE(77), 2, + aux_sym__template_nodes, + sym_template_node, + STATE(270), 2, + sym_self_closing_function_tag, + sym_container_function_tag, + STATE(268), 6, + sym_let_statement, + sym_if_statement, + sym_for_loop, + sym_match_statement, + sym_break_statement, + sym_continue_statement, + STATE(258), 7, + sym_html_element, + sym_template_expression, + sym_template_control_flow, + sym_function_tag, + sym_comment, + sym_raw_block, + sym_embedded_language, + STATE(266), 7, + sym_out_ref, + sym_target_ref, + sym_simple_expression, + sym_complex_expression, + sym_safe_expression, + sym_format_expression, + sym_matches_expression, + [4725] = 16, + ACTIONS(7), 1, + anon_sym_LT, + ACTIONS(9), 1, + aux_sym_simple_expression_token1, + ACTIONS(11), 1, + anon_sym_LT_AT, + ACTIONS(13), 1, + sym_template_comment_1, + ACTIONS(15), 1, + sym_html_comment, + ACTIONS(17), 1, + sym_raw_block_1, + ACTIONS(19), 1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + ACTIONS(220), 1, + anon_sym_AT, + ACTIONS(224), 1, + anon_sym_LT_SLASH, + STATE(250), 1, + sym_template_comment, + ACTIONS(21), 2, + sym_escape_at, + sym_text_content, + STATE(24), 2, + aux_sym__template_nodes, + sym_template_node, + STATE(270), 2, + sym_self_closing_function_tag, + sym_container_function_tag, + STATE(268), 6, + sym_let_statement, + sym_if_statement, + sym_for_loop, + sym_match_statement, + sym_break_statement, + sym_continue_statement, + STATE(258), 7, + sym_html_element, + sym_template_expression, + sym_template_control_flow, + sym_function_tag, + sym_comment, + sym_raw_block, + sym_embedded_language, + STATE(266), 7, + sym_out_ref, + sym_target_ref, + sym_simple_expression, + sym_complex_expression, + sym_safe_expression, + sym_format_expression, + sym_matches_expression, + [4794] = 16, + ACTIONS(7), 1, + anon_sym_LT, + ACTIONS(9), 1, + aux_sym_simple_expression_token1, + ACTIONS(11), 1, + anon_sym_LT_AT, + ACTIONS(13), 1, + sym_template_comment_1, + ACTIONS(15), 1, + sym_html_comment, + ACTIONS(17), 1, + sym_raw_block_1, + ACTIONS(19), 1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + ACTIONS(220), 1, + anon_sym_AT, + ACTIONS(260), 1, + anon_sym_RBRACE, + STATE(250), 1, + sym_template_comment, + ACTIONS(21), 2, + sym_escape_at, + sym_text_content, + STATE(24), 2, + aux_sym__template_nodes, + sym_template_node, + STATE(270), 2, + sym_self_closing_function_tag, + sym_container_function_tag, + STATE(268), 6, + sym_let_statement, + sym_if_statement, + sym_for_loop, + sym_match_statement, + sym_break_statement, + sym_continue_statement, + STATE(258), 7, + sym_html_element, + sym_template_expression, + sym_template_control_flow, + sym_function_tag, + sym_comment, + sym_raw_block, + sym_embedded_language, + STATE(266), 7, + sym_out_ref, + sym_target_ref, + sym_simple_expression, + sym_complex_expression, + sym_safe_expression, + sym_format_expression, + sym_matches_expression, + [4863] = 17, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(262), 1, + anon_sym_AT, + ACTIONS(264), 1, + anon_sym_RPAREN, + ACTIONS(266), 1, + sym_inferred_enum_path, + ACTIONS(268), 1, + sym_rust_expression, + ACTIONS(270), 1, anon_sym_DQUOTE, - STATE(580), 1, + ACTIONS(272), 1, + anon_sym_SQUOTE, + ACTIONS(274), 1, + aux_sym_integer_literal_token1, + ACTIONS(278), 1, + sym_float_literal, + STATE(344), 1, + sym_integer_literal, + STATE(503), 1, + sym_expression, + STATE(714), 1, + sym_argument_list, + ACTIONS(280), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(276), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(365), 3, + sym_primary_expression, + sym_template_block, + sym_render_closure, + STATE(346), 4, sym_string_literal, - STATE(581), 1, - sym_function_attribute_value, - [21446] = 2, - ACTIONS(1490), 1, - anon_sym_EQ, - ACTIONS(1488), 4, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + STATE(369), 4, + sym_rust_path, + sym_inferred_enum_call, + sym_inferred_enum_struct, + sym_literal, + [4926] = 2, + ACTIONS(282), 9, + anon_sym_AT, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_if, + anon_sym_LBRACK, + anon_sym_LT, anon_sym_EQ_GT, - [21456] = 4, - ACTIONS(1494), 1, - sym_identifier, - STATE(531), 1, - aux_sym_struct_pattern_repeat1, - STATE(550), 1, - sym_field_pattern, - ACTIONS(1492), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(284), 19, + aux_sym_rust_path_token1, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [4959] = 17, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(262), 1, + anon_sym_AT, + ACTIONS(266), 1, + sym_inferred_enum_path, + ACTIONS(268), 1, + sym_rust_expression, + ACTIONS(270), 1, + anon_sym_DQUOTE, + ACTIONS(272), 1, + anon_sym_SQUOTE, + ACTIONS(274), 1, + aux_sym_integer_literal_token1, + ACTIONS(278), 1, + sym_float_literal, + ACTIONS(286), 1, + anon_sym_RPAREN, + STATE(344), 1, + sym_integer_literal, + STATE(503), 1, + sym_expression, + STATE(691), 1, + sym_argument_list, + ACTIONS(280), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(276), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(365), 3, + sym_primary_expression, + sym_template_block, + sym_render_closure, + STATE(346), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + STATE(369), 4, + sym_rust_path, + sym_inferred_enum_call, + sym_inferred_enum_struct, + sym_literal, + [5022] = 17, + ACTIONS(288), 1, + aux_sym_rust_path_token1, + ACTIONS(291), 1, anon_sym_RBRACE, - anon_sym_DOT_DOT, - [21470] = 2, - ACTIONS(1499), 1, - anon_sym_COLON, - ACTIONS(1497), 4, + ACTIONS(293), 1, + anon_sym_LPAREN, + ACTIONS(296), 1, + sym_wildcard_pattern, + ACTIONS(299), 1, + anon_sym_DQUOTE, + ACTIONS(302), 1, + anon_sym_SQUOTE, + ACTIONS(305), 1, + aux_sym_integer_literal_token1, + ACTIONS(311), 1, + sym_float_literal, + ACTIONS(317), 1, + sym_identifier, + STATE(590), 1, + sym_pattern, + STATE(594), 1, + sym_integer_literal, + STATE(660), 1, + sym_rust_path, + ACTIONS(314), 2, + anon_sym_true, + anon_sym_false, + STATE(81), 2, + sym_match_arm, + aux_sym_match_statement_repeat1, + ACTIONS(308), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(596), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + STATE(662), 5, + sym_identifier_pattern, + sym_struct_pattern, + sym_tuple_variant_pattern, + sym_tuple_pattern, + sym_literal, + [5085] = 17, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(262), 1, + anon_sym_AT, + ACTIONS(266), 1, + sym_inferred_enum_path, + ACTIONS(268), 1, + sym_rust_expression, + ACTIONS(270), 1, + anon_sym_DQUOTE, + ACTIONS(272), 1, + anon_sym_SQUOTE, + ACTIONS(274), 1, + aux_sym_integer_literal_token1, + ACTIONS(278), 1, + sym_float_literal, + ACTIONS(320), 1, + anon_sym_RPAREN, + STATE(344), 1, + sym_integer_literal, + STATE(503), 1, + sym_expression, + STATE(758), 1, + sym_argument_list, + ACTIONS(280), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(276), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(365), 3, + sym_primary_expression, + sym_template_block, + sym_render_closure, + STATE(346), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + STATE(369), 4, + sym_rust_path, + sym_inferred_enum_call, + sym_inferred_enum_struct, + sym_literal, + [5148] = 17, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(262), 1, + anon_sym_AT, + ACTIONS(266), 1, + sym_inferred_enum_path, + ACTIONS(268), 1, + sym_rust_expression, + ACTIONS(270), 1, + anon_sym_DQUOTE, + ACTIONS(272), 1, + anon_sym_SQUOTE, + ACTIONS(274), 1, + aux_sym_integer_literal_token1, + ACTIONS(278), 1, + sym_float_literal, + ACTIONS(322), 1, + anon_sym_RPAREN, + STATE(344), 1, + sym_integer_literal, + STATE(503), 1, + sym_expression, + STATE(732), 1, + sym_argument_list, + ACTIONS(280), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(276), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(365), 3, + sym_primary_expression, + sym_template_block, + sym_render_closure, + STATE(346), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + STATE(369), 4, + sym_rust_path, + sym_inferred_enum_call, + sym_inferred_enum_struct, + sym_literal, + [5211] = 17, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(324), 1, + anon_sym_RBRACE, + ACTIONS(326), 1, + anon_sym_LPAREN, + ACTIONS(328), 1, + sym_wildcard_pattern, + ACTIONS(330), 1, + anon_sym_DQUOTE, + ACTIONS(332), 1, + anon_sym_SQUOTE, + ACTIONS(334), 1, + aux_sym_integer_literal_token1, + ACTIONS(338), 1, + sym_float_literal, + ACTIONS(342), 1, + sym_identifier, + STATE(590), 1, + sym_pattern, + STATE(594), 1, + sym_integer_literal, + STATE(660), 1, + sym_rust_path, + ACTIONS(340), 2, + anon_sym_true, + anon_sym_false, + STATE(81), 2, + sym_match_arm, + aux_sym_match_statement_repeat1, + ACTIONS(336), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(596), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + STATE(662), 5, + sym_identifier_pattern, + sym_struct_pattern, + sym_tuple_variant_pattern, + sym_tuple_pattern, + sym_literal, + [5274] = 17, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(262), 1, + anon_sym_AT, + ACTIONS(266), 1, + sym_inferred_enum_path, + ACTIONS(268), 1, + sym_rust_expression, + ACTIONS(270), 1, + anon_sym_DQUOTE, + ACTIONS(272), 1, + anon_sym_SQUOTE, + ACTIONS(274), 1, + aux_sym_integer_literal_token1, + ACTIONS(278), 1, + sym_float_literal, + ACTIONS(344), 1, + anon_sym_RPAREN, + STATE(344), 1, + sym_integer_literal, + STATE(503), 1, + sym_expression, + STATE(720), 1, + sym_argument_list, + ACTIONS(280), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(276), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(365), 3, + sym_primary_expression, + sym_template_block, + sym_render_closure, + STATE(346), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + STATE(369), 4, + sym_rust_path, + sym_inferred_enum_call, + sym_inferred_enum_struct, + sym_literal, + [5337] = 17, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(326), 1, + anon_sym_LPAREN, + ACTIONS(328), 1, + sym_wildcard_pattern, + ACTIONS(330), 1, + anon_sym_DQUOTE, + ACTIONS(332), 1, + anon_sym_SQUOTE, + ACTIONS(334), 1, + aux_sym_integer_literal_token1, + ACTIONS(338), 1, + sym_float_literal, + ACTIONS(342), 1, + sym_identifier, + ACTIONS(346), 1, + anon_sym_RBRACE, + STATE(590), 1, + sym_pattern, + STATE(594), 1, + sym_integer_literal, + STATE(660), 1, + sym_rust_path, + ACTIONS(340), 2, + anon_sym_true, + anon_sym_false, + STATE(84), 2, + sym_match_arm, + aux_sym_match_statement_repeat1, + ACTIONS(336), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(596), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + STATE(662), 5, + sym_identifier_pattern, + sym_struct_pattern, + sym_tuple_variant_pattern, + sym_tuple_pattern, + sym_literal, + [5400] = 16, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(262), 1, + anon_sym_AT, + ACTIONS(266), 1, + sym_inferred_enum_path, + ACTIONS(268), 1, + sym_rust_expression, + ACTIONS(270), 1, + anon_sym_DQUOTE, + ACTIONS(272), 1, + anon_sym_SQUOTE, + ACTIONS(274), 1, + aux_sym_integer_literal_token1, + ACTIONS(278), 1, + sym_float_literal, + ACTIONS(348), 1, + anon_sym_RPAREN, + STATE(344), 1, + sym_integer_literal, + STATE(654), 1, + sym_expression, + ACTIONS(280), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(276), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(365), 3, + sym_primary_expression, + sym_template_block, + sym_render_closure, + STATE(346), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + STATE(369), 4, + sym_rust_path, + sym_inferred_enum_call, + sym_inferred_enum_struct, + sym_literal, + [5460] = 3, + ACTIONS(354), 1, + anon_sym_LT, + ACTIONS(350), 7, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(352), 19, + aux_sym_rust_path_token1, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [5494] = 16, + ACTIONS(266), 1, + sym_inferred_enum_path, + ACTIONS(268), 1, + sym_rust_expression, + ACTIONS(272), 1, + anon_sym_SQUOTE, + ACTIONS(274), 1, + aux_sym_integer_literal_token1, + ACTIONS(278), 1, + sym_float_literal, + ACTIONS(356), 1, + anon_sym_AT, + ACTIONS(358), 1, + aux_sym_rust_path_token1, + ACTIONS(360), 1, + anon_sym_let, + ACTIONS(362), 1, + anon_sym_DQUOTE, + STATE(344), 1, + sym_integer_literal, + STATE(606), 1, + sym_expression, + ACTIONS(280), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(276), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(365), 3, + sym_primary_expression, + sym_template_block, + sym_render_closure, + STATE(346), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + STATE(369), 4, + sym_rust_path, + sym_inferred_enum_call, + sym_inferred_enum_struct, + sym_literal, + [5554] = 3, + ACTIONS(368), 1, + anon_sym_DASH_GT, + ACTIONS(364), 7, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(366), 19, + aux_sym_rust_path_token1, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [5588] = 3, + ACTIONS(374), 1, + anon_sym_DASH_GT, + ACTIONS(370), 7, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(372), 19, + aux_sym_rust_path_token1, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [5622] = 16, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(262), 1, + anon_sym_AT, + ACTIONS(266), 1, + sym_inferred_enum_path, + ACTIONS(268), 1, + sym_rust_expression, + ACTIONS(270), 1, + anon_sym_DQUOTE, + ACTIONS(272), 1, + anon_sym_SQUOTE, + ACTIONS(274), 1, + aux_sym_integer_literal_token1, + ACTIONS(278), 1, + sym_float_literal, + STATE(344), 1, + sym_integer_literal, + STATE(674), 1, + sym_default_value, + STATE(675), 1, + sym_expression, + ACTIONS(280), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(276), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(365), 3, + sym_primary_expression, + sym_template_block, + sym_render_closure, + STATE(346), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + STATE(369), 4, + sym_rust_path, + sym_inferred_enum_call, + sym_inferred_enum_struct, + sym_literal, + [5682] = 16, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(262), 1, + anon_sym_AT, + ACTIONS(266), 1, + sym_inferred_enum_path, + ACTIONS(268), 1, + sym_rust_expression, + ACTIONS(270), 1, + anon_sym_DQUOTE, + ACTIONS(272), 1, + anon_sym_SQUOTE, + ACTIONS(274), 1, + aux_sym_integer_literal_token1, + ACTIONS(278), 1, + sym_float_literal, + ACTIONS(376), 1, + anon_sym_RPAREN, + STATE(344), 1, + sym_integer_literal, + STATE(654), 1, + sym_expression, + ACTIONS(280), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(276), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(365), 3, + sym_primary_expression, + sym_template_block, + sym_render_closure, + STATE(346), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + STATE(369), 4, + sym_rust_path, + sym_inferred_enum_call, + sym_inferred_enum_struct, + sym_literal, + [5742] = 16, + ACTIONS(266), 1, + sym_inferred_enum_path, + ACTIONS(268), 1, + sym_rust_expression, + ACTIONS(272), 1, + anon_sym_SQUOTE, + ACTIONS(274), 1, + aux_sym_integer_literal_token1, + ACTIONS(278), 1, + sym_float_literal, + ACTIONS(356), 1, + anon_sym_AT, + ACTIONS(358), 1, + aux_sym_rust_path_token1, + ACTIONS(362), 1, + anon_sym_DQUOTE, + ACTIONS(378), 1, + anon_sym_let, + STATE(344), 1, + sym_integer_literal, + STATE(658), 1, + sym_expression, + ACTIONS(280), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(276), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(365), 3, + sym_primary_expression, + sym_template_block, + sym_render_closure, + STATE(346), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + STATE(369), 4, + sym_rust_path, + sym_inferred_enum_call, + sym_inferred_enum_struct, + sym_literal, + [5802] = 15, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(262), 1, + anon_sym_AT, + ACTIONS(266), 1, + sym_inferred_enum_path, + ACTIONS(268), 1, + sym_rust_expression, + ACTIONS(270), 1, + anon_sym_DQUOTE, + ACTIONS(272), 1, + anon_sym_SQUOTE, + ACTIONS(274), 1, + aux_sym_integer_literal_token1, + ACTIONS(278), 1, + sym_float_literal, + STATE(344), 1, + sym_integer_literal, + STATE(681), 1, + sym_expression, + ACTIONS(280), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(276), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(365), 3, + sym_primary_expression, + sym_template_block, + sym_render_closure, + STATE(346), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + STATE(369), 4, + sym_rust_path, + sym_inferred_enum_call, + sym_inferred_enum_struct, + sym_literal, + [5859] = 2, + ACTIONS(380), 7, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(382), 19, + aux_sym_rust_path_token1, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [5890] = 2, + ACTIONS(384), 7, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(386), 19, + aux_sym_rust_path_token1, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [5921] = 2, + ACTIONS(388), 7, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(390), 19, + aux_sym_rust_path_token1, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [5952] = 2, + ACTIONS(392), 7, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(394), 19, + aux_sym_rust_path_token1, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [5983] = 2, + ACTIONS(396), 7, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(398), 19, + aux_sym_rust_path_token1, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [6014] = 2, + ACTIONS(400), 7, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(402), 19, + aux_sym_rust_path_token1, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [6045] = 2, + ACTIONS(404), 7, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(406), 19, + aux_sym_rust_path_token1, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [6076] = 2, + ACTIONS(408), 7, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(410), 19, + aux_sym_rust_path_token1, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [6107] = 2, + ACTIONS(412), 7, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(414), 19, + aux_sym_rust_path_token1, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [6138] = 15, + ACTIONS(266), 1, + sym_inferred_enum_path, + ACTIONS(268), 1, + sym_rust_expression, + ACTIONS(272), 1, + anon_sym_SQUOTE, + ACTIONS(274), 1, + aux_sym_integer_literal_token1, + ACTIONS(278), 1, + sym_float_literal, + ACTIONS(356), 1, + anon_sym_AT, + ACTIONS(358), 1, + aux_sym_rust_path_token1, + ACTIONS(362), 1, + anon_sym_DQUOTE, + STATE(344), 1, + sym_integer_literal, + STATE(747), 1, + sym_expression, + ACTIONS(280), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(276), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(365), 3, + sym_primary_expression, + sym_template_block, + sym_render_closure, + STATE(346), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + STATE(369), 4, + sym_rust_path, + sym_inferred_enum_call, + sym_inferred_enum_struct, + sym_literal, + [6195] = 15, + ACTIONS(266), 1, + sym_inferred_enum_path, + ACTIONS(268), 1, + sym_rust_expression, + ACTIONS(272), 1, + anon_sym_SQUOTE, + ACTIONS(274), 1, + aux_sym_integer_literal_token1, + ACTIONS(278), 1, + sym_float_literal, + ACTIONS(356), 1, + anon_sym_AT, + ACTIONS(358), 1, + aux_sym_rust_path_token1, + ACTIONS(362), 1, + anon_sym_DQUOTE, + STATE(344), 1, + sym_integer_literal, + STATE(666), 1, + sym_expression, + ACTIONS(280), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(276), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(365), 3, + sym_primary_expression, + sym_template_block, + sym_render_closure, + STATE(346), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + STATE(369), 4, + sym_rust_path, + sym_inferred_enum_call, + sym_inferred_enum_struct, + sym_literal, + [6252] = 15, + ACTIONS(266), 1, + sym_inferred_enum_path, + ACTIONS(268), 1, + sym_rust_expression, + ACTIONS(272), 1, + anon_sym_SQUOTE, + ACTIONS(274), 1, + aux_sym_integer_literal_token1, + ACTIONS(278), 1, + sym_float_literal, + ACTIONS(356), 1, + anon_sym_AT, + ACTIONS(358), 1, + aux_sym_rust_path_token1, + ACTIONS(362), 1, + anon_sym_DQUOTE, + STATE(344), 1, + sym_integer_literal, + STATE(749), 1, + sym_expression, + ACTIONS(280), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(276), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(365), 3, + sym_primary_expression, + sym_template_block, + sym_render_closure, + STATE(346), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + STATE(369), 4, + sym_rust_path, + sym_inferred_enum_call, + sym_inferred_enum_struct, + sym_literal, + [6309] = 2, + ACTIONS(416), 7, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(418), 19, + aux_sym_rust_path_token1, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [6340] = 15, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(262), 1, + anon_sym_AT, + ACTIONS(266), 1, + sym_inferred_enum_path, + ACTIONS(268), 1, + sym_rust_expression, + ACTIONS(270), 1, + anon_sym_DQUOTE, + ACTIONS(272), 1, + anon_sym_SQUOTE, + ACTIONS(274), 1, + aux_sym_integer_literal_token1, + ACTIONS(278), 1, + sym_float_literal, + STATE(344), 1, + sym_integer_literal, + STATE(765), 1, + sym_expression, + ACTIONS(280), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(276), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(365), 3, + sym_primary_expression, + sym_template_block, + sym_render_closure, + STATE(346), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + STATE(369), 4, + sym_rust_path, + sym_inferred_enum_call, + sym_inferred_enum_struct, + sym_literal, + [6397] = 2, + ACTIONS(420), 7, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(422), 19, + aux_sym_rust_path_token1, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [6428] = 15, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(262), 1, + anon_sym_AT, + ACTIONS(266), 1, + sym_inferred_enum_path, + ACTIONS(268), 1, + sym_rust_expression, + ACTIONS(270), 1, + anon_sym_DQUOTE, + ACTIONS(272), 1, + anon_sym_SQUOTE, + ACTIONS(274), 1, + aux_sym_integer_literal_token1, + ACTIONS(278), 1, + sym_float_literal, + STATE(344), 1, + sym_integer_literal, + STATE(715), 1, + sym_expression, + ACTIONS(280), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(276), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(365), 3, + sym_primary_expression, + sym_template_block, + sym_render_closure, + STATE(346), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + STATE(369), 4, + sym_rust_path, + sym_inferred_enum_call, + sym_inferred_enum_struct, + sym_literal, + [6485] = 2, + ACTIONS(424), 7, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(426), 19, + aux_sym_rust_path_token1, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [6516] = 16, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(270), 1, + anon_sym_DQUOTE, + ACTIONS(272), 1, + anon_sym_SQUOTE, + ACTIONS(274), 1, + aux_sym_integer_literal_token1, + ACTIONS(278), 1, + sym_float_literal, + ACTIONS(428), 1, + anon_sym_LPAREN, + ACTIONS(430), 1, + anon_sym_RPAREN, + ACTIONS(432), 1, + sym_wildcard_pattern, + ACTIONS(434), 1, + sym_identifier, + STATE(344), 1, + sym_integer_literal, + STATE(534), 1, + sym_pattern, + STATE(631), 1, + sym_rust_path, + ACTIONS(280), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(276), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(346), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + STATE(442), 5, + sym_identifier_pattern, + sym_struct_pattern, + sym_tuple_variant_pattern, + sym_tuple_pattern, + sym_literal, + [6575] = 15, + ACTIONS(266), 1, + sym_inferred_enum_path, + ACTIONS(268), 1, + sym_rust_expression, + ACTIONS(272), 1, + anon_sym_SQUOTE, + ACTIONS(274), 1, + aux_sym_integer_literal_token1, + ACTIONS(278), 1, + sym_float_literal, + ACTIONS(356), 1, + anon_sym_AT, + ACTIONS(358), 1, + aux_sym_rust_path_token1, + ACTIONS(362), 1, + anon_sym_DQUOTE, + STATE(344), 1, + sym_integer_literal, + STATE(759), 1, + sym_expression, + ACTIONS(280), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(276), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(365), 3, + sym_primary_expression, + sym_template_block, + sym_render_closure, + STATE(346), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + STATE(369), 4, + sym_rust_path, + sym_inferred_enum_call, + sym_inferred_enum_struct, + sym_literal, + [6632] = 16, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(270), 1, + anon_sym_DQUOTE, + ACTIONS(272), 1, + anon_sym_SQUOTE, + ACTIONS(274), 1, + aux_sym_integer_literal_token1, + ACTIONS(278), 1, + sym_float_literal, + ACTIONS(428), 1, + anon_sym_LPAREN, + ACTIONS(432), 1, + sym_wildcard_pattern, + ACTIONS(434), 1, + sym_identifier, + ACTIONS(436), 1, + anon_sym_RPAREN, + STATE(344), 1, + sym_integer_literal, + STATE(631), 1, + sym_rust_path, + STATE(650), 1, + sym_pattern, + ACTIONS(280), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(276), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(346), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + STATE(442), 5, + sym_identifier_pattern, + sym_struct_pattern, + sym_tuple_variant_pattern, + sym_tuple_pattern, + sym_literal, + [6691] = 16, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(270), 1, + anon_sym_DQUOTE, + ACTIONS(272), 1, + anon_sym_SQUOTE, + ACTIONS(274), 1, + aux_sym_integer_literal_token1, + ACTIONS(278), 1, + sym_float_literal, + ACTIONS(428), 1, + anon_sym_LPAREN, + ACTIONS(432), 1, + sym_wildcard_pattern, + ACTIONS(434), 1, + sym_identifier, + ACTIONS(438), 1, + anon_sym_RPAREN, + STATE(344), 1, + sym_integer_literal, + STATE(631), 1, + sym_rust_path, + STATE(650), 1, + sym_pattern, + ACTIONS(280), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(276), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(346), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + STATE(442), 5, + sym_identifier_pattern, + sym_struct_pattern, + sym_tuple_variant_pattern, + sym_tuple_pattern, + sym_literal, + [6750] = 15, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(262), 1, + anon_sym_AT, + ACTIONS(266), 1, + sym_inferred_enum_path, + ACTIONS(268), 1, + sym_rust_expression, + ACTIONS(270), 1, + anon_sym_DQUOTE, + ACTIONS(272), 1, + anon_sym_SQUOTE, + ACTIONS(274), 1, + aux_sym_integer_literal_token1, + ACTIONS(278), 1, + sym_float_literal, + STATE(344), 1, + sym_integer_literal, + STATE(730), 1, + sym_expression, + ACTIONS(280), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(276), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(365), 3, + sym_primary_expression, + sym_template_block, + sym_render_closure, + STATE(346), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + STATE(369), 4, + sym_rust_path, + sym_inferred_enum_call, + sym_inferred_enum_struct, + sym_literal, + [6807] = 3, + ACTIONS(444), 1, + anon_sym_COMMA, + ACTIONS(440), 6, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(442), 19, + aux_sym_rust_path_token1, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [6840] = 16, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(270), 1, + anon_sym_DQUOTE, + ACTIONS(272), 1, + anon_sym_SQUOTE, + ACTIONS(274), 1, + aux_sym_integer_literal_token1, + ACTIONS(278), 1, + sym_float_literal, + ACTIONS(428), 1, + anon_sym_LPAREN, + ACTIONS(432), 1, + sym_wildcard_pattern, + ACTIONS(434), 1, + sym_identifier, + ACTIONS(446), 1, + anon_sym_RPAREN, + STATE(344), 1, + sym_integer_literal, + STATE(502), 1, + sym_pattern, + STATE(631), 1, + sym_rust_path, + ACTIONS(280), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(276), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(346), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + STATE(442), 5, + sym_identifier_pattern, + sym_struct_pattern, + sym_tuple_variant_pattern, + sym_tuple_pattern, + sym_literal, + [6899] = 16, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(270), 1, + anon_sym_DQUOTE, + ACTIONS(272), 1, + anon_sym_SQUOTE, + ACTIONS(274), 1, + aux_sym_integer_literal_token1, + ACTIONS(278), 1, + sym_float_literal, + ACTIONS(428), 1, + anon_sym_LPAREN, + ACTIONS(432), 1, + sym_wildcard_pattern, + ACTIONS(434), 1, + sym_identifier, + ACTIONS(448), 1, + anon_sym_RPAREN, + STATE(344), 1, + sym_integer_literal, + STATE(631), 1, + sym_rust_path, + STATE(650), 1, + sym_pattern, + ACTIONS(280), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(276), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(346), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + STATE(442), 5, + sym_identifier_pattern, + sym_struct_pattern, + sym_tuple_variant_pattern, + sym_tuple_pattern, + sym_literal, + [6958] = 16, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(270), 1, + anon_sym_DQUOTE, + ACTIONS(272), 1, + anon_sym_SQUOTE, + ACTIONS(274), 1, + aux_sym_integer_literal_token1, + ACTIONS(278), 1, + sym_float_literal, + ACTIONS(428), 1, + anon_sym_LPAREN, + ACTIONS(432), 1, + sym_wildcard_pattern, + ACTIONS(434), 1, + sym_identifier, + ACTIONS(450), 1, + anon_sym_RPAREN, + STATE(344), 1, + sym_integer_literal, + STATE(631), 1, + sym_rust_path, + STATE(650), 1, + sym_pattern, + ACTIONS(280), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(276), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(346), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + STATE(442), 5, + sym_identifier_pattern, + sym_struct_pattern, + sym_tuple_variant_pattern, + sym_tuple_pattern, + sym_literal, + [7017] = 2, + ACTIONS(452), 7, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(454), 19, + aux_sym_rust_path_token1, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [7048] = 16, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(270), 1, + anon_sym_DQUOTE, + ACTIONS(272), 1, + anon_sym_SQUOTE, + ACTIONS(274), 1, + aux_sym_integer_literal_token1, + ACTIONS(278), 1, + sym_float_literal, + ACTIONS(428), 1, + anon_sym_LPAREN, + ACTIONS(432), 1, + sym_wildcard_pattern, + ACTIONS(434), 1, + sym_identifier, + ACTIONS(456), 1, + anon_sym_RPAREN, + STATE(344), 1, + sym_integer_literal, + STATE(631), 1, + sym_rust_path, + STATE(650), 1, + sym_pattern, + ACTIONS(280), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(276), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(346), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + STATE(442), 5, + sym_identifier_pattern, + sym_struct_pattern, + sym_tuple_variant_pattern, + sym_tuple_pattern, + sym_literal, + [7107] = 15, + ACTIONS(266), 1, + sym_inferred_enum_path, + ACTIONS(268), 1, + sym_rust_expression, + ACTIONS(272), 1, + anon_sym_SQUOTE, + ACTIONS(274), 1, + aux_sym_integer_literal_token1, + ACTIONS(278), 1, + sym_float_literal, + ACTIONS(356), 1, + anon_sym_AT, + ACTIONS(358), 1, + aux_sym_rust_path_token1, + ACTIONS(362), 1, + anon_sym_DQUOTE, + STATE(344), 1, + sym_integer_literal, + STATE(639), 1, + sym_expression, + ACTIONS(280), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(276), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(365), 3, + sym_primary_expression, + sym_template_block, + sym_render_closure, + STATE(346), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + STATE(369), 4, + sym_rust_path, + sym_inferred_enum_call, + sym_inferred_enum_struct, + sym_literal, + [7164] = 15, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(262), 1, + anon_sym_AT, + ACTIONS(266), 1, + sym_inferred_enum_path, + ACTIONS(268), 1, + sym_rust_expression, + ACTIONS(270), 1, + anon_sym_DQUOTE, + ACTIONS(272), 1, + anon_sym_SQUOTE, + ACTIONS(274), 1, + aux_sym_integer_literal_token1, + ACTIONS(278), 1, + sym_float_literal, + STATE(344), 1, + sym_integer_literal, + STATE(618), 1, + sym_expression, + ACTIONS(280), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(276), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(365), 3, + sym_primary_expression, + sym_template_block, + sym_render_closure, + STATE(346), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + STATE(369), 4, + sym_rust_path, + sym_inferred_enum_call, + sym_inferred_enum_struct, + sym_literal, + [7221] = 16, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(270), 1, + anon_sym_DQUOTE, + ACTIONS(272), 1, + anon_sym_SQUOTE, + ACTIONS(274), 1, + aux_sym_integer_literal_token1, + ACTIONS(278), 1, + sym_float_literal, + ACTIONS(428), 1, + anon_sym_LPAREN, + ACTIONS(432), 1, + sym_wildcard_pattern, + ACTIONS(434), 1, + sym_identifier, + ACTIONS(458), 1, + anon_sym_RPAREN, + STATE(344), 1, + sym_integer_literal, + STATE(631), 1, + sym_rust_path, + STATE(650), 1, + sym_pattern, + ACTIONS(280), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(276), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(346), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + STATE(442), 5, + sym_identifier_pattern, + sym_struct_pattern, + sym_tuple_variant_pattern, + sym_tuple_pattern, + sym_literal, + [7280] = 15, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(262), 1, + anon_sym_AT, + ACTIONS(266), 1, + sym_inferred_enum_path, + ACTIONS(268), 1, + sym_rust_expression, + ACTIONS(270), 1, + anon_sym_DQUOTE, + ACTIONS(272), 1, + anon_sym_SQUOTE, + ACTIONS(274), 1, + aux_sym_integer_literal_token1, + ACTIONS(278), 1, + sym_float_literal, + STATE(344), 1, + sym_integer_literal, + STATE(717), 1, + sym_expression, + ACTIONS(280), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(276), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(365), 3, + sym_primary_expression, + sym_template_block, + sym_render_closure, + STATE(346), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + STATE(369), 4, + sym_rust_path, + sym_inferred_enum_call, + sym_inferred_enum_struct, + sym_literal, + [7337] = 15, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(262), 1, + anon_sym_AT, + ACTIONS(266), 1, + sym_inferred_enum_path, + ACTIONS(268), 1, + sym_rust_expression, + ACTIONS(270), 1, + anon_sym_DQUOTE, + ACTIONS(272), 1, + anon_sym_SQUOTE, + ACTIONS(274), 1, + aux_sym_integer_literal_token1, + ACTIONS(278), 1, + sym_float_literal, + STATE(344), 1, + sym_integer_literal, + STATE(654), 1, + sym_expression, + ACTIONS(280), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(276), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(365), 3, + sym_primary_expression, + sym_template_block, + sym_render_closure, + STATE(346), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + STATE(369), 4, + sym_rust_path, + sym_inferred_enum_call, + sym_inferred_enum_struct, + sym_literal, + [7394] = 2, + ACTIONS(460), 7, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(462), 19, + aux_sym_rust_path_token1, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [7425] = 15, + ACTIONS(129), 1, + aux_sym_rust_path_token1, + ACTIONS(262), 1, + anon_sym_AT, + ACTIONS(266), 1, + sym_inferred_enum_path, + ACTIONS(268), 1, + sym_rust_expression, + ACTIONS(464), 1, + anon_sym_DQUOTE, + ACTIONS(466), 1, + anon_sym_SQUOTE, + ACTIONS(468), 1, + aux_sym_integer_literal_token1, + ACTIONS(472), 1, + sym_float_literal, + STATE(408), 1, + sym_integer_literal, + STATE(743), 1, + sym_expression, + ACTIONS(474), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(470), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(365), 3, + sym_primary_expression, + sym_template_block, + sym_render_closure, + STATE(369), 4, + sym_rust_path, + sym_inferred_enum_call, + sym_inferred_enum_struct, + sym_literal, + STATE(410), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + [7482] = 2, + ACTIONS(476), 7, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(478), 19, + aux_sym_rust_path_token1, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [7513] = 16, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(270), 1, + anon_sym_DQUOTE, + ACTIONS(272), 1, + anon_sym_SQUOTE, + ACTIONS(274), 1, + aux_sym_integer_literal_token1, + ACTIONS(278), 1, + sym_float_literal, + ACTIONS(428), 1, + anon_sym_LPAREN, + ACTIONS(432), 1, + sym_wildcard_pattern, + ACTIONS(434), 1, + sym_identifier, + ACTIONS(480), 1, + anon_sym_RPAREN, + STATE(344), 1, + sym_integer_literal, + STATE(559), 1, + sym_pattern, + STATE(631), 1, + sym_rust_path, + ACTIONS(280), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(276), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(346), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + STATE(442), 5, + sym_identifier_pattern, + sym_struct_pattern, + sym_tuple_variant_pattern, + sym_tuple_pattern, + sym_literal, + [7572] = 16, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(270), 1, + anon_sym_DQUOTE, + ACTIONS(272), 1, + anon_sym_SQUOTE, + ACTIONS(274), 1, + aux_sym_integer_literal_token1, + ACTIONS(278), 1, + sym_float_literal, + ACTIONS(428), 1, + anon_sym_LPAREN, + ACTIONS(432), 1, + sym_wildcard_pattern, + ACTIONS(434), 1, + sym_identifier, + ACTIONS(482), 1, + anon_sym_RPAREN, + STATE(344), 1, + sym_integer_literal, + STATE(631), 1, + sym_rust_path, + STATE(650), 1, + sym_pattern, + ACTIONS(280), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(276), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(346), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + STATE(442), 5, + sym_identifier_pattern, + sym_struct_pattern, + sym_tuple_variant_pattern, + sym_tuple_pattern, + sym_literal, + [7631] = 16, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(270), 1, + anon_sym_DQUOTE, + ACTIONS(272), 1, + anon_sym_SQUOTE, + ACTIONS(274), 1, + aux_sym_integer_literal_token1, + ACTIONS(278), 1, + sym_float_literal, + ACTIONS(428), 1, + anon_sym_LPAREN, + ACTIONS(432), 1, + sym_wildcard_pattern, + ACTIONS(434), 1, + sym_identifier, + ACTIONS(484), 1, + anon_sym_RPAREN, + STATE(344), 1, + sym_integer_literal, + STATE(631), 1, + sym_rust_path, + STATE(650), 1, + sym_pattern, + ACTIONS(280), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(276), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(346), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + STATE(442), 5, + sym_identifier_pattern, + sym_struct_pattern, + sym_tuple_variant_pattern, + sym_tuple_pattern, + sym_literal, + [7690] = 16, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(270), 1, + anon_sym_DQUOTE, + ACTIONS(272), 1, + anon_sym_SQUOTE, + ACTIONS(274), 1, + aux_sym_integer_literal_token1, + ACTIONS(278), 1, + sym_float_literal, + ACTIONS(428), 1, + anon_sym_LPAREN, + ACTIONS(432), 1, + sym_wildcard_pattern, + ACTIONS(434), 1, + sym_identifier, + ACTIONS(486), 1, + anon_sym_RPAREN, + STATE(344), 1, + sym_integer_literal, + STATE(631), 1, + sym_rust_path, + STATE(650), 1, + sym_pattern, + ACTIONS(280), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(276), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(346), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + STATE(442), 5, + sym_identifier_pattern, + sym_struct_pattern, + sym_tuple_variant_pattern, + sym_tuple_pattern, + sym_literal, + [7749] = 2, + ACTIONS(488), 7, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(490), 19, + aux_sym_rust_path_token1, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [7780] = 16, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(270), 1, + anon_sym_DQUOTE, + ACTIONS(272), 1, + anon_sym_SQUOTE, + ACTIONS(274), 1, + aux_sym_integer_literal_token1, + ACTIONS(278), 1, + sym_float_literal, + ACTIONS(428), 1, + anon_sym_LPAREN, + ACTIONS(432), 1, + sym_wildcard_pattern, + ACTIONS(434), 1, + sym_identifier, + ACTIONS(492), 1, + anon_sym_RPAREN, + STATE(344), 1, + sym_integer_literal, + STATE(631), 1, + sym_rust_path, + STATE(650), 1, + sym_pattern, + ACTIONS(280), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(276), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(346), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + STATE(442), 5, + sym_identifier_pattern, + sym_struct_pattern, + sym_tuple_variant_pattern, + sym_tuple_pattern, + sym_literal, + [7839] = 16, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(270), 1, + anon_sym_DQUOTE, + ACTIONS(272), 1, + anon_sym_SQUOTE, + ACTIONS(274), 1, + aux_sym_integer_literal_token1, + ACTIONS(278), 1, + sym_float_literal, + ACTIONS(428), 1, + anon_sym_LPAREN, + ACTIONS(432), 1, + sym_wildcard_pattern, + ACTIONS(434), 1, + sym_identifier, + ACTIONS(494), 1, + anon_sym_RPAREN, + STATE(344), 1, + sym_integer_literal, + STATE(631), 1, + sym_rust_path, + STATE(650), 1, + sym_pattern, + ACTIONS(280), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(276), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(346), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + STATE(442), 5, + sym_identifier_pattern, + sym_struct_pattern, + sym_tuple_variant_pattern, + sym_tuple_pattern, + sym_literal, + [7898] = 2, + ACTIONS(496), 7, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(498), 19, + aux_sym_rust_path_token1, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [7929] = 15, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(262), 1, + anon_sym_AT, + ACTIONS(266), 1, + sym_inferred_enum_path, + ACTIONS(268), 1, + sym_rust_expression, + ACTIONS(270), 1, + anon_sym_DQUOTE, + ACTIONS(272), 1, + anon_sym_SQUOTE, + ACTIONS(274), 1, + aux_sym_integer_literal_token1, + ACTIONS(278), 1, + sym_float_literal, + STATE(344), 1, + sym_integer_literal, + STATE(760), 1, + sym_expression, + ACTIONS(280), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(276), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(365), 3, + sym_primary_expression, + sym_template_block, + sym_render_closure, + STATE(346), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + STATE(369), 4, + sym_rust_path, + sym_inferred_enum_call, + sym_inferred_enum_struct, + sym_literal, + [7986] = 15, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(262), 1, + anon_sym_AT, + ACTIONS(266), 1, + sym_inferred_enum_path, + ACTIONS(268), 1, + sym_rust_expression, + ACTIONS(270), 1, + anon_sym_DQUOTE, + ACTIONS(272), 1, + anon_sym_SQUOTE, + ACTIONS(274), 1, + aux_sym_integer_literal_token1, + ACTIONS(278), 1, + sym_float_literal, + STATE(344), 1, + sym_integer_literal, + STATE(699), 1, + sym_expression, + ACTIONS(280), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(276), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(365), 3, + sym_primary_expression, + sym_template_block, + sym_render_closure, + STATE(346), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + STATE(369), 4, + sym_rust_path, + sym_inferred_enum_call, + sym_inferred_enum_struct, + sym_literal, + [8043] = 15, + ACTIONS(266), 1, + sym_inferred_enum_path, + ACTIONS(268), 1, + sym_rust_expression, + ACTIONS(272), 1, + anon_sym_SQUOTE, + ACTIONS(274), 1, + aux_sym_integer_literal_token1, + ACTIONS(278), 1, + sym_float_literal, + ACTIONS(356), 1, + anon_sym_AT, + ACTIONS(358), 1, + aux_sym_rust_path_token1, + ACTIONS(362), 1, + anon_sym_DQUOTE, + STATE(344), 1, + sym_integer_literal, + STATE(678), 1, + sym_expression, + ACTIONS(280), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(276), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(365), 3, + sym_primary_expression, + sym_template_block, + sym_render_closure, + STATE(346), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + STATE(369), 4, + sym_rust_path, + sym_inferred_enum_call, + sym_inferred_enum_struct, + sym_literal, + [8100] = 15, + ACTIONS(500), 1, + anon_sym_AT, + ACTIONS(502), 1, + aux_sym_rust_path_token1, + ACTIONS(504), 1, + sym_inferred_enum_path, + ACTIONS(506), 1, + sym_rust_expression, + ACTIONS(508), 1, + anon_sym_DQUOTE, + ACTIONS(510), 1, + anon_sym_SQUOTE, + ACTIONS(512), 1, + aux_sym_integer_literal_token1, + ACTIONS(516), 1, + sym_float_literal, + STATE(212), 1, + sym_integer_literal, + STATE(214), 1, + sym_expression, + ACTIONS(518), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(514), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(215), 3, + sym_primary_expression, + sym_template_block, + sym_render_closure, + STATE(209), 4, + sym_rust_path, + sym_inferred_enum_call, + sym_inferred_enum_struct, + sym_literal, + STATE(218), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + [8157] = 15, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(262), 1, + anon_sym_AT, + ACTIONS(266), 1, + sym_inferred_enum_path, + ACTIONS(268), 1, + sym_rust_expression, + ACTIONS(270), 1, + anon_sym_DQUOTE, + ACTIONS(272), 1, + anon_sym_SQUOTE, + ACTIONS(274), 1, + aux_sym_integer_literal_token1, + ACTIONS(278), 1, + sym_float_literal, + STATE(344), 1, + sym_integer_literal, + STATE(685), 1, + sym_expression, + ACTIONS(280), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(276), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(365), 3, + sym_primary_expression, + sym_template_block, + sym_render_closure, + STATE(346), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + STATE(369), 4, + sym_rust_path, + sym_inferred_enum_call, + sym_inferred_enum_struct, + sym_literal, + [8214] = 15, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(262), 1, + anon_sym_AT, + ACTIONS(266), 1, + sym_inferred_enum_path, + ACTIONS(268), 1, + sym_rust_expression, + ACTIONS(270), 1, + anon_sym_DQUOTE, + ACTIONS(272), 1, + anon_sym_SQUOTE, + ACTIONS(274), 1, + aux_sym_integer_literal_token1, + ACTIONS(278), 1, + sym_float_literal, + STATE(344), 1, + sym_integer_literal, + STATE(612), 1, + sym_expression, + ACTIONS(280), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(276), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(365), 3, + sym_primary_expression, + sym_template_block, + sym_render_closure, + STATE(346), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + STATE(369), 4, + sym_rust_path, + sym_inferred_enum_call, + sym_inferred_enum_struct, + sym_literal, + [8271] = 15, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(262), 1, + anon_sym_AT, + ACTIONS(266), 1, + sym_inferred_enum_path, + ACTIONS(268), 1, + sym_rust_expression, + ACTIONS(270), 1, + anon_sym_DQUOTE, + ACTIONS(272), 1, + anon_sym_SQUOTE, + ACTIONS(274), 1, + aux_sym_integer_literal_token1, + ACTIONS(278), 1, + sym_float_literal, + STATE(344), 1, + sym_integer_literal, + STATE(733), 1, + sym_expression, + ACTIONS(280), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(276), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(365), 3, + sym_primary_expression, + sym_template_block, + sym_render_closure, + STATE(346), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + STATE(369), 4, + sym_rust_path, + sym_inferred_enum_call, + sym_inferred_enum_struct, + sym_literal, + [8328] = 15, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(262), 1, + anon_sym_AT, + ACTIONS(266), 1, + sym_inferred_enum_path, + ACTIONS(268), 1, + sym_rust_expression, + ACTIONS(270), 1, + anon_sym_DQUOTE, + ACTIONS(272), 1, + anon_sym_SQUOTE, + ACTIONS(274), 1, + aux_sym_integer_literal_token1, + ACTIONS(278), 1, + sym_float_literal, + STATE(344), 1, + sym_integer_literal, + STATE(703), 1, + sym_expression, + ACTIONS(280), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(276), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(365), 3, + sym_primary_expression, + sym_template_block, + sym_render_closure, + STATE(346), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + STATE(369), 4, + sym_rust_path, + sym_inferred_enum_call, + sym_inferred_enum_struct, + sym_literal, + [8385] = 15, + ACTIONS(266), 1, + sym_inferred_enum_path, + ACTIONS(268), 1, + sym_rust_expression, + ACTIONS(272), 1, + anon_sym_SQUOTE, + ACTIONS(274), 1, + aux_sym_integer_literal_token1, + ACTIONS(278), 1, + sym_float_literal, + ACTIONS(356), 1, + anon_sym_AT, + ACTIONS(358), 1, + aux_sym_rust_path_token1, + ACTIONS(362), 1, + anon_sym_DQUOTE, + STATE(344), 1, + sym_integer_literal, + STATE(648), 1, + sym_expression, + ACTIONS(280), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(276), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(365), 3, + sym_primary_expression, + sym_template_block, + sym_render_closure, + STATE(346), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + STATE(369), 4, + sym_rust_path, + sym_inferred_enum_call, + sym_inferred_enum_struct, + sym_literal, + [8442] = 2, + ACTIONS(364), 7, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(366), 19, + aux_sym_rust_path_token1, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [8473] = 15, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(262), 1, + anon_sym_AT, + ACTIONS(266), 1, + sym_inferred_enum_path, + ACTIONS(268), 1, + sym_rust_expression, + ACTIONS(270), 1, + anon_sym_DQUOTE, + ACTIONS(272), 1, + anon_sym_SQUOTE, + ACTIONS(274), 1, + aux_sym_integer_literal_token1, + ACTIONS(278), 1, + sym_float_literal, + STATE(344), 1, + sym_integer_literal, + STATE(739), 1, + sym_expression, + ACTIONS(280), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(276), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(365), 3, + sym_primary_expression, + sym_template_block, + sym_render_closure, + STATE(346), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + STATE(369), 4, + sym_rust_path, + sym_inferred_enum_call, + sym_inferred_enum_struct, + sym_literal, + [8530] = 15, + ACTIONS(266), 1, + sym_inferred_enum_path, + ACTIONS(268), 1, + sym_rust_expression, + ACTIONS(272), 1, + anon_sym_SQUOTE, + ACTIONS(274), 1, + aux_sym_integer_literal_token1, + ACTIONS(278), 1, + sym_float_literal, + ACTIONS(356), 1, + anon_sym_AT, + ACTIONS(358), 1, + aux_sym_rust_path_token1, + ACTIONS(362), 1, + anon_sym_DQUOTE, + STATE(344), 1, + sym_integer_literal, + STATE(737), 1, + sym_expression, + ACTIONS(280), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(276), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(365), 3, + sym_primary_expression, + sym_template_block, + sym_render_closure, + STATE(346), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + STATE(369), 4, + sym_rust_path, + sym_inferred_enum_call, + sym_inferred_enum_struct, + sym_literal, + [8587] = 15, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(262), 1, + anon_sym_AT, + ACTIONS(266), 1, + sym_inferred_enum_path, + ACTIONS(268), 1, + sym_rust_expression, + ACTIONS(270), 1, + anon_sym_DQUOTE, + ACTIONS(272), 1, + anon_sym_SQUOTE, + ACTIONS(274), 1, + aux_sym_integer_literal_token1, + ACTIONS(278), 1, + sym_float_literal, + STATE(344), 1, + sym_integer_literal, + STATE(727), 1, + sym_expression, + ACTIONS(280), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(276), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(365), 3, + sym_primary_expression, + sym_template_block, + sym_render_closure, + STATE(346), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + STATE(369), 4, + sym_rust_path, + sym_inferred_enum_call, + sym_inferred_enum_struct, + sym_literal, + [8644] = 15, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(262), 1, + anon_sym_AT, + ACTIONS(266), 1, + sym_inferred_enum_path, + ACTIONS(268), 1, + sym_rust_expression, + ACTIONS(270), 1, + anon_sym_DQUOTE, + ACTIONS(272), 1, + anon_sym_SQUOTE, + ACTIONS(274), 1, + aux_sym_integer_literal_token1, + ACTIONS(278), 1, + sym_float_literal, + STATE(344), 1, + sym_integer_literal, + STATE(640), 1, + sym_expression, + ACTIONS(280), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(276), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(365), 3, + sym_primary_expression, + sym_template_block, + sym_render_closure, + STATE(346), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + STATE(369), 4, + sym_rust_path, + sym_inferred_enum_call, + sym_inferred_enum_struct, + sym_literal, + [8701] = 2, + ACTIONS(520), 7, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(522), 19, + aux_sym_rust_path_token1, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [8732] = 2, + ACTIONS(524), 7, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(526), 19, + aux_sym_rust_path_token1, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [8763] = 16, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(270), 1, + anon_sym_DQUOTE, + ACTIONS(272), 1, + anon_sym_SQUOTE, + ACTIONS(274), 1, + aux_sym_integer_literal_token1, + ACTIONS(278), 1, + sym_float_literal, + ACTIONS(428), 1, + anon_sym_LPAREN, + ACTIONS(432), 1, + sym_wildcard_pattern, + ACTIONS(434), 1, + sym_identifier, + ACTIONS(528), 1, + anon_sym_RPAREN, + STATE(344), 1, + sym_integer_literal, + STATE(631), 1, + sym_rust_path, + STATE(650), 1, + sym_pattern, + ACTIONS(280), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(276), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(346), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + STATE(442), 5, + sym_identifier_pattern, + sym_struct_pattern, + sym_tuple_variant_pattern, + sym_tuple_pattern, + sym_literal, + [8822] = 15, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(262), 1, + anon_sym_AT, + ACTIONS(266), 1, + sym_inferred_enum_path, + ACTIONS(268), 1, + sym_rust_expression, + ACTIONS(270), 1, + anon_sym_DQUOTE, + ACTIONS(272), 1, + anon_sym_SQUOTE, + ACTIONS(274), 1, + aux_sym_integer_literal_token1, + ACTIONS(278), 1, + sym_float_literal, + STATE(344), 1, + sym_integer_literal, + STATE(679), 1, + sym_expression, + ACTIONS(280), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(276), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(365), 3, + sym_primary_expression, + sym_template_block, + sym_render_closure, + STATE(346), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + STATE(369), 4, + sym_rust_path, + sym_inferred_enum_call, + sym_inferred_enum_struct, + sym_literal, + [8879] = 2, + ACTIONS(530), 7, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(532), 19, + aux_sym_rust_path_token1, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [8910] = 2, + ACTIONS(534), 7, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(536), 19, + aux_sym_rust_path_token1, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [8941] = 2, + ACTIONS(113), 6, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(538), 19, + aux_sym_rust_path_token1, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i128, + anon_sym_isize, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u128, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_char, + anon_sym_str, + anon_sym_String, + [8971] = 15, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(466), 1, + anon_sym_SQUOTE, + ACTIONS(468), 1, + aux_sym_integer_literal_token1, + ACTIONS(472), 1, + sym_float_literal, + ACTIONS(540), 1, + anon_sym_LPAREN, + ACTIONS(542), 1, + sym_wildcard_pattern, + ACTIONS(544), 1, + anon_sym_DQUOTE, + ACTIONS(546), 1, + sym_identifier, + STATE(408), 1, + sym_integer_literal, + STATE(459), 1, + sym_pattern, + STATE(672), 1, + sym_rust_path, + ACTIONS(474), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(470), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(410), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + STATE(441), 5, + sym_identifier_pattern, + sym_struct_pattern, + sym_tuple_variant_pattern, + sym_tuple_pattern, + sym_literal, + [9027] = 15, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(270), 1, + anon_sym_DQUOTE, + ACTIONS(272), 1, + anon_sym_SQUOTE, + ACTIONS(274), 1, + aux_sym_integer_literal_token1, + ACTIONS(278), 1, + sym_float_literal, + ACTIONS(428), 1, + anon_sym_LPAREN, + ACTIONS(432), 1, + sym_wildcard_pattern, + ACTIONS(434), 1, + sym_identifier, + STATE(344), 1, + sym_integer_literal, + STATE(631), 1, + sym_rust_path, + STATE(750), 1, + sym_pattern, + ACTIONS(280), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(276), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(346), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + STATE(442), 5, + sym_identifier_pattern, + sym_struct_pattern, + sym_tuple_variant_pattern, + sym_tuple_pattern, + sym_literal, + [9083] = 15, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(270), 1, + anon_sym_DQUOTE, + ACTIONS(272), 1, + anon_sym_SQUOTE, + ACTIONS(274), 1, + aux_sym_integer_literal_token1, + ACTIONS(278), 1, + sym_float_literal, + ACTIONS(428), 1, + anon_sym_LPAREN, + ACTIONS(432), 1, + sym_wildcard_pattern, + ACTIONS(434), 1, + sym_identifier, + STATE(344), 1, + sym_integer_literal, + STATE(631), 1, + sym_rust_path, + STATE(650), 1, + sym_pattern, + ACTIONS(280), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(276), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(346), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + STATE(442), 5, + sym_identifier_pattern, + sym_struct_pattern, + sym_tuple_variant_pattern, + sym_tuple_pattern, + sym_literal, + [9139] = 15, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(270), 1, + anon_sym_DQUOTE, + ACTIONS(272), 1, + anon_sym_SQUOTE, + ACTIONS(274), 1, + aux_sym_integer_literal_token1, + ACTIONS(278), 1, + sym_float_literal, + ACTIONS(428), 1, + anon_sym_LPAREN, + ACTIONS(432), 1, + sym_wildcard_pattern, + ACTIONS(434), 1, + sym_identifier, + STATE(344), 1, + sym_integer_literal, + STATE(631), 1, + sym_rust_path, + STATE(663), 1, + sym_pattern, + ACTIONS(280), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(276), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(346), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + STATE(442), 5, + sym_identifier_pattern, + sym_struct_pattern, + sym_tuple_variant_pattern, + sym_tuple_pattern, + sym_literal, + [9195] = 15, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(270), 1, + anon_sym_DQUOTE, + ACTIONS(272), 1, + anon_sym_SQUOTE, + ACTIONS(274), 1, + aux_sym_integer_literal_token1, + ACTIONS(278), 1, + sym_float_literal, + ACTIONS(428), 1, + anon_sym_LPAREN, + ACTIONS(432), 1, + sym_wildcard_pattern, + ACTIONS(434), 1, + sym_identifier, + STATE(344), 1, + sym_integer_literal, + STATE(554), 1, + sym_pattern, + STATE(631), 1, + sym_rust_path, + ACTIONS(280), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(276), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(346), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + STATE(442), 5, + sym_identifier_pattern, + sym_struct_pattern, + sym_tuple_variant_pattern, + sym_tuple_pattern, + sym_literal, + [9251] = 15, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(270), 1, + anon_sym_DQUOTE, + ACTIONS(272), 1, + anon_sym_SQUOTE, + ACTIONS(274), 1, + aux_sym_integer_literal_token1, + ACTIONS(278), 1, + sym_float_literal, + ACTIONS(428), 1, + anon_sym_LPAREN, + ACTIONS(432), 1, + sym_wildcard_pattern, + ACTIONS(434), 1, + sym_identifier, + STATE(344), 1, + sym_integer_literal, + STATE(631), 1, + sym_rust_path, + STATE(756), 1, + sym_pattern, + ACTIONS(280), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(276), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(346), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + STATE(442), 5, + sym_identifier_pattern, + sym_struct_pattern, + sym_tuple_variant_pattern, + sym_tuple_pattern, + sym_literal, + [9307] = 15, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(270), 1, + anon_sym_DQUOTE, + ACTIONS(272), 1, + anon_sym_SQUOTE, + ACTIONS(274), 1, + aux_sym_integer_literal_token1, + ACTIONS(278), 1, + sym_float_literal, + ACTIONS(428), 1, + anon_sym_LPAREN, + ACTIONS(432), 1, + sym_wildcard_pattern, + ACTIONS(434), 1, + sym_identifier, + STATE(344), 1, + sym_integer_literal, + STATE(489), 1, + sym_pattern, + STATE(631), 1, + sym_rust_path, + ACTIONS(280), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(276), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(346), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + STATE(442), 5, + sym_identifier_pattern, + sym_struct_pattern, + sym_tuple_variant_pattern, + sym_tuple_pattern, + sym_literal, + [9363] = 15, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(270), 1, + anon_sym_DQUOTE, + ACTIONS(272), 1, + anon_sym_SQUOTE, + ACTIONS(274), 1, + aux_sym_integer_literal_token1, + ACTIONS(278), 1, + sym_float_literal, + ACTIONS(428), 1, + anon_sym_LPAREN, + ACTIONS(432), 1, + sym_wildcard_pattern, + ACTIONS(434), 1, + sym_identifier, + STATE(344), 1, + sym_integer_literal, + STATE(524), 1, + sym_pattern, + STATE(631), 1, + sym_rust_path, + ACTIONS(280), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(276), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(346), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + STATE(442), 5, + sym_identifier_pattern, + sym_struct_pattern, + sym_tuple_variant_pattern, + sym_tuple_pattern, + sym_literal, + [9419] = 15, + ACTIONS(25), 1, + aux_sym_rust_path_token1, + ACTIONS(270), 1, + anon_sym_DQUOTE, + ACTIONS(272), 1, + anon_sym_SQUOTE, + ACTIONS(274), 1, + aux_sym_integer_literal_token1, + ACTIONS(278), 1, + sym_float_literal, + ACTIONS(428), 1, + anon_sym_LPAREN, + ACTIONS(432), 1, + sym_wildcard_pattern, + ACTIONS(434), 1, + sym_identifier, + STATE(344), 1, + sym_integer_literal, + STATE(624), 1, + sym_pattern, + STATE(631), 1, + sym_rust_path, + ACTIONS(280), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(276), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(346), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + STATE(442), 5, + sym_identifier_pattern, + sym_struct_pattern, + sym_tuple_variant_pattern, + sym_tuple_pattern, + sym_literal, + [9475] = 13, + ACTIONS(270), 1, + anon_sym_DQUOTE, + ACTIONS(272), 1, + anon_sym_SQUOTE, + ACTIONS(274), 1, + aux_sym_integer_literal_token1, + ACTIONS(278), 1, + sym_float_literal, + ACTIONS(428), 1, + anon_sym_LPAREN, + ACTIONS(548), 1, + sym_wildcard_pattern, + ACTIONS(550), 1, + sym_identifier, + STATE(344), 1, + sym_integer_literal, + STATE(690), 1, + sym_simple_pattern, + ACTIONS(280), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(276), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(641), 3, + sym_identifier_pattern, + sym_tuple_pattern, + sym_literal, + STATE(346), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + [9523] = 13, + ACTIONS(270), 1, + anon_sym_DQUOTE, + ACTIONS(272), 1, + anon_sym_SQUOTE, + ACTIONS(274), 1, + aux_sym_integer_literal_token1, + ACTIONS(278), 1, + sym_float_literal, + ACTIONS(428), 1, + anon_sym_LPAREN, + ACTIONS(434), 1, + sym_identifier, + ACTIONS(548), 1, + sym_wildcard_pattern, + STATE(344), 1, + sym_integer_literal, + STATE(687), 1, + sym_simple_pattern, + ACTIONS(280), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(276), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(641), 3, + sym_identifier_pattern, + sym_tuple_pattern, + sym_literal, + STATE(346), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + [9571] = 13, + ACTIONS(270), 1, + anon_sym_DQUOTE, + ACTIONS(272), 1, + anon_sym_SQUOTE, + ACTIONS(274), 1, + aux_sym_integer_literal_token1, + ACTIONS(278), 1, + sym_float_literal, + ACTIONS(428), 1, + anon_sym_LPAREN, + ACTIONS(434), 1, + sym_identifier, + ACTIONS(548), 1, + sym_wildcard_pattern, + STATE(344), 1, + sym_integer_literal, + STATE(742), 1, + sym_simple_pattern, + ACTIONS(280), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(276), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(641), 3, + sym_identifier_pattern, + sym_tuple_pattern, + sym_literal, + STATE(346), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + [9619] = 13, + ACTIONS(270), 1, + anon_sym_DQUOTE, + ACTIONS(272), 1, + anon_sym_SQUOTE, + ACTIONS(274), 1, + aux_sym_integer_literal_token1, + ACTIONS(278), 1, + sym_float_literal, + ACTIONS(428), 1, + anon_sym_LPAREN, + ACTIONS(434), 1, + sym_identifier, + ACTIONS(548), 1, + sym_wildcard_pattern, + STATE(344), 1, + sym_integer_literal, + STATE(738), 1, + sym_simple_pattern, + ACTIONS(280), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(276), 3, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + STATE(641), 3, + sym_identifier_pattern, + sym_tuple_pattern, + sym_literal, + STATE(346), 4, + sym_string_literal, + sym_char_literal, + sym_number_literal, + sym_boolean_literal, + [9667] = 19, + ACTIONS(552), 1, + anon_sym_use, + ACTIONS(554), 1, + anon_sym_import, + ACTIONS(556), 1, + anon_sym_struct, + ACTIONS(558), 1, + anon_sym_enum, + ACTIONS(560), 1, + anon_sym_LPAREN, + ACTIONS(562), 1, + anon_sym_fn, + ACTIONS(564), 1, + anon_sym_if, + ACTIONS(566), 1, + anon_sym_for, + ACTIONS(568), 1, + anon_sym_out, + ACTIONS(570), 1, + anon_sym_target, + ACTIONS(572), 1, + anon_sym_safe, + ACTIONS(574), 1, + anon_sym_format, + ACTIONS(576), 1, + anon_sym_matches, + ACTIONS(578), 1, + anon_sym_let, + ACTIONS(580), 1, + anon_sym_match, + ACTIONS(582), 1, + anon_sym_break, + ACTIONS(584), 1, + anon_sym_continue, + ACTIONS(586), 1, + sym_identifier, + STATE(238), 1, + sym_expression_path, + [9725] = 7, + ACTIONS(592), 1, + anon_sym_LPAREN, + ACTIONS(594), 1, + anon_sym_LBRACK, + ACTIONS(596), 1, + anon_sym_BANG, + ACTIONS(598), 1, + anon_sym_DOT, + STATE(185), 1, + aux_sym_expression_path_repeat1, + ACTIONS(590), 4, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + sym_text_content, + ACTIONS(588), 10, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + [9759] = 2, + ACTIONS(600), 6, + aux_sym_rust_path_token1, + sym_wildcard_pattern, + aux_sym_integer_literal_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(602), 12, anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_DOT_DOT, - sym_identifier, - [21480] = 3, - ACTIONS(1501), 1, - anon_sym_RBRACE, - ACTIONS(1503), 1, - sym_identifier, - STATE(536), 2, - sym_struct_field, - aux_sym_struct_definition_repeat1, - [21491] = 4, - ACTIONS(1505), 1, anon_sym_LPAREN, - ACTIONS(1507), 1, - anon_sym_safe, - ACTIONS(1509), 1, - sym_identifier, - STATE(338), 1, - sym_expression_path, - [21504] = 4, - ACTIONS(1511), 1, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DQUOTE, - ACTIONS(1513), 1, - aux_sym_string_literal_token1, - ACTIONS(1516), 1, - sym_escape_sequence, - STATE(535), 1, - aux_sym_string_literal_repeat1, - [21517] = 3, - ACTIONS(1519), 1, - anon_sym_RBRACE, - ACTIONS(1521), 1, - sym_identifier, - STATE(536), 2, - sym_struct_field, - aux_sym_struct_definition_repeat1, - [21528] = 3, - ACTIONS(1503), 1, - sym_identifier, - ACTIONS(1524), 1, - anon_sym_RBRACE, - STATE(536), 2, - sym_struct_field, - aux_sym_struct_definition_repeat1, - [21539] = 3, - ACTIONS(1503), 1, - sym_identifier, - ACTIONS(1524), 1, - anon_sym_RBRACE, - STATE(533), 2, - sym_struct_field, - aux_sym_struct_definition_repeat1, - [21550] = 4, - ACTIONS(1526), 1, + anon_sym_SQUOTE, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + sym_float_literal, + [9782] = 6, + ACTIONS(608), 1, anon_sym_LPAREN, - ACTIONS(1528), 1, + ACTIONS(611), 1, + anon_sym_LBRACK, + ACTIONS(614), 1, + anon_sym_DOT, + STATE(177), 1, + aux_sym_expression_path_repeat1, + ACTIONS(606), 4, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + sym_text_content, + ACTIONS(604), 10, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + [9813] = 5, + ACTIONS(621), 1, + anon_sym_else, + STATE(251), 1, + sym_else_branch, + STATE(188), 2, + sym_else_if_branch, + aux_sym_if_statement_repeat1, + ACTIONS(619), 4, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + sym_text_content, + ACTIONS(617), 10, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + [9842] = 5, + ACTIONS(621), 1, + anon_sym_else, + STATE(245), 1, + sym_else_branch, + STATE(181), 2, + sym_else_if_branch, + aux_sym_if_statement_repeat1, + ACTIONS(625), 4, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + sym_text_content, + ACTIONS(623), 10, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + [9871] = 2, + ACTIONS(627), 6, + aux_sym_rust_path_token1, + sym_wildcard_pattern, + aux_sym_integer_literal_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(629), 12, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + sym_float_literal, + [9894] = 5, + ACTIONS(621), 1, + anon_sym_else, + STATE(260), 1, + sym_else_branch, + STATE(188), 2, + sym_else_if_branch, + aux_sym_if_statement_repeat1, + ACTIONS(633), 4, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + sym_text_content, + ACTIONS(631), 10, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + [9923] = 6, + ACTIONS(592), 1, + anon_sym_LPAREN, + ACTIONS(594), 1, + anon_sym_LBRACK, + ACTIONS(598), 1, + anon_sym_DOT, + STATE(177), 1, + aux_sym_expression_path_repeat1, + ACTIONS(637), 4, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + sym_text_content, + ACTIONS(635), 10, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + [9954] = 5, + ACTIONS(621), 1, + anon_sym_else, + STATE(231), 1, + sym_else_branch, + STATE(178), 2, + sym_else_if_branch, + aux_sym_if_statement_repeat1, + ACTIONS(641), 4, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + sym_text_content, + ACTIONS(639), 10, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + [9983] = 6, + ACTIONS(592), 1, + anon_sym_LPAREN, + ACTIONS(594), 1, + anon_sym_LBRACK, + ACTIONS(598), 1, + anon_sym_DOT, + STATE(182), 1, + aux_sym_expression_path_repeat1, + ACTIONS(645), 4, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + sym_text_content, + ACTIONS(643), 10, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + [10014] = 6, + ACTIONS(592), 1, + anon_sym_LPAREN, + ACTIONS(594), 1, + anon_sym_LBRACK, + ACTIONS(598), 1, + anon_sym_DOT, + STATE(177), 1, + aux_sym_expression_path_repeat1, + ACTIONS(645), 4, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + sym_text_content, + ACTIONS(643), 10, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + [10045] = 2, + ACTIONS(649), 4, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + sym_text_content, + ACTIONS(647), 13, + ts_builtin_sym_end, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_simple_expression_token1, + anon_sym_DOT, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + [10067] = 4, + ACTIONS(655), 1, + anon_sym_LBRACE, + ACTIONS(657), 1, + anon_sym_LPAREN, + ACTIONS(653), 4, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + sym_text_content, + ACTIONS(651), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_SEMI, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + [10093] = 4, + ACTIONS(663), 1, + anon_sym_else, + STATE(188), 2, + sym_else_if_branch, + aux_sym_if_statement_repeat1, + ACTIONS(661), 4, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + sym_text_content, + ACTIONS(659), 10, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + [10119] = 2, + ACTIONS(606), 4, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + sym_text_content, + ACTIONS(604), 13, + ts_builtin_sym_end, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_simple_expression_token1, + anon_sym_DOT, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + [10141] = 4, + ACTIONS(670), 1, + anon_sym_COLON, + ACTIONS(672), 1, + anon_sym_SEMI, + ACTIONS(668), 4, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + sym_text_content, + ACTIONS(666), 10, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + [10166] = 4, + ACTIONS(678), 1, + anon_sym_COLON, + ACTIONS(680), 1, + anon_sym_SEMI, + ACTIONS(676), 4, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + sym_text_content, + ACTIONS(674), 10, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + [10191] = 2, + ACTIONS(627), 4, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + sym_text_content, + ACTIONS(629), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_else, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + [10212] = 2, + ACTIONS(600), 4, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + sym_text_content, + ACTIONS(602), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_else, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + [10233] = 2, + ACTIONS(600), 4, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + sym_text_content, + ACTIONS(602), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_SEMI, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + [10253] = 2, + ACTIONS(684), 4, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + sym_text_content, + ACTIONS(682), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_SEMI, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + [10273] = 2, + ACTIONS(688), 4, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + sym_text_content, + ACTIONS(686), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_SEMI, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + [10293] = 2, + ACTIONS(692), 4, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + sym_text_content, + ACTIONS(690), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_SEMI, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + [10313] = 2, + ACTIONS(696), 4, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + sym_text_content, + ACTIONS(694), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_SEMI, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + [10333] = 3, + ACTIONS(702), 1, + anon_sym_COMMA, + ACTIONS(698), 6, + aux_sym_rust_path_token1, + sym_wildcard_pattern, + aux_sym_integer_literal_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(700), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + sym_float_literal, + [10355] = 2, + ACTIONS(706), 4, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + sym_text_content, + ACTIONS(704), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_SEMI, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + [10375] = 2, + ACTIONS(710), 4, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + sym_text_content, + ACTIONS(708), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_SEMI, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + [10395] = 2, + ACTIONS(714), 4, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + sym_text_content, + ACTIONS(712), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_SEMI, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + [10415] = 2, + ACTIONS(718), 4, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + sym_text_content, + ACTIONS(716), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_SEMI, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + [10435] = 2, + ACTIONS(722), 4, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + sym_text_content, + ACTIONS(720), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + anon_sym_else, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + [10455] = 3, + ACTIONS(728), 1, + anon_sym_COMMA, + ACTIONS(724), 6, + aux_sym_rust_path_token1, + sym_wildcard_pattern, + aux_sym_integer_literal_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(726), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + sym_float_literal, + [10477] = 2, + ACTIONS(284), 4, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + sym_text_content, + ACTIONS(282), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_SEMI, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + [10497] = 2, + ACTIONS(732), 4, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + sym_text_content, + ACTIONS(730), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_SEMI, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + [10517] = 2, + ACTIONS(736), 4, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + sym_text_content, + ACTIONS(734), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_SEMI, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + [10537] = 2, + ACTIONS(653), 4, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + sym_text_content, + ACTIONS(651), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_SEMI, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + [10557] = 2, + ACTIONS(740), 4, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + sym_text_content, + ACTIONS(738), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_SEMI, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + [10577] = 2, + ACTIONS(627), 4, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + sym_text_content, + ACTIONS(629), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_SEMI, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + [10597] = 2, + ACTIONS(744), 4, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + sym_text_content, + ACTIONS(742), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_SEMI, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + [10617] = 2, + ACTIONS(748), 4, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + sym_text_content, + ACTIONS(746), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_SEMI, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + [10637] = 3, + ACTIONS(754), 1, + anon_sym_SEMI, + ACTIONS(752), 4, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + sym_text_content, + ACTIONS(750), 10, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + [10659] = 2, + ACTIONS(758), 4, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + sym_text_content, + ACTIONS(756), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_SEMI, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + [10679] = 2, + ACTIONS(762), 4, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + sym_text_content, + ACTIONS(760), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + anon_sym_else, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + [10699] = 3, + ACTIONS(768), 1, + anon_sym_SEMI, + ACTIONS(766), 4, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + sym_text_content, + ACTIONS(764), 10, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + [10721] = 2, + ACTIONS(772), 4, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + sym_text_content, + ACTIONS(770), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_SEMI, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + [10741] = 2, + ACTIONS(776), 4, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + sym_text_content, + ACTIONS(774), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_SEMI, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + [10761] = 2, + ACTIONS(780), 4, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + sym_text_content, + ACTIONS(778), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_SEMI, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + [10781] = 3, + ACTIONS(786), 1, + anon_sym_SEMI, + ACTIONS(784), 4, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + sym_text_content, + ACTIONS(782), 10, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + [10803] = 2, + ACTIONS(790), 4, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + sym_text_content, + ACTIONS(788), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_SEMI, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + [10823] = 2, + ACTIONS(794), 4, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + sym_text_content, + ACTIONS(792), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_SEMI, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + [10843] = 2, + ACTIONS(732), 3, + anon_sym_AT, + anon_sym_LT, + sym_text_content, + ACTIONS(730), 11, + ts_builtin_sym_end, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + [10862] = 2, + ACTIONS(796), 6, + aux_sym_rust_path_token1, + sym_wildcard_pattern, + aux_sym_integer_literal_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(798), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + sym_float_literal, + [10881] = 2, + ACTIONS(802), 3, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + ACTIONS(800), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + sym_text_content, + [10900] = 2, + ACTIONS(806), 3, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + ACTIONS(804), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + sym_text_content, + [10919] = 2, + ACTIONS(810), 3, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + ACTIONS(808), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + sym_text_content, + [10938] = 2, + ACTIONS(814), 3, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + ACTIONS(812), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + sym_text_content, + [10957] = 2, + ACTIONS(818), 3, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + ACTIONS(816), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + sym_text_content, + [10976] = 2, + ACTIONS(619), 3, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + ACTIONS(617), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + sym_text_content, + [10995] = 2, + ACTIONS(627), 3, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + ACTIONS(629), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + sym_text_content, + [11014] = 2, + ACTIONS(822), 3, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + ACTIONS(820), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + sym_text_content, + [11033] = 2, + ACTIONS(824), 6, + aux_sym_rust_path_token1, + sym_wildcard_pattern, + aux_sym_integer_literal_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(826), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym_integer_literal_token2, + aux_sym_integer_literal_token3, + aux_sym_integer_literal_token4, + sym_float_literal, + [11052] = 2, + ACTIONS(600), 3, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + ACTIONS(602), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + sym_text_content, + [11071] = 2, + ACTIONS(830), 3, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + ACTIONS(828), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + sym_text_content, + [11090] = 2, + ACTIONS(834), 3, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + ACTIONS(832), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + sym_text_content, + [11109] = 2, + ACTIONS(838), 3, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + ACTIONS(836), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + sym_text_content, + [11128] = 2, + ACTIONS(842), 3, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + ACTIONS(840), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + sym_text_content, + [11147] = 2, + ACTIONS(846), 3, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + ACTIONS(844), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + sym_text_content, + [11166] = 2, + ACTIONS(850), 3, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + ACTIONS(848), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + sym_text_content, + [11185] = 2, + ACTIONS(736), 3, + anon_sym_AT, + anon_sym_LT, + sym_text_content, + ACTIONS(734), 11, + ts_builtin_sym_end, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + [11204] = 2, + ACTIONS(854), 3, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + ACTIONS(852), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + sym_text_content, + [11223] = 2, + ACTIONS(284), 3, + anon_sym_AT, + anon_sym_LT, + sym_text_content, + ACTIONS(282), 11, + ts_builtin_sym_end, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + [11242] = 2, + ACTIONS(633), 3, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + ACTIONS(631), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + sym_text_content, + [11261] = 2, + ACTIONS(858), 3, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + ACTIONS(856), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + sym_text_content, + [11280] = 2, + ACTIONS(862), 3, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + ACTIONS(860), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + sym_text_content, + [11299] = 2, + ACTIONS(866), 3, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + ACTIONS(864), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + sym_text_content, + [11318] = 2, + ACTIONS(870), 3, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + ACTIONS(868), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + sym_text_content, + [11337] = 2, + ACTIONS(874), 3, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + ACTIONS(872), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + sym_text_content, + [11356] = 2, + ACTIONS(878), 3, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + ACTIONS(876), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + sym_text_content, + [11375] = 2, + ACTIONS(882), 3, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + ACTIONS(880), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + sym_text_content, + [11394] = 2, + ACTIONS(886), 3, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + ACTIONS(884), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + sym_text_content, + [11413] = 2, + ACTIONS(890), 3, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + ACTIONS(888), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + sym_text_content, + [11432] = 2, + ACTIONS(894), 3, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + ACTIONS(892), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + sym_text_content, + [11451] = 2, + ACTIONS(898), 3, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + ACTIONS(896), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + sym_text_content, + [11470] = 2, + ACTIONS(902), 3, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + ACTIONS(900), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + sym_text_content, + [11489] = 2, + ACTIONS(906), 3, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + ACTIONS(904), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + sym_text_content, + [11508] = 2, + ACTIONS(910), 3, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + ACTIONS(908), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + sym_text_content, + [11527] = 2, + ACTIONS(914), 3, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + ACTIONS(912), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + sym_text_content, + [11546] = 2, + ACTIONS(918), 3, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + ACTIONS(916), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + sym_text_content, + [11565] = 2, + ACTIONS(922), 3, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + ACTIONS(920), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + sym_text_content, + [11584] = 2, + ACTIONS(926), 3, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + ACTIONS(924), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + sym_text_content, + [11603] = 2, + ACTIONS(930), 3, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + ACTIONS(928), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + sym_text_content, + [11622] = 2, + ACTIONS(934), 3, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + ACTIONS(932), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + sym_text_content, + [11641] = 2, + ACTIONS(938), 3, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + ACTIONS(936), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + sym_text_content, + [11660] = 2, + ACTIONS(942), 3, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + ACTIONS(940), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + sym_text_content, + [11679] = 2, + ACTIONS(946), 3, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + ACTIONS(944), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + sym_text_content, + [11698] = 2, + ACTIONS(950), 3, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + ACTIONS(948), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + sym_text_content, + [11717] = 2, + ACTIONS(954), 3, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + ACTIONS(952), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + sym_text_content, + [11736] = 2, + ACTIONS(958), 3, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + ACTIONS(956), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + sym_text_content, + [11755] = 2, + ACTIONS(962), 3, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + ACTIONS(960), 11, + ts_builtin_sym_end, + anon_sym_RBRACE, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + sym_text_content, + [11774] = 14, + ACTIONS(560), 1, + anon_sym_LPAREN, + ACTIONS(564), 1, + anon_sym_if, + ACTIONS(566), 1, + anon_sym_for, + ACTIONS(568), 1, + anon_sym_out, + ACTIONS(570), 1, + anon_sym_target, + ACTIONS(572), 1, anon_sym_safe, - ACTIONS(1530), 1, + ACTIONS(574), 1, + anon_sym_format, + ACTIONS(576), 1, + anon_sym_matches, + ACTIONS(578), 1, + anon_sym_let, + ACTIONS(580), 1, + anon_sym_match, + ACTIONS(582), 1, + anon_sym_break, + ACTIONS(584), 1, + anon_sym_continue, + ACTIONS(586), 1, sym_identifier, - STATE(415), 1, + STATE(238), 1, sym_expression_path, - [21563] = 4, - ACTIONS(1532), 1, - anon_sym_DQUOTE, - ACTIONS(1534), 1, - aux_sym_string_literal_token1, - ACTIONS(1536), 1, - sym_escape_sequence, - STATE(541), 1, - aux_sym_string_literal_repeat1, - [21576] = 4, - ACTIONS(1538), 1, - anon_sym_DQUOTE, - ACTIONS(1540), 1, - aux_sym_string_literal_token1, - ACTIONS(1542), 1, - sym_escape_sequence, - STATE(535), 1, - aux_sym_string_literal_repeat1, - [21589] = 3, - ACTIONS(1503), 1, - sym_identifier, - ACTIONS(1544), 1, + [11817] = 2, + ACTIONS(966), 3, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + ACTIONS(964), 11, + ts_builtin_sym_end, anon_sym_RBRACE, - STATE(536), 2, - sym_struct_field, - aux_sym_struct_definition_repeat1, - [21600] = 3, - ACTIONS(1546), 1, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + sym_text_content, + [11836] = 2, + ACTIONS(970), 3, + anon_sym_AT, + anon_sym_LT, + anon_sym_LT_SLASH, + ACTIONS(968), 11, + ts_builtin_sym_end, anon_sym_RBRACE, - ACTIONS(1548), 1, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + anon_sym_LT_SLASH_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + sym_text_content, + [11855] = 6, + ACTIONS(464), 1, + anon_sym_DQUOTE, + ACTIONS(972), 1, + anon_sym_AT, + ACTIONS(974), 1, + aux_sym_simple_expression_token1, + STATE(387), 1, + sym_attribute_value, + STATE(388), 2, + sym_template_expression, + sym_string_literal, + STATE(392), 7, + sym_out_ref, + sym_target_ref, + sym_simple_expression, + sym_complex_expression, + sym_safe_expression, + sym_format_expression, + sym_matches_expression, + [11881] = 1, + ACTIONS(282), 12, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_PIPE, sym_identifier, - STATE(543), 2, - sym_enum_variant, - aux_sym_enum_definition_repeat1, - [21611] = 1, - ACTIONS(1551), 4, + [11896] = 3, + ACTIONS(980), 1, + anon_sym_as, + ACTIONS(978), 3, + anon_sym_AT, + anon_sym_LT, + sym_text_content, + ACTIONS(976), 8, + ts_builtin_sym_end, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + [11915] = 3, + ACTIONS(986), 1, + anon_sym_as, + ACTIONS(984), 3, + anon_sym_AT, + anon_sym_LT, + sym_text_content, + ACTIONS(982), 8, + ts_builtin_sym_end, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + [11934] = 7, + ACTIONS(988), 1, + anon_sym_AT, + ACTIONS(993), 1, + aux_sym_attribute_name_token1, + STATE(374), 1, + sym_attribute_name, + STATE(280), 2, + sym_attribute_or_control, + aux_sym_html_element_repeat1, + STATE(379), 2, + sym_attribute_control_flow, + sym_html_attribute, + STATE(414), 2, + sym_attribute_if_statement, + sym_attribute_for_loop, + ACTIONS(991), 3, + anon_sym_RBRACE, anon_sym_GT, anon_sym_SLASH, + [11961] = 8, + ACTIONS(996), 1, anon_sym_AT, - sym_identifier, - [21618] = 3, - ACTIONS(1553), 1, + ACTIONS(998), 1, + anon_sym_GT, + ACTIONS(1000), 1, + anon_sym_SLASH, + ACTIONS(1002), 1, + aux_sym_attribute_name_token1, + STATE(374), 1, + sym_attribute_name, + STATE(294), 2, + sym_attribute_or_control, + aux_sym_html_element_repeat1, + STATE(379), 2, + sym_attribute_control_flow, + sym_html_attribute, + STATE(414), 2, + sym_attribute_if_statement, + sym_attribute_for_loop, + [11989] = 2, + ACTIONS(1006), 2, + anon_sym_AT, + anon_sym_LT, + ACTIONS(1004), 9, + ts_builtin_sym_end, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + sym_text_content, + [12005] = 2, + ACTIONS(1010), 2, + anon_sym_AT, + anon_sym_LT, + ACTIONS(1008), 9, + ts_builtin_sym_end, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + sym_text_content, + [12021] = 2, + ACTIONS(1014), 2, + anon_sym_AT, + anon_sym_LT, + ACTIONS(1012), 9, + ts_builtin_sym_end, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + sym_text_content, + [12037] = 2, + ACTIONS(1018), 2, + anon_sym_AT, + anon_sym_LT, + ACTIONS(1016), 9, + ts_builtin_sym_end, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + sym_text_content, + [12053] = 2, + ACTIONS(1022), 2, + anon_sym_AT, + anon_sym_LT, + ACTIONS(1020), 9, + ts_builtin_sym_end, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + sym_text_content, + [12069] = 2, + ACTIONS(1026), 2, + anon_sym_AT, + anon_sym_LT, + ACTIONS(1024), 9, + ts_builtin_sym_end, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + sym_text_content, + [12085] = 2, + ACTIONS(1030), 2, + anon_sym_AT, + anon_sym_LT, + ACTIONS(1028), 9, + ts_builtin_sym_end, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + sym_text_content, + [12101] = 2, + ACTIONS(1034), 2, + anon_sym_AT, + anon_sym_LT, + ACTIONS(1032), 9, + ts_builtin_sym_end, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + sym_text_content, + [12117] = 2, + ACTIONS(1038), 2, + anon_sym_AT, + anon_sym_LT, + ACTIONS(1036), 9, + ts_builtin_sym_end, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + sym_text_content, + [12133] = 2, + ACTIONS(1042), 2, + anon_sym_AT, + anon_sym_LT, + ACTIONS(1040), 9, + ts_builtin_sym_end, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + sym_text_content, + [12149] = 8, + ACTIONS(996), 1, + anon_sym_AT, + ACTIONS(1000), 1, + anon_sym_SLASH, + ACTIONS(1002), 1, + aux_sym_attribute_name_token1, + ACTIONS(1044), 1, + anon_sym_GT, + STATE(374), 1, + sym_attribute_name, + STATE(293), 2, + sym_attribute_or_control, + aux_sym_html_element_repeat1, + STATE(379), 2, + sym_attribute_control_flow, + sym_html_attribute, + STATE(414), 2, + sym_attribute_if_statement, + sym_attribute_for_loop, + [12177] = 8, + ACTIONS(996), 1, + anon_sym_AT, + ACTIONS(1002), 1, + aux_sym_attribute_name_token1, + ACTIONS(1046), 1, + anon_sym_GT, + ACTIONS(1048), 1, + anon_sym_SLASH, + STATE(374), 1, + sym_attribute_name, + STATE(280), 2, + sym_attribute_or_control, + aux_sym_html_element_repeat1, + STATE(379), 2, + sym_attribute_control_flow, + sym_html_attribute, + STATE(414), 2, + sym_attribute_if_statement, + sym_attribute_for_loop, + [12205] = 8, + ACTIONS(996), 1, + anon_sym_AT, + ACTIONS(1002), 1, + aux_sym_attribute_name_token1, + ACTIONS(1048), 1, + anon_sym_SLASH, + ACTIONS(1050), 1, + anon_sym_GT, + STATE(374), 1, + sym_attribute_name, + STATE(280), 2, + sym_attribute_or_control, + aux_sym_html_element_repeat1, + STATE(379), 2, + sym_attribute_control_flow, + sym_html_attribute, + STATE(414), 2, + sym_attribute_if_statement, + sym_attribute_for_loop, + [12233] = 2, + ACTIONS(1054), 2, + anon_sym_AT, + anon_sym_LT, + ACTIONS(1052), 9, + ts_builtin_sym_end, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + sym_text_content, + [12249] = 2, + ACTIONS(1058), 2, + anon_sym_AT, + anon_sym_LT, + ACTIONS(1056), 9, + ts_builtin_sym_end, + aux_sym_simple_expression_token1, + anon_sym_LT_AT, + sym_template_comment_1, + sym_html_comment, + sym_raw_block_1, + anon_sym_AT_BQUOTE_BQUOTE_BQUOTE, + sym_escape_at, + sym_text_content, + [12265] = 7, + ACTIONS(996), 1, + anon_sym_AT, + ACTIONS(1002), 1, + aux_sym_attribute_name_token1, + ACTIONS(1060), 1, anon_sym_RBRACE, - ACTIONS(1555), 1, + STATE(374), 1, + sym_attribute_name, + STATE(306), 2, + sym_attribute_or_control, + aux_sym_html_element_repeat1, + STATE(379), 2, + sym_attribute_control_flow, + sym_html_attribute, + STATE(414), 2, + sym_attribute_if_statement, + sym_attribute_for_loop, + [12290] = 1, + ACTIONS(686), 10, + anon_sym_AT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_EQ_GT, sym_identifier, - STATE(543), 2, + [12303] = 1, + ACTIONS(712), 10, + anon_sym_AT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_EQ_GT, + sym_identifier, + [12316] = 7, + ACTIONS(996), 1, + anon_sym_AT, + ACTIONS(1002), 1, + aux_sym_attribute_name_token1, + ACTIONS(1062), 1, + anon_sym_RBRACE, + STATE(374), 1, + sym_attribute_name, + STATE(280), 2, + sym_attribute_or_control, + aux_sym_html_element_repeat1, + STATE(379), 2, + sym_attribute_control_flow, + sym_html_attribute, + STATE(414), 2, + sym_attribute_if_statement, + sym_attribute_for_loop, + [12341] = 1, + ACTIONS(704), 10, + anon_sym_AT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_EQ_GT, + sym_identifier, + [12354] = 7, + ACTIONS(996), 1, + anon_sym_AT, + ACTIONS(1002), 1, + aux_sym_attribute_name_token1, + ACTIONS(1064), 1, + anon_sym_RBRACE, + STATE(374), 1, + sym_attribute_name, + STATE(280), 2, + sym_attribute_or_control, + aux_sym_html_element_repeat1, + STATE(379), 2, + sym_attribute_control_flow, + sym_html_attribute, + STATE(414), 2, + sym_attribute_if_statement, + sym_attribute_for_loop, + [12379] = 7, + ACTIONS(996), 1, + anon_sym_AT, + ACTIONS(1002), 1, + aux_sym_attribute_name_token1, + ACTIONS(1066), 1, + anon_sym_RBRACE, + STATE(374), 1, + sym_attribute_name, + STATE(305), 2, + sym_attribute_or_control, + aux_sym_html_element_repeat1, + STATE(379), 2, + sym_attribute_control_flow, + sym_html_attribute, + STATE(414), 2, + sym_attribute_if_statement, + sym_attribute_for_loop, + [12404] = 7, + ACTIONS(996), 1, + anon_sym_AT, + ACTIONS(1002), 1, + aux_sym_attribute_name_token1, + ACTIONS(1068), 1, + anon_sym_RBRACE, + STATE(374), 1, + sym_attribute_name, + STATE(302), 2, + sym_attribute_or_control, + aux_sym_html_element_repeat1, + STATE(379), 2, + sym_attribute_control_flow, + sym_html_attribute, + STATE(414), 2, + sym_attribute_if_statement, + sym_attribute_for_loop, + [12429] = 7, + ACTIONS(996), 1, + anon_sym_AT, + ACTIONS(1002), 1, + aux_sym_attribute_name_token1, + ACTIONS(1070), 1, + anon_sym_RBRACE, + STATE(374), 1, + sym_attribute_name, + STATE(280), 2, + sym_attribute_or_control, + aux_sym_html_element_repeat1, + STATE(379), 2, + sym_attribute_control_flow, + sym_html_attribute, + STATE(414), 2, + sym_attribute_if_statement, + sym_attribute_for_loop, + [12454] = 7, + ACTIONS(996), 1, + anon_sym_AT, + ACTIONS(1002), 1, + aux_sym_attribute_name_token1, + ACTIONS(1068), 1, + anon_sym_RBRACE, + STATE(374), 1, + sym_attribute_name, + STATE(280), 2, + sym_attribute_or_control, + aux_sym_html_element_repeat1, + STATE(379), 2, + sym_attribute_control_flow, + sym_html_attribute, + STATE(414), 2, + sym_attribute_if_statement, + sym_attribute_for_loop, + [12479] = 2, + ACTIONS(1072), 1, + anon_sym_LT, + ACTIONS(350), 9, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_PIPE, + sym_identifier, + [12494] = 7, + ACTIONS(996), 1, + anon_sym_AT, + ACTIONS(1002), 1, + aux_sym_attribute_name_token1, + ACTIONS(1074), 1, + anon_sym_RBRACE, + STATE(374), 1, + sym_attribute_name, + STATE(300), 2, + sym_attribute_or_control, + aux_sym_html_element_repeat1, + STATE(379), 2, + sym_attribute_control_flow, + sym_html_attribute, + STATE(414), 2, + sym_attribute_if_statement, + sym_attribute_for_loop, + [12519] = 6, + ACTIONS(1076), 1, + anon_sym_LPAREN, + ACTIONS(1078), 1, + anon_sym_LBRACK, + ACTIONS(1080), 1, + anon_sym_BANG, + ACTIONS(1082), 1, + anon_sym_DOT, + STATE(331), 1, + aux_sym_expression_path_repeat1, + ACTIONS(588), 5, + anon_sym_AT, + anon_sym_RBRACE, + anon_sym_GT, + anon_sym_SLASH, + aux_sym_attribute_name_token1, + [12542] = 6, + ACTIONS(1084), 1, + anon_sym_LPAREN, + ACTIONS(1086), 1, + anon_sym_LBRACK, + ACTIONS(1088), 1, + anon_sym_BANG, + ACTIONS(1090), 1, + anon_sym_DOT, + STATE(349), 1, + aux_sym_expression_path_repeat1, + ACTIONS(588), 4, + anon_sym_AT, + anon_sym_GT, + anon_sym_SLASH, + sym_identifier, + [12564] = 5, + ACTIONS(1076), 1, + anon_sym_LPAREN, + ACTIONS(1078), 1, + anon_sym_LBRACK, + ACTIONS(1082), 1, + anon_sym_DOT, + STATE(312), 1, + aux_sym_expression_path_repeat1, + ACTIONS(635), 5, + anon_sym_AT, + anon_sym_RBRACE, + anon_sym_GT, + anon_sym_SLASH, + aux_sym_attribute_name_token1, + [12584] = 5, + ACTIONS(1092), 1, + anon_sym_LPAREN, + ACTIONS(1095), 1, + anon_sym_LBRACK, + ACTIONS(1098), 1, + anon_sym_DOT, + STATE(312), 1, + aux_sym_expression_path_repeat1, + ACTIONS(604), 5, + anon_sym_AT, + anon_sym_RBRACE, + anon_sym_GT, + anon_sym_SLASH, + aux_sym_attribute_name_token1, + [12604] = 5, + ACTIONS(1101), 1, + anon_sym_AT, + ACTIONS(1106), 1, + sym_identifier, + ACTIONS(1104), 2, + anon_sym_GT, + anon_sym_SLASH, + STATE(313), 2, + sym_function_attribute, + aux_sym_self_closing_function_tag_repeat1, + STATE(436), 3, + sym_attribute_reference, + sym_named_function_attribute, + sym_boolean_attribute, + [12624] = 1, + ACTIONS(476), 9, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_PIPE, + sym_identifier, + [12636] = 1, + ACTIONS(388), 9, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_PIPE, + sym_identifier, + [12648] = 1, + ACTIONS(416), 9, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_PIPE, + sym_identifier, + [12660] = 1, + ACTIONS(392), 9, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_PIPE, + sym_identifier, + [12672] = 9, + ACTIONS(1109), 1, + anon_sym_LBRACE, + ACTIONS(1111), 1, + anon_sym_LPAREN, + ACTIONS(1113), 1, + anon_sym_out, + ACTIONS(1115), 1, + anon_sym_target, + ACTIONS(1117), 1, + anon_sym_safe, + ACTIONS(1119), 1, + anon_sym_format, + ACTIONS(1121), 1, + anon_sym_matches, + ACTIONS(1123), 1, + sym_identifier, + STATE(418), 1, + sym_expression_path, + [12700] = 1, + ACTIONS(396), 9, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_PIPE, + sym_identifier, + [12712] = 1, + ACTIONS(534), 9, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_PIPE, + sym_identifier, + [12724] = 6, + ACTIONS(1125), 1, + anon_sym_AT, + ACTIONS(1127), 1, + anon_sym_GT, + ACTIONS(1129), 1, + anon_sym_SLASH, + ACTIONS(1131), 1, + sym_identifier, + STATE(313), 2, + sym_function_attribute, + aux_sym_self_closing_function_tag_repeat1, + STATE(436), 3, + sym_attribute_reference, + sym_named_function_attribute, + sym_boolean_attribute, + [12746] = 1, + ACTIONS(404), 9, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_PIPE, + sym_identifier, + [12758] = 1, + ACTIONS(400), 9, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_PIPE, + sym_identifier, + [12770] = 6, + ACTIONS(1125), 1, + anon_sym_AT, + ACTIONS(1131), 1, + sym_identifier, + ACTIONS(1133), 1, + anon_sym_GT, + ACTIONS(1135), 1, + anon_sym_SLASH, + STATE(321), 2, + sym_function_attribute, + aux_sym_self_closing_function_tag_repeat1, + STATE(436), 3, + sym_attribute_reference, + sym_named_function_attribute, + sym_boolean_attribute, + [12792] = 1, + ACTIONS(520), 9, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_PIPE, + sym_identifier, + [12804] = 1, + ACTIONS(380), 9, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_PIPE, + sym_identifier, + [12816] = 1, + ACTIONS(384), 9, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_PIPE, + sym_identifier, + [12828] = 1, + ACTIONS(408), 9, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_PIPE, + sym_identifier, + [12840] = 1, + ACTIONS(412), 9, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_PIPE, + sym_identifier, + [12852] = 5, + ACTIONS(1076), 1, + anon_sym_LPAREN, + ACTIONS(1078), 1, + anon_sym_LBRACK, + ACTIONS(1082), 1, + anon_sym_DOT, + STATE(311), 1, + aux_sym_expression_path_repeat1, + ACTIONS(643), 5, + anon_sym_AT, + anon_sym_RBRACE, + anon_sym_GT, + anon_sym_SLASH, + aux_sym_attribute_name_token1, + [12872] = 5, + ACTIONS(1076), 1, + anon_sym_LPAREN, + ACTIONS(1078), 1, + anon_sym_LBRACK, + ACTIONS(1082), 1, + anon_sym_DOT, + STATE(312), 1, + aux_sym_expression_path_repeat1, + ACTIONS(643), 5, + anon_sym_AT, + anon_sym_RBRACE, + anon_sym_GT, + anon_sym_SLASH, + aux_sym_attribute_name_token1, + [12892] = 1, + ACTIONS(488), 9, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_PIPE, + sym_identifier, + [12904] = 1, + ACTIONS(496), 9, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_PIPE, + sym_identifier, + [12916] = 1, + ACTIONS(420), 9, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_PIPE, + sym_identifier, + [12928] = 1, + ACTIONS(364), 9, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_PIPE, + sym_identifier, + [12940] = 1, + ACTIONS(424), 9, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_PIPE, + sym_identifier, + [12952] = 1, + ACTIONS(524), 9, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_PIPE, + sym_identifier, + [12964] = 1, + ACTIONS(452), 9, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_PIPE, + sym_identifier, + [12976] = 1, + ACTIONS(460), 9, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_PIPE, + sym_identifier, + [12988] = 3, + ACTIONS(1139), 1, + anon_sym_js, + STATE(696), 1, + sym_language_name, + ACTIONS(1137), 6, + anon_sym_html, + anon_sym_css, + anon_sym_javascript, + anon_sym_json, + anon_sym_alpine, + anon_sym_style, + [13003] = 1, + ACTIONS(604), 8, + anon_sym_AT, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_SLASH, + aux_sym_attribute_name_token1, + anon_sym_DOT, + [13014] = 1, + ACTIONS(792), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_if, + anon_sym_in, + [13025] = 1, + ACTIONS(738), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_if, + anon_sym_in, + [13036] = 1, + ACTIONS(742), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_if, + anon_sym_in, + [13047] = 1, + ACTIONS(746), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_if, + anon_sym_in, + [13058] = 1, + ACTIONS(770), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_if, + anon_sym_in, + [13069] = 1, + ACTIONS(647), 8, + anon_sym_AT, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_SLASH, + aux_sym_attribute_name_token1, + anon_sym_DOT, + [13080] = 5, + ACTIONS(1084), 1, + anon_sym_LPAREN, + ACTIONS(1086), 1, + anon_sym_LBRACK, + ACTIONS(1090), 1, + anon_sym_DOT, + STATE(350), 1, + aux_sym_expression_path_repeat1, + ACTIONS(643), 4, + anon_sym_AT, + anon_sym_GT, + anon_sym_SLASH, + sym_identifier, + [13099] = 5, + ACTIONS(1084), 1, + anon_sym_LPAREN, + ACTIONS(1086), 1, + anon_sym_LBRACK, + ACTIONS(1090), 1, + anon_sym_DOT, + STATE(351), 1, + aux_sym_expression_path_repeat1, + ACTIONS(643), 4, + anon_sym_AT, + anon_sym_GT, + anon_sym_SLASH, + sym_identifier, + [13118] = 5, + ACTIONS(1084), 1, + anon_sym_LPAREN, + ACTIONS(1086), 1, + anon_sym_LBRACK, + ACTIONS(1090), 1, + anon_sym_DOT, + STATE(351), 1, + aux_sym_expression_path_repeat1, + ACTIONS(635), 4, + anon_sym_AT, + anon_sym_GT, + anon_sym_SLASH, + sym_identifier, + [13137] = 5, + ACTIONS(1141), 1, + anon_sym_LPAREN, + ACTIONS(1144), 1, + anon_sym_LBRACK, + ACTIONS(1147), 1, + anon_sym_DOT, + STATE(351), 1, + aux_sym_expression_path_repeat1, + ACTIONS(604), 4, + anon_sym_AT, + anon_sym_GT, + anon_sym_SLASH, + sym_identifier, + [13156] = 1, + ACTIONS(730), 7, + anon_sym_AT, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_DOT_DOT, + sym_identifier, + [13166] = 1, + ACTIONS(730), 7, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_if, + anon_sym_in, + [13176] = 1, + ACTIONS(647), 7, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_DOT, + sym_identifier, + [13186] = 1, + ACTIONS(734), 7, + anon_sym_AT, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_DOT_DOT, + sym_identifier, + [13196] = 2, + ACTIONS(1150), 1, + anon_sym_DASH_GT, + ACTIONS(370), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ, + anon_sym_SEMI, + [13208] = 3, + ACTIONS(1152), 1, + anon_sym_LBRACE, + ACTIONS(1154), 1, + anon_sym_LPAREN, + ACTIONS(651), 5, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + [13222] = 2, + ACTIONS(1156), 1, + anon_sym_DASH_GT, + ACTIONS(364), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ, + anon_sym_SEMI, + [13234] = 1, + ACTIONS(604), 7, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_DOT, + sym_identifier, + [13244] = 1, + ACTIONS(734), 7, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_if, + anon_sym_in, + [13254] = 1, + ACTIONS(778), 6, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + [13263] = 3, + ACTIONS(1160), 1, + anon_sym_else, + ACTIONS(1162), 1, + aux_sym_attribute_name_token1, + ACTIONS(1158), 4, + anon_sym_AT, + anon_sym_RBRACE, + anon_sym_GT, + anon_sym_SLASH, + [13276] = 1, + ACTIONS(690), 6, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + [13285] = 1, + ACTIONS(734), 6, + anon_sym_AT, + anon_sym_RBRACE, + anon_sym_GT, + anon_sym_SLASH, + aux_sym_attribute_name_token1, + anon_sym_EQ_GT, + [13294] = 1, + ACTIONS(756), 6, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + [13303] = 1, + ACTIONS(708), 6, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + [13312] = 3, + ACTIONS(1166), 1, + anon_sym_else, + ACTIONS(1168), 1, + aux_sym_attribute_name_token1, + ACTIONS(1164), 4, + anon_sym_AT, + anon_sym_RBRACE, + anon_sym_GT, + anon_sym_SLASH, + [13325] = 1, + ACTIONS(1170), 6, + anon_sym_AT, + anon_sym_RBRACE, + anon_sym_GT, + anon_sym_EQ, + anon_sym_SLASH, + aux_sym_attribute_name_token1, + [13334] = 1, + ACTIONS(651), 6, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + [13343] = 1, + ACTIONS(716), 6, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + [13352] = 5, + ACTIONS(1172), 1, + anon_sym_AT, + ACTIONS(1174), 1, + sym_unquoted_value, + ACTIONS(1176), 1, + anon_sym_DQUOTE, + STATE(438), 1, + sym_function_attribute_value, + STATE(431), 2, + sym_render_closure, + sym_string_literal, + [13369] = 1, + ACTIONS(694), 6, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + [13378] = 1, + ACTIONS(730), 6, + anon_sym_AT, + anon_sym_RBRACE, + anon_sym_GT, + anon_sym_SLASH, + aux_sym_attribute_name_token1, + anon_sym_EQ_GT, + [13387] = 2, + ACTIONS(1180), 1, + anon_sym_EQ, + ACTIONS(1178), 5, + anon_sym_AT, + anon_sym_RBRACE, + anon_sym_GT, + anon_sym_SLASH, + aux_sym_attribute_name_token1, + [13398] = 1, + ACTIONS(788), 6, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + [13407] = 1, + ACTIONS(682), 6, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + [13416] = 1, + ACTIONS(774), 6, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + [13425] = 1, + ACTIONS(1182), 6, + anon_sym_AT, + anon_sym_RBRACE, + anon_sym_GT, + anon_sym_EQ, + anon_sym_SLASH, + aux_sym_attribute_name_token1, + [13434] = 1, + ACTIONS(1184), 5, + anon_sym_AT, + anon_sym_RBRACE, + anon_sym_GT, + anon_sym_SLASH, + aux_sym_attribute_name_token1, + [13442] = 2, + ACTIONS(1188), 1, + anon_sym_EQ, + ACTIONS(1186), 4, + anon_sym_AT, + anon_sym_GT, + anon_sym_SLASH, + sym_identifier, + [13452] = 5, + ACTIONS(1190), 1, + anon_sym_RBRACE, + ACTIONS(1192), 1, + anon_sym_DOT_DOT, + ACTIONS(1194), 1, + sym_identifier, + STATE(403), 1, + aux_sym_struct_pattern_repeat1, + STATE(430), 1, + sym_field_pattern, + [13468] = 1, + ACTIONS(1196), 5, + anon_sym_AT, + anon_sym_RBRACE, + anon_sym_GT, + anon_sym_SLASH, + aux_sym_attribute_name_token1, + [13476] = 1, + ACTIONS(1198), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_if, + anon_sym_in, + [13484] = 1, + ACTIONS(1200), 5, + anon_sym_AT, + anon_sym_RBRACE, + anon_sym_GT, + anon_sym_SLASH, + aux_sym_attribute_name_token1, + [13492] = 1, + ACTIONS(1202), 5, + anon_sym_AT, + anon_sym_RBRACE, + anon_sym_GT, + anon_sym_SLASH, + aux_sym_attribute_name_token1, + [13500] = 1, + ACTIONS(1204), 5, + anon_sym_AT, + anon_sym_RBRACE, + anon_sym_GT, + anon_sym_SLASH, + aux_sym_attribute_name_token1, + [13508] = 1, + ACTIONS(1206), 5, + anon_sym_AT, + anon_sym_RBRACE, + anon_sym_GT, + anon_sym_SLASH, + aux_sym_attribute_name_token1, + [13516] = 1, + ACTIONS(1208), 5, + anon_sym_AT, + anon_sym_RBRACE, + anon_sym_GT, + anon_sym_SLASH, + aux_sym_attribute_name_token1, + [13524] = 1, + ACTIONS(1210), 5, + anon_sym_AT, + anon_sym_RBRACE, + anon_sym_GT, + anon_sym_SLASH, + aux_sym_attribute_name_token1, + [13532] = 1, + ACTIONS(1212), 5, + anon_sym_AT, + anon_sym_RBRACE, + anon_sym_GT, + anon_sym_SLASH, + aux_sym_attribute_name_token1, + [13540] = 1, + ACTIONS(960), 5, + anon_sym_AT, + anon_sym_RBRACE, + anon_sym_GT, + anon_sym_SLASH, + aux_sym_attribute_name_token1, + [13548] = 1, + ACTIONS(936), 5, + anon_sym_AT, + anon_sym_RBRACE, + anon_sym_GT, + anon_sym_SLASH, + aux_sym_attribute_name_token1, + [13556] = 1, + ACTIONS(804), 5, + anon_sym_AT, + anon_sym_RBRACE, + anon_sym_GT, + anon_sym_SLASH, + aux_sym_attribute_name_token1, + [13564] = 1, + ACTIONS(812), 5, + anon_sym_AT, + anon_sym_RBRACE, + anon_sym_GT, + anon_sym_SLASH, + aux_sym_attribute_name_token1, + [13572] = 1, + ACTIONS(1214), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_if, + anon_sym_in, + [13580] = 1, + ACTIONS(800), 5, + anon_sym_AT, + anon_sym_RBRACE, + anon_sym_GT, + anon_sym_SLASH, + aux_sym_attribute_name_token1, + [13588] = 1, + ACTIONS(968), 5, + anon_sym_AT, + anon_sym_RBRACE, + anon_sym_GT, + anon_sym_SLASH, + aux_sym_attribute_name_token1, + [13596] = 1, + ACTIONS(864), 5, + anon_sym_AT, + anon_sym_RBRACE, + anon_sym_GT, + anon_sym_SLASH, + aux_sym_attribute_name_token1, + [13604] = 1, + ACTIONS(928), 5, + anon_sym_AT, + anon_sym_RBRACE, + anon_sym_GT, + anon_sym_SLASH, + aux_sym_attribute_name_token1, + [13612] = 1, + ACTIONS(808), 5, + anon_sym_AT, + anon_sym_RBRACE, + anon_sym_GT, + anon_sym_SLASH, + aux_sym_attribute_name_token1, + [13620] = 1, + ACTIONS(816), 5, + anon_sym_AT, + anon_sym_RBRACE, + anon_sym_GT, + anon_sym_SLASH, + aux_sym_attribute_name_token1, + [13628] = 2, + ACTIONS(1218), 1, + anon_sym_COLON, + ACTIONS(1216), 4, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT, + sym_identifier, + [13638] = 5, + ACTIONS(1194), 1, + sym_identifier, + ACTIONS(1220), 1, + anon_sym_RBRACE, + ACTIONS(1222), 1, + anon_sym_DOT_DOT, + STATE(417), 1, + aux_sym_struct_pattern_repeat1, + STATE(430), 1, + sym_field_pattern, + [13654] = 1, + ACTIONS(892), 5, + anon_sym_AT, + anon_sym_RBRACE, + anon_sym_GT, + anon_sym_SLASH, + aux_sym_attribute_name_token1, + [13662] = 1, + ACTIONS(1224), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_if, + anon_sym_in, + [13670] = 1, + ACTIONS(1226), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_if, + anon_sym_in, + [13678] = 1, + ACTIONS(738), 5, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_DOT_DOT, + sym_identifier, + [13686] = 1, + ACTIONS(742), 5, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_DOT_DOT, + sym_identifier, + [13694] = 1, + ACTIONS(746), 5, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_DOT_DOT, + sym_identifier, + [13702] = 1, + ACTIONS(770), 5, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_DOT_DOT, + sym_identifier, + [13710] = 1, + ACTIONS(792), 5, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_DOT_DOT, + sym_identifier, + [13718] = 5, + ACTIONS(1194), 1, + sym_identifier, + ACTIONS(1228), 1, + anon_sym_RBRACE, + ACTIONS(1230), 1, + anon_sym_DOT_DOT, + STATE(413), 1, + aux_sym_struct_pattern_repeat1, + STATE(430), 1, + sym_field_pattern, + [13734] = 5, + ACTIONS(1194), 1, + sym_identifier, + ACTIONS(1232), 1, + anon_sym_RBRACE, + ACTIONS(1234), 1, + anon_sym_DOT_DOT, + STATE(417), 1, + aux_sym_struct_pattern_repeat1, + STATE(430), 1, + sym_field_pattern, + [13750] = 1, + ACTIONS(1236), 5, + anon_sym_AT, + anon_sym_RBRACE, + anon_sym_GT, + anon_sym_SLASH, + aux_sym_attribute_name_token1, + [13758] = 5, + ACTIONS(1194), 1, + sym_identifier, + ACTIONS(1238), 1, + anon_sym_RBRACE, + ACTIONS(1240), 1, + anon_sym_DOT_DOT, + STATE(416), 1, + aux_sym_struct_pattern_repeat1, + STATE(430), 1, + sym_field_pattern, + [13774] = 5, + ACTIONS(1194), 1, + sym_identifier, + ACTIONS(1242), 1, + anon_sym_RBRACE, + ACTIONS(1244), 1, + anon_sym_DOT_DOT, + STATE(417), 1, + aux_sym_struct_pattern_repeat1, + STATE(430), 1, + sym_field_pattern, + [13790] = 4, + ACTIONS(1248), 1, + sym_identifier, + STATE(417), 1, + aux_sym_struct_pattern_repeat1, + STATE(430), 1, + sym_field_pattern, + ACTIONS(1246), 2, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [13804] = 1, + ACTIONS(836), 5, + anon_sym_AT, + anon_sym_RBRACE, + anon_sym_GT, + anon_sym_SLASH, + aux_sym_attribute_name_token1, + [13812] = 4, + ACTIONS(1251), 1, + anon_sym_DQUOTE, + ACTIONS(1253), 1, + aux_sym_string_literal_token1, + ACTIONS(1255), 1, + sym_escape_sequence, + STATE(472), 1, + aux_sym_string_literal_repeat1, + [13825] = 1, + ACTIONS(1257), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_if, + [13832] = 4, + ACTIONS(1253), 1, + aux_sym_string_literal_token1, + ACTIONS(1255), 1, + sym_escape_sequence, + ACTIONS(1259), 1, + anon_sym_DQUOTE, + STATE(472), 1, + aux_sym_string_literal_repeat1, + [13845] = 3, + ACTIONS(1261), 1, + anon_sym_RBRACE, + ACTIONS(1263), 1, + sym_identifier, + STATE(462), 2, sym_enum_variant, aux_sym_enum_definition_repeat1, - [21629] = 3, - ACTIONS(1553), 1, + [13856] = 1, + ACTIONS(1224), 4, anon_sym_RBRACE, - ACTIONS(1555), 1, + anon_sym_COMMA, + anon_sym_DOT_DOT, sym_identifier, - STATE(578), 2, - sym_enum_variant, - aux_sym_enum_definition_repeat1, - [21640] = 3, - ACTIONS(1503), 1, - sym_identifier, - ACTIONS(1544), 1, + [13863] = 1, + ACTIONS(1265), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_if, + [13870] = 1, + ACTIONS(1214), 4, anon_sym_RBRACE, - STATE(537), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, + sym_identifier, + [13877] = 1, + ACTIONS(1267), 4, + anon_sym_AT, + anon_sym_GT, + anon_sym_SLASH, + sym_identifier, + [13884] = 1, + ACTIONS(1269), 4, + anon_sym_AT, + anon_sym_GT, + anon_sym_SLASH, + sym_identifier, + [13891] = 1, + ACTIONS(1271), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_if, + [13898] = 3, + ACTIONS(1273), 1, + anon_sym_RBRACE, + ACTIONS(1275), 1, + sym_identifier, + STATE(479), 2, sym_struct_field, aux_sym_struct_definition_repeat1, - [21651] = 3, + [13909] = 2, + ACTIONS(1279), 1, + anon_sym_COMMA, + ACTIONS(1277), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + sym_identifier, + [13918] = 1, + ACTIONS(1281), 4, + anon_sym_AT, + anon_sym_GT, + anon_sym_SLASH, + sym_identifier, + [13925] = 1, + ACTIONS(1283), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_if, + [13932] = 2, + ACTIONS(1285), 1, + anon_sym_DASH_GT, + ACTIONS(370), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + sym_identifier, + [13941] = 1, + ACTIONS(1287), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_if, + [13948] = 3, + ACTIONS(1263), 1, + sym_identifier, + ACTIONS(1289), 1, + anon_sym_RBRACE, + STATE(470), 2, + sym_enum_variant, + aux_sym_enum_definition_repeat1, + [13959] = 1, + ACTIONS(1291), 4, + anon_sym_AT, + anon_sym_GT, + anon_sym_SLASH, + sym_identifier, + [13966] = 3, + ACTIONS(1293), 1, + anon_sym_COMMA, + STATE(437), 1, + aux_sym_render_type_repeat1, + ACTIONS(1296), 2, + anon_sym_RPAREN, + anon_sym_GT, + [13977] = 1, + ACTIONS(1298), 4, + anon_sym_AT, + anon_sym_GT, + anon_sym_SLASH, + sym_identifier, + [13984] = 2, + ACTIONS(1300), 1, + anon_sym_DASH_GT, + ACTIONS(364), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + sym_identifier, + [13993] = 1, + ACTIONS(1226), 4, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT, + sym_identifier, + [14000] = 1, + ACTIONS(1302), 4, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT, + sym_identifier, + [14007] = 1, + ACTIONS(1302), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_if, + [14014] = 1, + ACTIONS(1271), 4, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT, + sym_identifier, + [14021] = 1, + ACTIONS(1283), 4, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT, + sym_identifier, + [14028] = 4, + ACTIONS(1304), 1, + anon_sym_DQUOTE, + ACTIONS(1306), 1, + aux_sym_string_literal_token1, + ACTIONS(1308), 1, + sym_escape_sequence, + STATE(421), 1, + aux_sym_string_literal_repeat1, + [14041] = 1, + ACTIONS(1310), 4, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT, + sym_identifier, + [14048] = 3, + ACTIONS(1263), 1, + sym_identifier, + ACTIONS(1312), 1, + anon_sym_RBRACE, + STATE(471), 2, + sym_enum_variant, + aux_sym_enum_definition_repeat1, + [14059] = 1, + ACTIONS(1257), 4, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT, + sym_identifier, + [14066] = 1, + ACTIONS(1265), 4, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT, + sym_identifier, + [14073] = 1, + ACTIONS(1287), 4, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT, + sym_identifier, + [14080] = 1, + ACTIONS(1314), 4, + anon_sym_AT, + anon_sym_GT, + anon_sym_SLASH, + sym_identifier, + [14087] = 4, + ACTIONS(1316), 1, + anon_sym_LPAREN, + ACTIONS(1318), 1, + anon_sym_render, + ACTIONS(1320), 1, + anon_sym_Out, + ACTIONS(1322), 1, + anon_sym_Target, + [14100] = 1, + ACTIONS(1324), 4, + anon_sym_AT, + anon_sym_GT, + anon_sym_SLASH, + sym_identifier, + [14107] = 1, + ACTIONS(629), 4, + anon_sym_AT, + anon_sym_GT, + anon_sym_SLASH, + sym_identifier, + [14114] = 1, + ACTIONS(602), 4, + anon_sym_AT, + anon_sym_GT, + anon_sym_SLASH, + sym_identifier, + [14121] = 4, + ACTIONS(1326), 1, + anon_sym_DQUOTE, + ACTIONS(1328), 1, + aux_sym_string_literal_token1, + ACTIONS(1330), 1, + sym_escape_sequence, + STATE(457), 1, + aux_sym_string_literal_repeat1, + [14134] = 4, + ACTIONS(1253), 1, + aux_sym_string_literal_token1, + ACTIONS(1255), 1, + sym_escape_sequence, + ACTIONS(1332), 1, + anon_sym_DQUOTE, + STATE(472), 1, + aux_sym_string_literal_repeat1, + [14147] = 3, + ACTIONS(1334), 1, + anon_sym_RBRACE, + ACTIONS(1336), 1, + sym_identifier, + STATE(458), 2, + sym_struct_field, + aux_sym_struct_definition_repeat1, + [14158] = 1, + ACTIONS(1339), 4, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT, + sym_identifier, + [14165] = 4, + ACTIONS(1341), 1, + anon_sym_LPAREN, + ACTIONS(1343), 1, + anon_sym_render, + ACTIONS(1345), 1, + anon_sym_Out, + ACTIONS(1347), 1, + anon_sym_Target, + [14178] = 3, + ACTIONS(1275), 1, + sym_identifier, + ACTIONS(1349), 1, + anon_sym_RBRACE, + STATE(458), 2, + sym_struct_field, + aux_sym_struct_definition_repeat1, + [14189] = 3, + ACTIONS(1263), 1, + sym_identifier, + ACTIONS(1351), 1, + anon_sym_RBRACE, + STATE(467), 2, + sym_enum_variant, + aux_sym_enum_definition_repeat1, + [14200] = 4, + ACTIONS(1353), 1, + anon_sym_DQUOTE, + ACTIONS(1355), 1, + aux_sym_string_literal_token1, + ACTIONS(1357), 1, + sym_escape_sequence, + STATE(465), 1, + aux_sym_string_literal_repeat1, + [14213] = 3, + ACTIONS(1275), 1, + sym_identifier, + ACTIONS(1359), 1, + anon_sym_RBRACE, + STATE(458), 2, + sym_struct_field, + aux_sym_struct_definition_repeat1, + [14224] = 4, + ACTIONS(1253), 1, + aux_sym_string_literal_token1, + ACTIONS(1255), 1, + sym_escape_sequence, + ACTIONS(1361), 1, + anon_sym_DQUOTE, + STATE(472), 1, + aux_sym_string_literal_repeat1, + [14237] = 3, + ACTIONS(1275), 1, + sym_identifier, + ACTIONS(1359), 1, + anon_sym_RBRACE, + STATE(461), 2, + sym_struct_field, + aux_sym_struct_definition_repeat1, + [14248] = 3, + ACTIONS(1363), 1, + anon_sym_RBRACE, + ACTIONS(1365), 1, + sym_identifier, + STATE(467), 2, + sym_enum_variant, + aux_sym_enum_definition_repeat1, + [14259] = 1, + ACTIONS(1310), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_if, + [14266] = 4, + ACTIONS(1368), 1, + anon_sym_DQUOTE, + ACTIONS(1370), 1, + aux_sym_string_literal_token1, + ACTIONS(1372), 1, + sym_escape_sequence, + STATE(419), 1, + aux_sym_string_literal_repeat1, + [14279] = 3, + ACTIONS(1263), 1, + sym_identifier, + ACTIONS(1312), 1, + anon_sym_RBRACE, + STATE(467), 2, + sym_enum_variant, + aux_sym_enum_definition_repeat1, + [14290] = 3, + ACTIONS(1261), 1, + anon_sym_RBRACE, + ACTIONS(1263), 1, + sym_identifier, + STATE(467), 2, + sym_enum_variant, + aux_sym_enum_definition_repeat1, + [14301] = 4, + ACTIONS(1374), 1, + anon_sym_DQUOTE, + ACTIONS(1376), 1, + aux_sym_string_literal_token1, + ACTIONS(1379), 1, + sym_escape_sequence, + STATE(472), 1, + aux_sym_string_literal_repeat1, + [14314] = 4, + ACTIONS(1382), 1, + anon_sym_DQUOTE, + ACTIONS(1384), 1, + aux_sym_string_literal_token1, + ACTIONS(1386), 1, + sym_escape_sequence, + STATE(474), 1, + aux_sym_string_literal_repeat1, + [14327] = 4, + ACTIONS(1253), 1, + aux_sym_string_literal_token1, + ACTIONS(1255), 1, + sym_escape_sequence, + ACTIONS(1388), 1, + anon_sym_DQUOTE, + STATE(472), 1, + aux_sym_string_literal_repeat1, + [14340] = 1, + ACTIONS(1390), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_if, + [14347] = 4, + ACTIONS(1392), 1, + anon_sym_DQUOTE, + ACTIONS(1394), 1, + aux_sym_string_literal_token1, + ACTIONS(1396), 1, + sym_escape_sequence, + STATE(477), 1, + aux_sym_string_literal_repeat1, + [14360] = 4, + ACTIONS(1253), 1, + aux_sym_string_literal_token1, + ACTIONS(1255), 1, + sym_escape_sequence, + ACTIONS(1398), 1, + anon_sym_DQUOTE, + STATE(472), 1, + aux_sym_string_literal_repeat1, + [14373] = 1, + ACTIONS(1198), 4, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT, + sym_identifier, + [14380] = 3, + ACTIONS(1275), 1, + sym_identifier, + ACTIONS(1400), 1, + anon_sym_RBRACE, + STATE(458), 2, + sym_struct_field, + aux_sym_struct_definition_repeat1, + [14391] = 3, + ACTIONS(1275), 1, + sym_identifier, + ACTIONS(1400), 1, + anon_sym_RBRACE, + STATE(464), 2, + sym_struct_field, + aux_sym_struct_definition_repeat1, + [14402] = 3, + ACTIONS(1404), 1, + anon_sym_COMMA, + ACTIONS(1406), 1, + anon_sym_LPAREN, + ACTIONS(1402), 2, + anon_sym_RBRACE, + sym_identifier, + [14413] = 1, + ACTIONS(1390), 4, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT, + sym_identifier, + [14420] = 3, + ACTIONS(1408), 1, + anon_sym_RPAREN, + ACTIONS(1410), 1, + sym_identifier, + STATE(579), 1, + sym_parameter, + [14430] = 3, + ACTIONS(1412), 1, + anon_sym_COMMA, + ACTIONS(1414), 1, + anon_sym_RPAREN, + STATE(497), 1, + aux_sym_render_type_repeat1, + [14440] = 3, + ACTIONS(1416), 1, + anon_sym_COMMA, + ACTIONS(1418), 1, + anon_sym_RPAREN, + STATE(499), 1, + aux_sym_parameter_list_repeat1, + [14450] = 3, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(1423), 1, + anon_sym_RBRACK, + STATE(486), 1, + aux_sym_attribute_list_repeat1, + [14460] = 3, + ACTIONS(1425), 1, + anon_sym_COMMA, + ACTIONS(1427), 1, + anon_sym_GT, + STATE(585), 1, + aux_sym_generic_params_repeat1, + [14470] = 3, + ACTIONS(1429), 1, + anon_sym_LBRACE, + ACTIONS(1431), 1, + anon_sym_if, + STATE(259), 1, + sym_content_block, + [14480] = 3, + ACTIONS(1433), 1, + anon_sym_COMMA, + ACTIONS(1435), 1, + anon_sym_RPAREN, + STATE(496), 1, + aux_sym_tuple_variant_pattern_repeat1, + [14490] = 3, + ACTIONS(167), 1, + anon_sym_RPAREN, + ACTIONS(1437), 1, + anon_sym_COMMA, + STATE(515), 1, + aux_sym_render_type_repeat1, + [14500] = 3, + ACTIONS(1439), 1, + anon_sym_COMMA, + ACTIONS(1441), 1, + anon_sym_RPAREN, + STATE(549), 1, + aux_sym_parameter_list_repeat1, + [14510] = 3, + ACTIONS(1443), 1, + anon_sym_COMMA, + ACTIONS(1445), 1, + anon_sym_RPAREN, + STATE(510), 1, + aux_sym_format_expression_repeat1, + [14520] = 3, + ACTIONS(1447), 1, + anon_sym_RBRACE, + ACTIONS(1449), 1, + sym_identifier, + STATE(643), 1, + sym_struct_field_init, + [14530] = 3, + ACTIONS(1447), 1, + anon_sym_RBRACE, + ACTIONS(1451), 1, + anon_sym_COMMA, + STATE(557), 1, + aux_sym_inferred_enum_struct_repeat1, + [14540] = 3, + ACTIONS(1453), 1, + anon_sym_COMMA, + ACTIONS(1455), 1, + anon_sym_PIPE, + STATE(506), 1, + aux_sym_closure_type_repeat1, + [14550] = 3, + ACTIONS(458), 1, + anon_sym_RPAREN, + ACTIONS(1457), 1, + anon_sym_COMMA, + STATE(504), 1, + aux_sym_tuple_variant_pattern_repeat1, + [14560] = 3, + ACTIONS(165), 1, + anon_sym_RPAREN, + ACTIONS(1459), 1, + anon_sym_COMMA, + STATE(437), 1, + aux_sym_render_type_repeat1, + [14570] = 3, + ACTIONS(1410), 1, + sym_identifier, + ACTIONS(1461), 1, + anon_sym_RPAREN, + STATE(633), 1, + sym_parameter, + [14580] = 3, + ACTIONS(1461), 1, + anon_sym_RPAREN, + ACTIONS(1463), 1, + anon_sym_COMMA, + STATE(549), 1, + aux_sym_parameter_list_repeat1, + [14590] = 2, + ACTIONS(1467), 1, + anon_sym_LPAREN, + ACTIONS(1465), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [14598] = 3, + ACTIONS(1469), 1, + anon_sym_COMMA, + ACTIONS(1471), 1, + anon_sym_RBRACK, + STATE(571), 1, + aux_sym_attribute_list_repeat1, + [14608] = 3, + ACTIONS(1473), 1, + anon_sym_COMMA, + ACTIONS(1475), 1, + anon_sym_RPAREN, + STATE(566), 1, + aux_sym_tuple_variant_pattern_repeat1, + [14618] = 3, + ACTIONS(1477), 1, + anon_sym_COMMA, + ACTIONS(1479), 1, + anon_sym_RPAREN, + STATE(520), 1, + aux_sym_format_expression_repeat1, + [14628] = 3, + ACTIONS(1481), 1, + anon_sym_COMMA, + ACTIONS(1484), 1, + anon_sym_RPAREN, + STATE(504), 1, + aux_sym_tuple_variant_pattern_repeat1, + [14638] = 3, + ACTIONS(1486), 1, + anon_sym_COMMA, + ACTIONS(1489), 1, + anon_sym_RPAREN, + STATE(505), 1, + aux_sym_format_expression_repeat1, + [14648] = 3, + ACTIONS(1453), 1, + anon_sym_COMMA, + ACTIONS(1491), 1, + anon_sym_PIPE, + STATE(553), 1, + aux_sym_closure_type_repeat1, + [14658] = 3, + ACTIONS(1437), 1, + anon_sym_COMMA, + ACTIONS(1493), 1, + anon_sym_GT, + STATE(555), 1, + aux_sym_render_type_repeat1, + [14668] = 2, + ACTIONS(1497), 1, + anon_sym_COMMA, + ACTIONS(1495), 2, + anon_sym_RBRACE, + sym_identifier, + [14676] = 3, + ACTIONS(1499), 1, + anon_sym_LBRACK, + ACTIONS(1501), 1, + sym_identifier, + STATE(709), 1, + sym_attribute_list, + [14686] = 3, + ACTIONS(1443), 1, + anon_sym_COMMA, + ACTIONS(1503), 1, + anon_sym_RPAREN, + STATE(505), 1, + aux_sym_format_expression_repeat1, + [14696] = 3, + ACTIONS(1499), 1, + anon_sym_LBRACK, + ACTIONS(1505), 1, + sym_identifier, + STATE(754), 1, + sym_attribute_list, + [14706] = 3, + ACTIONS(1507), 1, + anon_sym_LBRACE, + ACTIONS(1509), 1, + anon_sym_LT, + STATE(748), 1, + sym_generic_params, + [14716] = 3, + ACTIONS(1439), 1, + anon_sym_COMMA, + ACTIONS(1511), 1, + anon_sym_RPAREN, + STATE(491), 1, + aux_sym_parameter_list_repeat1, + [14726] = 3, + ACTIONS(1509), 1, + anon_sym_LT, + ACTIONS(1513), 1, + anon_sym_LBRACE, + STATE(721), 1, + sym_generic_params, + [14736] = 3, + ACTIONS(1437), 1, + anon_sym_COMMA, + ACTIONS(1515), 1, + anon_sym_RPAREN, + STATE(437), 1, + aux_sym_render_type_repeat1, + [14746] = 3, + ACTIONS(1517), 1, + anon_sym_RBRACK, + ACTIONS(1519), 1, + sym_identifier, + STATE(501), 1, + sym_attribute, + [14756] = 3, + ACTIONS(1437), 1, + anon_sym_COMMA, + ACTIONS(1515), 1, + anon_sym_RPAREN, + STATE(565), 1, + aux_sym_render_type_repeat1, + [14766] = 3, + ACTIONS(1410), 1, + sym_identifier, + ACTIONS(1521), 1, + anon_sym_RPAREN, + STATE(513), 1, + sym_parameter, + [14776] = 1, + ACTIONS(1296), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + [14782] = 3, + ACTIONS(376), 1, + anon_sym_RPAREN, + ACTIONS(1523), 1, + anon_sym_COMMA, + STATE(505), 1, + aux_sym_format_expression_repeat1, + [14792] = 3, + ACTIONS(1449), 1, + sym_identifier, + ACTIONS(1525), 1, + anon_sym_RBRACE, + STATE(527), 1, + sym_struct_field_init, + [14802] = 2, + ACTIONS(1529), 1, + anon_sym_COMMA, + ACTIONS(1527), 2, + anon_sym_RBRACE, + sym_identifier, + [14810] = 1, + ACTIONS(530), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + sym_identifier, + [14816] = 3, + ACTIONS(1531), 1, + anon_sym_COMMA, + ACTIONS(1533), 1, + anon_sym_RPAREN, + STATE(529), 1, + aux_sym_tuple_variant_pattern_repeat1, + [14826] = 3, + ACTIONS(1443), 1, + anon_sym_COMMA, + ACTIONS(1535), 1, + anon_sym_RPAREN, + STATE(530), 1, + aux_sym_format_expression_repeat1, + [14836] = 3, + ACTIONS(1509), 1, + anon_sym_LT, + ACTIONS(1537), 1, + anon_sym_LBRACE, + STATE(755), 1, + sym_generic_params, + [14846] = 3, + ACTIONS(1539), 1, + anon_sym_RBRACE, + ACTIONS(1541), 1, + anon_sym_COMMA, + STATE(532), 1, + aux_sym_inferred_enum_struct_repeat1, + [14856] = 3, + ACTIONS(1543), 1, + anon_sym_if, + ACTIONS(1545), 1, + anon_sym_for, + ACTIONS(1547), 1, + aux_sym_attribute_name_token2, + [14866] = 3, + ACTIONS(436), 1, + anon_sym_RPAREN, + ACTIONS(1549), 1, + anon_sym_COMMA, + STATE(504), 1, + aux_sym_tuple_variant_pattern_repeat1, + [14876] = 3, + ACTIONS(1443), 1, + anon_sym_COMMA, + ACTIONS(1551), 1, + anon_sym_RPAREN, + STATE(505), 1, + aux_sym_format_expression_repeat1, + [14886] = 3, + ACTIONS(1449), 1, + sym_identifier, + ACTIONS(1553), 1, + anon_sym_RBRACE, + STATE(643), 1, + sym_struct_field_init, + [14896] = 3, + ACTIONS(1553), 1, + anon_sym_RBRACE, + ACTIONS(1555), 1, + anon_sym_COMMA, + STATE(557), 1, + aux_sym_inferred_enum_struct_repeat1, + [14906] = 3, + ACTIONS(1449), 1, + sym_identifier, + ACTIONS(1557), 1, + anon_sym_RBRACE, + STATE(564), 1, + sym_struct_field_init, + [14916] = 3, ACTIONS(1559), 1, anon_sym_COMMA, ACTIONS(1561), 1, + anon_sym_RPAREN, + STATE(538), 1, + aux_sym_tuple_variant_pattern_repeat1, + [14926] = 3, + ACTIONS(1563), 1, anon_sym_LPAREN, - ACTIONS(1557), 2, - anon_sym_RBRACE, + ACTIONS(1565), 1, sym_identifier, - [21662] = 3, - ACTIONS(1555), 1, - sym_identifier, - ACTIONS(1563), 1, - anon_sym_RBRACE, - STATE(543), 2, - sym_enum_variant, - aux_sym_enum_definition_repeat1, - [21673] = 2, - ACTIONS(1567), 1, + STATE(451), 1, + sym_expression_path, + [14936] = 2, + ACTIONS(1569), 1, anon_sym_COMMA, - ACTIONS(1565), 3, + ACTIONS(1567), 2, anon_sym_RBRACE, - anon_sym_DOT_DOT, sym_identifier, - [21682] = 1, - ACTIONS(1569), 4, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AT, + [14944] = 3, + ACTIONS(1449), 1, sym_identifier, - [21689] = 1, - ACTIONS(1571), 4, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AT, - sym_identifier, - [21696] = 1, - ACTIONS(1470), 4, + ACTIONS(1571), 1, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT, - sym_identifier, - [21703] = 3, - ACTIONS(1555), 1, - sym_identifier, - ACTIONS(1563), 1, - anon_sym_RBRACE, - STATE(545), 2, - sym_enum_variant, - aux_sym_enum_definition_repeat1, - [21714] = 1, - ACTIONS(1408), 4, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT, - sym_identifier, - [21721] = 4, - ACTIONS(1540), 1, - aux_sym_string_literal_token1, - ACTIONS(1542), 1, - sym_escape_sequence, + STATE(643), 1, + sym_struct_field_init, + [14954] = 3, + ACTIONS(448), 1, + anon_sym_RPAREN, ACTIONS(1573), 1, - anon_sym_DQUOTE, - STATE(535), 1, - aux_sym_string_literal_repeat1, - [21734] = 1, - ACTIONS(1384), 4, - anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_DOT_DOT, - sym_identifier, - [21741] = 3, + STATE(504), 1, + aux_sym_tuple_variant_pattern_repeat1, + [14964] = 3, ACTIONS(1575), 1, anon_sym_COMMA, - STATE(558), 1, - aux_sym_array_literal_repeat1, - ACTIONS(922), 2, + ACTIONS(1577), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - [21752] = 1, - ACTIONS(1478), 4, - anon_sym_RBRACE, + STATE(544), 1, + aux_sym_render_type_repeat1, + [14974] = 3, + ACTIONS(1509), 1, + anon_sym_LT, + ACTIONS(1579), 1, + anon_sym_LBRACE, + STATE(701), 1, + sym_generic_params, + [14984] = 3, + ACTIONS(1453), 1, anon_sym_COMMA, - anon_sym_DOT_DOT, - sym_identifier, - [21759] = 4, - ACTIONS(1540), 1, - aux_sym_string_literal_token1, - ACTIONS(1542), 1, - sym_escape_sequence, - ACTIONS(1578), 1, - anon_sym_DQUOTE, - STATE(535), 1, - aux_sym_string_literal_repeat1, - [21772] = 1, - ACTIONS(1580), 4, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT, - sym_identifier, - [21779] = 3, - ACTIONS(1582), 1, - anon_sym_COMMA, - STATE(562), 1, - aux_sym_generic_params_repeat1, - ACTIONS(1585), 2, - anon_sym_GT, + ACTIONS(1581), 1, anon_sym_PIPE, - [21790] = 3, - ACTIONS(1503), 1, - sym_identifier, + STATE(545), 1, + aux_sym_closure_type_repeat1, + [14994] = 3, + ACTIONS(214), 1, + anon_sym_RPAREN, + ACTIONS(1437), 1, + anon_sym_COMMA, + STATE(547), 1, + aux_sym_render_type_repeat1, + [15004] = 2, + ACTIONS(1585), 1, + anon_sym_EQ, + ACTIONS(1583), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [15012] = 3, + ACTIONS(208), 1, + anon_sym_RPAREN, ACTIONS(1587), 1, - anon_sym_RBRACE, - STATE(542), 2, - sym_struct_field, - aux_sym_struct_definition_repeat1, - [21801] = 1, - ACTIONS(280), 4, - anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_DOT_DOT, - sym_identifier, - [21808] = 4, + STATE(437), 1, + aux_sym_render_type_repeat1, + [15022] = 3, + ACTIONS(1453), 1, + anon_sym_COMMA, ACTIONS(1589), 1, - anon_sym_DQUOTE, - ACTIONS(1591), 1, - aux_sym_string_literal_token1, - ACTIONS(1593), 1, - sym_escape_sequence, - STATE(566), 1, - aux_sym_string_literal_repeat1, - [21821] = 4, - ACTIONS(1540), 1, - aux_sym_string_literal_token1, - ACTIONS(1542), 1, - sym_escape_sequence, - ACTIONS(1595), 1, - anon_sym_DQUOTE, - STATE(535), 1, - aux_sym_string_literal_repeat1, - [21834] = 1, - ACTIONS(284), 4, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT, - sym_identifier, - [21841] = 3, - ACTIONS(1555), 1, - sym_identifier, - ACTIONS(1597), 1, - anon_sym_RBRACE, - STATE(549), 2, - sym_enum_variant, - aux_sym_enum_definition_repeat1, - [21852] = 4, - ACTIONS(1599), 1, - anon_sym_DQUOTE, - ACTIONS(1601), 1, - aux_sym_string_literal_token1, - ACTIONS(1603), 1, - sym_escape_sequence, - STATE(570), 1, - aux_sym_string_literal_repeat1, - [21865] = 4, - ACTIONS(1540), 1, - aux_sym_string_literal_token1, - ACTIONS(1542), 1, - sym_escape_sequence, - ACTIONS(1605), 1, - anon_sym_DQUOTE, - STATE(535), 1, - aux_sym_string_literal_repeat1, - [21878] = 1, - ACTIONS(288), 4, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT, - sym_identifier, - [21885] = 1, - ACTIONS(304), 4, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT, - sym_identifier, - [21892] = 4, - ACTIONS(1607), 1, - anon_sym_DQUOTE, - ACTIONS(1609), 1, - aux_sym_string_literal_token1, - ACTIONS(1611), 1, - sym_escape_sequence, - STATE(556), 1, - aux_sym_string_literal_repeat1, - [21905] = 1, - ACTIONS(1432), 4, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT, - sym_identifier, - [21912] = 1, - ACTIONS(1466), 4, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT, - sym_identifier, - [21919] = 1, - ACTIONS(1404), 4, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT, - sym_identifier, - [21926] = 1, - ACTIONS(328), 4, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT, - sym_identifier, - [21933] = 3, - ACTIONS(1555), 1, - sym_identifier, - ACTIONS(1613), 1, - anon_sym_RBRACE, - STATE(543), 2, - sym_enum_variant, - aux_sym_enum_definition_repeat1, - [21944] = 1, - ACTIONS(1615), 4, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AT, - sym_identifier, - [21951] = 1, - ACTIONS(1617), 4, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AT, - sym_identifier, - [21958] = 1, - ACTIONS(1619), 4, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AT, - sym_identifier, - [21965] = 1, - ACTIONS(1488), 4, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT, - sym_identifier, - [21972] = 1, - ACTIONS(1621), 4, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AT, - sym_identifier, - [21979] = 4, - ACTIONS(1623), 1, - anon_sym_DQUOTE, - ACTIONS(1625), 1, - aux_sym_string_literal_token1, - ACTIONS(1627), 1, - sym_escape_sequence, - STATE(560), 1, - aux_sym_string_literal_repeat1, - [21992] = 3, - ACTIONS(1629), 1, - anon_sym_RPAREN, - ACTIONS(1631), 1, - sym_identifier, - STATE(657), 1, - sym_parameter, - [22002] = 1, - ACTIONS(1633), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT, - [22008] = 3, - ACTIONS(1635), 1, - anon_sym_COMMA, - ACTIONS(1637), 1, - anon_sym_GT, - STATE(634), 1, - aux_sym_generic_type_repeat1, - [22018] = 3, - ACTIONS(733), 1, - anon_sym_RPAREN, - ACTIONS(1639), 1, - anon_sym_COMMA, - STATE(629), 1, - aux_sym_tuple_pattern_repeat1, - [22028] = 2, - ACTIONS(1643), 1, - anon_sym_COMMA, - ACTIONS(1641), 2, - anon_sym_RBRACE, - sym_identifier, - [22036] = 3, - ACTIONS(1645), 1, - anon_sym_COMMA, - ACTIONS(1647), 1, - anon_sym_GT, - STATE(562), 1, - aux_sym_generic_params_repeat1, - [22046] = 3, - ACTIONS(1649), 1, - anon_sym_COMMA, - ACTIONS(1651), 1, - anon_sym_RBRACK, - STATE(640), 1, - aux_sym_attribute_list_repeat1, - [22056] = 3, - ACTIONS(1653), 1, - anon_sym_COMMA, - ACTIONS(1655), 1, - anon_sym_RPAREN, - STATE(588), 1, - aux_sym_tuple_pattern_repeat1, - [22066] = 3, - ACTIONS(1657), 1, - anon_sym_COMMA, - ACTIONS(1659), 1, - anon_sym_RPAREN, - STATE(619), 1, - aux_sym_generic_type_repeat1, - [22076] = 3, - ACTIONS(1631), 1, - sym_identifier, - ACTIONS(1661), 1, - anon_sym_RPAREN, - STATE(657), 1, - sym_parameter, - [22086] = 3, - ACTIONS(1663), 1, anon_sym_PIPE, - ACTIONS(1665), 1, - sym_identifier, - STATE(756), 1, - sym_closure_params, - [22096] = 3, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(1667), 1, - sym_import_path, - STATE(732), 1, - sym_string_literal, - [22106] = 2, - ACTIONS(1671), 1, + STATE(553), 1, + aux_sym_closure_type_repeat1, + [15032] = 3, + ACTIONS(1437), 1, anon_sym_COMMA, - ACTIONS(1669), 2, + ACTIONS(1591), 1, + anon_sym_GT, + STATE(550), 1, + aux_sym_render_type_repeat1, + [15042] = 3, + ACTIONS(1437), 1, + anon_sym_COMMA, + ACTIONS(1593), 1, + anon_sym_RPAREN, + STATE(437), 1, + aux_sym_render_type_repeat1, + [15052] = 3, + ACTIONS(1437), 1, + anon_sym_COMMA, + ACTIONS(1593), 1, + anon_sym_RPAREN, + STATE(551), 1, + aux_sym_render_type_repeat1, + [15062] = 3, + ACTIONS(1595), 1, + anon_sym_COMMA, + ACTIONS(1598), 1, + anon_sym_RPAREN, + STATE(549), 1, + aux_sym_parameter_list_repeat1, + [15072] = 3, + ACTIONS(1437), 1, + anon_sym_COMMA, + ACTIONS(1600), 1, + anon_sym_GT, + STATE(437), 1, + aux_sym_render_type_repeat1, + [15082] = 3, + ACTIONS(1437), 1, + anon_sym_COMMA, + ACTIONS(1602), 1, + anon_sym_RPAREN, + STATE(437), 1, + aux_sym_render_type_repeat1, + [15092] = 2, + ACTIONS(1606), 1, + anon_sym_COMMA, + ACTIONS(1604), 2, anon_sym_RBRACE, sym_identifier, - [22114] = 3, - ACTIONS(1673), 1, + [15100] = 3, + ACTIONS(1608), 1, + anon_sym_COMMA, + ACTIONS(1611), 1, + anon_sym_PIPE, + STATE(553), 1, + aux_sym_closure_type_repeat1, + [15110] = 3, + ACTIONS(1613), 1, + anon_sym_COMMA, + ACTIONS(1615), 1, + anon_sym_RPAREN, + STATE(558), 1, + aux_sym_tuple_variant_pattern_repeat1, + [15120] = 3, + ACTIONS(1437), 1, + anon_sym_COMMA, + ACTIONS(1617), 1, + anon_sym_GT, + STATE(437), 1, + aux_sym_render_type_repeat1, + [15130] = 3, + ACTIONS(1449), 1, + sym_identifier, + ACTIONS(1619), 1, + anon_sym_RBRACE, + STATE(643), 1, + sym_struct_field_init, + [15140] = 3, + ACTIONS(1621), 1, + anon_sym_RBRACE, + ACTIONS(1623), 1, + anon_sym_COMMA, + STATE(557), 1, + aux_sym_inferred_enum_struct_repeat1, + [15150] = 3, + ACTIONS(484), 1, + anon_sym_RPAREN, + ACTIONS(1626), 1, + anon_sym_COMMA, + STATE(504), 1, + aux_sym_tuple_variant_pattern_repeat1, + [15160] = 3, + ACTIONS(1628), 1, + anon_sym_COMMA, + ACTIONS(1630), 1, + anon_sym_RPAREN, + STATE(561), 1, + aux_sym_tuple_variant_pattern_repeat1, + [15170] = 3, + ACTIONS(1410), 1, + sym_identifier, + ACTIONS(1632), 1, + anon_sym_RPAREN, + STATE(633), 1, + sym_parameter, + [15180] = 3, + ACTIONS(492), 1, + anon_sym_RPAREN, + ACTIONS(1634), 1, + anon_sym_COMMA, + STATE(504), 1, + aux_sym_tuple_variant_pattern_repeat1, + [15190] = 1, + ACTIONS(1246), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + sym_identifier, + [15196] = 3, + ACTIONS(362), 1, + anon_sym_DQUOTE, + ACTIONS(1636), 1, + sym_import_path, + STATE(279), 1, + sym_string_literal, + [15206] = 3, + ACTIONS(1638), 1, + anon_sym_RBRACE, + ACTIONS(1640), 1, + anon_sym_COMMA, + STATE(494), 1, + aux_sym_inferred_enum_struct_repeat1, + [15216] = 3, + ACTIONS(1437), 1, + anon_sym_COMMA, + ACTIONS(1642), 1, + anon_sym_RPAREN, + STATE(437), 1, + aux_sym_render_type_repeat1, + [15226] = 3, + ACTIONS(450), 1, + anon_sym_RPAREN, + ACTIONS(1644), 1, + anon_sym_COMMA, + STATE(504), 1, + aux_sym_tuple_variant_pattern_repeat1, + [15236] = 3, + ACTIONS(1410), 1, + sym_identifier, + ACTIONS(1646), 1, + anon_sym_RPAREN, + STATE(568), 1, + sym_parameter, + [15246] = 3, + ACTIONS(1439), 1, + anon_sym_COMMA, + ACTIONS(1648), 1, + anon_sym_RPAREN, + STATE(570), 1, + aux_sym_parameter_list_repeat1, + [15256] = 3, + ACTIONS(1410), 1, + sym_identifier, + ACTIONS(1650), 1, + anon_sym_RPAREN, + STATE(485), 1, + sym_parameter, + [15266] = 3, + ACTIONS(1439), 1, + anon_sym_COMMA, + ACTIONS(1652), 1, + anon_sym_RPAREN, + STATE(549), 1, + aux_sym_parameter_list_repeat1, + [15276] = 3, + ACTIONS(1469), 1, + anon_sym_COMMA, + ACTIONS(1654), 1, + anon_sym_RBRACK, + STATE(486), 1, + aux_sym_attribute_list_repeat1, + [15286] = 3, + ACTIONS(1499), 1, + anon_sym_LBRACK, + ACTIONS(1656), 1, + anon_sym_COLON, + STATE(735), 1, + sym_attribute_list, + [15296] = 3, + ACTIONS(1425), 1, + anon_sym_COMMA, + ACTIONS(1658), 1, + anon_sym_GT, + STATE(487), 1, + aux_sym_generic_params_repeat1, + [15306] = 3, + ACTIONS(1410), 1, + sym_identifier, + ACTIONS(1660), 1, + anon_sym_RPAREN, + STATE(575), 1, + sym_parameter, + [15316] = 3, + ACTIONS(1439), 1, + anon_sym_COMMA, + ACTIONS(1662), 1, + anon_sym_RPAREN, + STATE(576), 1, + aux_sym_parameter_list_repeat1, + [15326] = 3, + ACTIONS(1439), 1, + anon_sym_COMMA, + ACTIONS(1664), 1, + anon_sym_RPAREN, + STATE(549), 1, + aux_sym_parameter_list_repeat1, + [15336] = 2, + ACTIONS(1666), 1, + anon_sym_DASH_GT, + ACTIONS(370), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [15344] = 2, + ACTIONS(1668), 1, + anon_sym_DASH_GT, + ACTIONS(364), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [15352] = 3, + ACTIONS(1439), 1, + anon_sym_COMMA, + ACTIONS(1670), 1, + anon_sym_RPAREN, + STATE(580), 1, + aux_sym_parameter_list_repeat1, + [15362] = 3, + ACTIONS(1439), 1, + anon_sym_COMMA, + ACTIONS(1672), 1, + anon_sym_RPAREN, + STATE(549), 1, + aux_sym_parameter_list_repeat1, + [15372] = 3, + ACTIONS(1453), 1, + anon_sym_COMMA, + ACTIONS(1674), 1, + anon_sym_PIPE, + STATE(582), 1, + aux_sym_closure_type_repeat1, + [15382] = 3, + ACTIONS(1453), 1, anon_sym_COMMA, ACTIONS(1676), 1, - anon_sym_RPAREN, - STATE(598), 1, - aux_sym_parameter_list_repeat1, - [22124] = 3, + anon_sym_PIPE, + STATE(553), 1, + aux_sym_closure_type_repeat1, + [15392] = 3, + ACTIONS(1453), 1, + anon_sym_COMMA, ACTIONS(1678), 1, - anon_sym_COLON, + anon_sym_PIPE, + STATE(584), 1, + aux_sym_closure_type_repeat1, + [15402] = 3, + ACTIONS(1453), 1, + anon_sym_COMMA, ACTIONS(1680), 1, - anon_sym_LBRACK, - STATE(694), 1, - sym_attribute_list, - [22134] = 3, + anon_sym_PIPE, + STATE(553), 1, + aux_sym_closure_type_repeat1, + [15412] = 3, ACTIONS(1682), 1, anon_sym_COMMA, - ACTIONS(1684), 1, - anon_sym_RPAREN, - STATE(606), 1, - aux_sym_tuple_pattern_repeat1, - [22144] = 3, - ACTIONS(1645), 1, - anon_sym_COMMA, - ACTIONS(1686), 1, + ACTIONS(1685), 1, anon_sym_GT, - STATE(590), 1, + STATE(585), 1, aux_sym_generic_params_repeat1, - [22154] = 3, - ACTIONS(1645), 1, + [15422] = 1, + ACTIONS(1611), 2, anon_sym_COMMA, - ACTIONS(1688), 1, anon_sym_PIPE, - STATE(607), 1, - aux_sym_generic_params_repeat1, - [22164] = 2, - ACTIONS(1692), 1, - anon_sym_EQ, - ACTIONS(1690), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [22172] = 3, - ACTIONS(480), 1, - anon_sym_RBRACK, - ACTIONS(1694), 1, - anon_sym_COMMA, - STATE(558), 1, - aux_sym_array_literal_repeat1, - [22182] = 3, - ACTIONS(1113), 1, - anon_sym_LBRACE, - ACTIONS(1696), 1, - anon_sym_if, - STATE(429), 1, - sym_content_block, - [22192] = 3, - ACTIONS(790), 1, - anon_sym_RPAREN, - ACTIONS(1698), 1, - anon_sym_COMMA, - STATE(629), 1, - aux_sym_tuple_pattern_repeat1, - [22202] = 3, - ACTIONS(1645), 1, - anon_sym_COMMA, - ACTIONS(1700), 1, - anon_sym_PIPE, - STATE(562), 1, - aux_sym_generic_params_repeat1, - [22212] = 3, - ACTIONS(1702), 1, - anon_sym_LBRACE, - ACTIONS(1704), 1, - anon_sym_LT, - STATE(720), 1, - sym_generic_params, - [22222] = 3, - ACTIONS(468), 1, - anon_sym_RBRACK, - ACTIONS(1706), 1, - anon_sym_COMMA, - STATE(558), 1, - aux_sym_array_literal_repeat1, - [22232] = 3, - ACTIONS(1680), 1, - anon_sym_LBRACK, - ACTIONS(1708), 1, - sym_identifier, - STATE(688), 1, - sym_attribute_list, - [22242] = 3, - ACTIONS(1710), 1, - anon_sym_COMMA, - ACTIONS(1712), 1, - anon_sym_RPAREN, - STATE(612), 1, - aux_sym_generic_type_repeat1, - [22252] = 3, - ACTIONS(669), 1, - anon_sym_RPAREN, - ACTIONS(1714), 1, - anon_sym_COMMA, - STATE(631), 1, - aux_sym_generic_type_repeat1, - [22262] = 3, - ACTIONS(1635), 1, - anon_sym_COMMA, - ACTIONS(1716), 1, - anon_sym_GT, - STATE(614), 1, - aux_sym_generic_type_repeat1, - [22272] = 3, - ACTIONS(1635), 1, - anon_sym_COMMA, - ACTIONS(1718), 1, - anon_sym_GT, - STATE(634), 1, - aux_sym_generic_type_repeat1, - [22282] = 3, - ACTIONS(1680), 1, - anon_sym_LBRACK, - ACTIONS(1720), 1, - sym_identifier, - STATE(747), 1, - sym_attribute_list, - [22292] = 3, - ACTIONS(1629), 1, - anon_sym_RPAREN, - ACTIONS(1722), 1, - anon_sym_COMMA, - STATE(598), 1, - aux_sym_parameter_list_repeat1, - [22302] = 2, - ACTIONS(1726), 1, + [15427] = 2, + ACTIONS(1687), 1, anon_sym_LPAREN, - ACTIONS(1724), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [22310] = 3, - ACTIONS(1665), 1, - sym_identifier, - ACTIONS(1728), 1, - anon_sym_PIPE, - STATE(689), 1, - sym_closure_params, - [22320] = 3, - ACTIONS(665), 1, - anon_sym_RPAREN, - ACTIONS(1730), 1, - anon_sym_COMMA, - STATE(631), 1, - aux_sym_generic_type_repeat1, - [22330] = 3, - ACTIONS(1732), 1, - anon_sym_RBRACK, - ACTIONS(1734), 1, - sym_identifier, - STATE(623), 1, - sym_attribute, - [22340] = 1, - ACTIONS(1585), 3, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [22346] = 3, - ACTIONS(1635), 1, - anon_sym_COMMA, - ACTIONS(1736), 1, - anon_sym_GT, - STATE(587), 1, - aux_sym_generic_type_repeat1, - [22356] = 3, - ACTIONS(1649), 1, - anon_sym_COMMA, - ACTIONS(1738), 1, - anon_sym_RBRACK, - STATE(591), 1, - aux_sym_attribute_list_repeat1, - [22366] = 3, - ACTIONS(490), 1, - anon_sym_RBRACK, - ACTIONS(1740), 1, - anon_sym_COMMA, - STATE(558), 1, - aux_sym_array_literal_repeat1, - [22376] = 2, - ACTIONS(1744), 1, - anon_sym_COMMA, - ACTIONS(1742), 2, - anon_sym_RBRACE, - sym_identifier, - [22384] = 3, - ACTIONS(1704), 1, - anon_sym_LT, - ACTIONS(1746), 1, - anon_sym_LBRACE, - STATE(698), 1, - sym_generic_params, - [22394] = 3, - ACTIONS(1069), 1, - anon_sym_LBRACE, - ACTIONS(1748), 1, - anon_sym_if, - STATE(362), 1, - sym_content_block, - [22404] = 3, - ACTIONS(1704), 1, - anon_sym_LT, - ACTIONS(1750), 1, - anon_sym_LBRACE, - STATE(748), 1, - sym_generic_params, - [22414] = 3, - ACTIONS(1752), 1, - anon_sym_COMMA, - ACTIONS(1755), 1, - anon_sym_RPAREN, - STATE(629), 1, - aux_sym_tuple_pattern_repeat1, - [22424] = 3, - ACTIONS(488), 1, - anon_sym_RPAREN, - ACTIONS(1757), 1, - anon_sym_COMMA, - STATE(558), 1, - aux_sym_array_literal_repeat1, - [22434] = 3, - ACTIONS(1633), 1, - anon_sym_RPAREN, - ACTIONS(1759), 1, - anon_sym_COMMA, - STATE(631), 1, - aux_sym_generic_type_repeat1, - [22444] = 3, - ACTIONS(1704), 1, - anon_sym_LT, - ACTIONS(1762), 1, - anon_sym_LBRACE, - STATE(705), 1, - sym_generic_params, - [22454] = 1, - ACTIONS(1492), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - sym_identifier, - [22460] = 3, - ACTIONS(1633), 1, - anon_sym_GT, - ACTIONS(1764), 1, - anon_sym_COMMA, - STATE(634), 1, - aux_sym_generic_type_repeat1, - [22470] = 3, - ACTIONS(1631), 1, - sym_identifier, - ACTIONS(1767), 1, - anon_sym_RPAREN, - STATE(639), 1, - sym_parameter, - [22480] = 2, - ACTIONS(1771), 1, - anon_sym_COMMA, - ACTIONS(1769), 2, - anon_sym_RBRACE, - sym_identifier, - [22488] = 3, - ACTIONS(1665), 1, - sym_identifier, - ACTIONS(1773), 1, - anon_sym_PIPE, - STATE(787), 1, - sym_closure_params, - [22498] = 1, - ACTIONS(820), 3, - anon_sym_RBRACE, - anon_sym_COMMA, - sym_identifier, - [22504] = 3, - ACTIONS(1775), 1, - anon_sym_COMMA, - ACTIONS(1777), 1, - anon_sym_RPAREN, - STATE(616), 1, - aux_sym_parameter_list_repeat1, - [22514] = 3, - ACTIONS(1779), 1, - anon_sym_COMMA, - ACTIONS(1782), 1, - anon_sym_RBRACK, - STATE(640), 1, - aux_sym_attribute_list_repeat1, - [22524] = 2, - ACTIONS(394), 1, - anon_sym_LBRACE, - STATE(442), 1, - sym_content_block, - [22531] = 1, - ACTIONS(1641), 2, - anon_sym_RBRACE, - sym_identifier, - [22536] = 2, - ACTIONS(1784), 1, - anon_sym_RBRACK, - ACTIONS(1786), 1, - anon_sym_SEMI, - [22543] = 2, - ACTIONS(1788), 1, - aux_sym_rust_path_token1, - STATE(470), 1, - sym_function_path, - [22550] = 1, - ACTIONS(1755), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [22555] = 2, - ACTIONS(1790), 1, - anon_sym_if, - ACTIONS(1792), 1, - anon_sym_EQ_GT, - [22562] = 2, - ACTIONS(1794), 1, - aux_sym_rust_path_token1, - STATE(297), 1, - sym_rust_path, - [22569] = 2, - ACTIONS(1404), 1, - anon_sym_in, - ACTIONS(1796), 1, - anon_sym_COLON, - [22576] = 2, - ACTIONS(1788), 1, - aux_sym_rust_path_token1, - STATE(464), 1, - sym_function_path, - [22583] = 2, - ACTIONS(1798), 1, - aux_sym_char_literal_token1, - ACTIONS(1800), 1, - sym_escape_sequence, - [22590] = 1, - ACTIONS(1802), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [22595] = 2, - ACTIONS(1734), 1, - sym_identifier, - STATE(660), 1, - sym_attribute, - [22602] = 2, - ACTIONS(1804), 1, - anon_sym_LPAREN, - STATE(672), 1, + STATE(619), 1, sym_parameter_list, - [22609] = 1, - ACTIONS(1806), 2, - anon_sym_COLON, + [15434] = 1, + ACTIONS(1198), 2, + anon_sym_if, + anon_sym_EQ_GT, + [15439] = 1, + ACTIONS(1224), 2, + anon_sym_if, + anon_sym_EQ_GT, + [15444] = 2, + ACTIONS(1689), 1, + anon_sym_if, + ACTIONS(1691), 1, + anon_sym_EQ_GT, + [15451] = 1, + ACTIONS(1214), 2, + anon_sym_if, + anon_sym_EQ_GT, + [15456] = 1, + ACTIONS(1604), 2, + anon_sym_RBRACE, sym_identifier, - [22614] = 2, - ACTIONS(1808), 1, - anon_sym_AMP, - ACTIONS(1810), 1, - sym_identifier, - [22621] = 2, - ACTIONS(1788), 1, + [15461] = 1, + ACTIONS(738), 2, + anon_sym_if, + anon_sym_EQ_GT, + [15466] = 1, + ACTIONS(742), 2, + anon_sym_if, + anon_sym_EQ_GT, + [15471] = 1, + ACTIONS(746), 2, + anon_sym_if, + anon_sym_EQ_GT, + [15476] = 1, + ACTIONS(770), 2, + anon_sym_if, + anon_sym_EQ_GT, + [15481] = 2, + ACTIONS(1693), 1, aux_sym_rust_path_token1, - STATE(755), 1, + STATE(757), 1, sym_function_path, - [22628] = 1, - ACTIONS(1676), 2, + [15488] = 1, + ACTIONS(1695), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [22633] = 2, - ACTIONS(1812), 1, anon_sym_RBRACK, - ACTIONS(1814), 1, + [15493] = 1, + ACTIONS(792), 2, + anon_sym_if, + anon_sym_EQ_GT, + [15498] = 2, + ACTIONS(1697), 1, + anon_sym_RBRACK, + ACTIONS(1699), 1, anon_sym_SEMI, - [22640] = 2, - ACTIONS(1788), 1, + [15505] = 2, + ACTIONS(1701), 1, aux_sym_rust_path_token1, - STATE(752), 1, - sym_function_path, - [22647] = 1, - ACTIONS(1782), 2, + STATE(278), 1, + sym_rust_path, + [15512] = 1, + ACTIONS(1703), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [22652] = 2, - ACTIONS(1788), 1, + anon_sym_PIPE, + [15517] = 2, + ACTIONS(1705), 1, + anon_sym_AMP, + ACTIONS(1707), 1, + sym_identifier, + [15524] = 1, + ACTIONS(730), 2, + anon_sym_if, + anon_sym_EQ_GT, + [15529] = 1, + ACTIONS(734), 2, + anon_sym_if, + anon_sym_EQ_GT, + [15534] = 2, + ACTIONS(1709), 1, + anon_sym_LBRACE, + STATE(179), 1, + sym_content_block, + [15541] = 2, + ACTIONS(1693), 1, aux_sym_rust_path_token1, - STATE(760), 1, + STATE(746), 1, sym_function_path, - [22659] = 2, - ACTIONS(1816), 1, - aux_sym_char_literal_token1, - ACTIONS(1818), 1, - sym_escape_sequence, - [22666] = 1, - ACTIONS(1820), 2, - anon_sym_COLON, - sym_identifier, - [22671] = 2, - ACTIONS(1788), 1, + [15548] = 2, + ACTIONS(1693), 1, aux_sym_rust_path_token1, - STATE(468), 1, + STATE(324), 1, sym_function_path, - [22678] = 2, - ACTIONS(1788), 1, - aux_sym_rust_path_token1, - STATE(753), 1, - sym_function_path, - [22685] = 2, - ACTIONS(1822), 1, - aux_sym_char_literal_token1, - ACTIONS(1824), 1, - sym_escape_sequence, - [22692] = 2, - ACTIONS(1826), 1, + [15555] = 2, + ACTIONS(1410), 1, sym_identifier, - STATE(583), 1, - sym_expression_path, - [22699] = 2, - ACTIONS(1828), 1, - aux_sym_char_literal_token1, - ACTIONS(1830), 1, - sym_escape_sequence, - [22706] = 1, - ACTIONS(1832), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [22711] = 1, - ACTIONS(1834), 2, - anon_sym_RBRACE, - sym_identifier, - [22716] = 2, - ACTIONS(1631), 1, - sym_identifier, - STATE(657), 1, + STATE(633), 1, sym_parameter, - [22723] = 2, - ACTIONS(1069), 1, + [15562] = 1, + ACTIONS(1271), 2, + anon_sym_if, + anon_sym_EQ_GT, + [15567] = 1, + ACTIONS(1283), 2, + anon_sym_if, + anon_sym_EQ_GT, + [15572] = 2, + ACTIONS(1711), 1, + anon_sym_COMMA, + ACTIONS(1713), 1, + anon_sym_RPAREN, + [15579] = 2, + ACTIONS(1715), 1, anon_sym_LBRACE, - STATE(332), 1, + STATE(301), 1, sym_content_block, - [22730] = 2, - ACTIONS(1788), 1, - aux_sym_rust_path_token1, - STATE(770), 1, - sym_function_path, - [22737] = 2, - ACTIONS(394), 1, + [15586] = 2, + ACTIONS(1709), 1, anon_sym_LBRACE, - STATE(443), 1, + STATE(298), 1, sym_content_block, - [22744] = 1, - ACTIONS(1742), 2, - anon_sym_RBRACE, - sym_identifier, - [22749] = 1, - ACTIONS(1836), 2, - anon_sym_RBRACE, - sym_identifier, - [22754] = 1, - ACTIONS(1838), 2, - anon_sym_RBRACE, - sym_identifier, - [22759] = 1, - ACTIONS(1840), 2, + [15593] = 1, + ACTIONS(1717), 2, anon_sym_COLON, sym_identifier, - [22764] = 2, - ACTIONS(1404), 1, - anon_sym_in, - ACTIONS(1842), 1, - anon_sym_COLON, - [22771] = 2, - ACTIONS(1788), 1, - aux_sym_rust_path_token1, - STATE(738), 1, - sym_function_path, - [22778] = 1, - ACTIONS(1844), 1, - anon_sym_LPAREN, - [22782] = 1, - ACTIONS(1846), 1, - sym_identifier, - [22786] = 1, - ACTIONS(1848), 1, + [15598] = 2, + ACTIONS(1715), 1, + anon_sym_LBRACE, + STATE(298), 1, + sym_content_block, + [15605] = 1, + ACTIONS(1685), 2, + anon_sym_COMMA, anon_sym_GT, - [22790] = 1, - ACTIONS(1850), 1, - anon_sym_SQUOTE, - [22794] = 1, - ACTIONS(1852), 1, - anon_sym_GT, - [22798] = 1, - ACTIONS(1854), 1, - aux_sym_embedded_language_token1, - [22802] = 1, - ACTIONS(1856), 1, - anon_sym_BQUOTE_BQUOTE_BQUOTE_AT, - [22806] = 1, - ACTIONS(1858), 1, - sym_identifier, - [22810] = 1, - ACTIONS(1860), 1, - anon_sym_PIPE, - [22814] = 1, - ACTIONS(1862), 1, - anon_sym_SQUOTE, - [22818] = 1, - ACTIONS(1864), 1, - anon_sym_GT, - [22822] = 1, - ACTIONS(1866), 1, - sym_identifier, - [22826] = 1, - ACTIONS(1868), 1, - anon_sym_GT, - [22830] = 1, - ACTIONS(1870), 1, - anon_sym_COLON, - [22834] = 1, - ACTIONS(464), 1, - sym_identifier, - [22838] = 1, - ACTIONS(1872), 1, + [15610] = 2, + ACTIONS(1719), 1, + anon_sym_COMMA, + ACTIONS(1721), 1, + anon_sym_RPAREN, + [15617] = 2, + ACTIONS(1429), 1, + anon_sym_LBRACE, + STATE(287), 1, + sym_content_block, + [15624] = 2, + ACTIONS(1709), 1, + anon_sym_LBRACE, + STATE(301), 1, + sym_content_block, + [15631] = 2, + ACTIONS(1723), 1, sym_tag_name, - [22842] = 1, - ACTIONS(1874), 1, - sym_identifier, - [22846] = 1, - ACTIONS(1876), 1, + ACTIONS(1725), 1, + sym_void_tag_name, + [15638] = 1, + ACTIONS(1310), 2, + anon_sym_if, + anon_sym_EQ_GT, + [15643] = 1, + ACTIONS(1390), 2, + anon_sym_if, + anon_sym_EQ_GT, + [15648] = 2, + ACTIONS(1727), 1, + anon_sym_RPAREN, + ACTIONS(1729), 1, + anon_sym_if, + [15655] = 1, + ACTIONS(1731), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [15660] = 2, + ACTIONS(1693), 1, + aux_sym_rust_path_token1, + STATE(684), 1, + sym_function_path, + [15667] = 1, + ACTIONS(1423), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [15672] = 2, + ACTIONS(1709), 1, anon_sym_LBRACE, - [22850] = 1, - ACTIONS(1878), 1, + STATE(299), 1, + sym_content_block, + [15679] = 1, + ACTIONS(1733), 2, + anon_sym_COLON, sym_identifier, - [22854] = 1, - ACTIONS(1880), 1, + [15684] = 2, + ACTIONS(1735), 1, + aux_sym_char_literal_token1, + ACTIONS(1737), 1, + sym_escape_sequence, + [15691] = 2, + ACTIONS(1739), 1, + anon_sym_LBRACE, + ACTIONS(1741), 1, + anon_sym_LPAREN, + [15698] = 2, + ACTIONS(1743), 1, + anon_sym_RBRACK, + ACTIONS(1745), 1, + anon_sym_SEMI, + [15705] = 1, + ACTIONS(1598), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [15710] = 1, + ACTIONS(1747), 2, + anon_sym_RBRACE, sym_identifier, - [22858] = 1, - ACTIONS(1882), 1, + [15715] = 1, + ACTIONS(1226), 2, + anon_sym_if, + anon_sym_EQ_GT, + [15720] = 1, + ACTIONS(1257), 2, + anon_sym_if, + anon_sym_EQ_GT, + [15725] = 1, + ACTIONS(1265), 2, + anon_sym_if, + anon_sym_EQ_GT, + [15730] = 2, + ACTIONS(1715), 1, + anon_sym_LBRACE, + STATE(299), 1, + sym_content_block, + [15737] = 2, + ACTIONS(1709), 1, + anon_sym_LBRACE, + STATE(183), 1, + sym_content_block, + [15744] = 1, + ACTIONS(1749), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [15749] = 1, + ACTIONS(1751), 2, + anon_sym_EQ, + anon_sym_in, + [15754] = 2, + ACTIONS(1226), 1, + anon_sym_in, + ACTIONS(1753), 1, + anon_sym_COLON, + [15761] = 1, + ACTIONS(1621), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [15766] = 2, + ACTIONS(1755), 1, + anon_sym_LBRACE, + STATE(196), 1, + sym_content_block, + [15773] = 1, + ACTIONS(1287), 2, + anon_sym_if, + anon_sym_EQ_GT, + [15778] = 2, + ACTIONS(270), 1, + anon_sym_DQUOTE, + STATE(492), 1, + sym_string_literal, + [15785] = 2, + ACTIONS(1755), 1, + anon_sym_LBRACE, + STATE(200), 1, + sym_content_block, + [15792] = 2, + ACTIONS(1709), 1, + anon_sym_LBRACE, + STATE(204), 1, + sym_content_block, + [15799] = 1, + ACTIONS(1495), 2, + anon_sym_RBRACE, + sym_identifier, + [15804] = 1, + ACTIONS(1484), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [15809] = 2, + ACTIONS(1755), 1, + anon_sym_LBRACE, + STATE(202), 1, + sym_content_block, + [15816] = 2, + ACTIONS(1757), 1, + anon_sym_LBRACE, + ACTIONS(1759), 1, + anon_sym_LPAREN, + [15823] = 2, + ACTIONS(1715), 1, + anon_sym_LBRACE, + STATE(205), 1, + sym_content_block, + [15830] = 1, + ACTIONS(1489), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [15835] = 2, + ACTIONS(1761), 1, + anon_sym_LBRACE, + ACTIONS(1763), 1, + anon_sym_LPAREN, + [15842] = 2, + ACTIONS(1765), 1, + aux_sym_char_literal_token1, + ACTIONS(1767), 1, + sym_escape_sequence, + [15849] = 2, + ACTIONS(1519), 1, + sym_identifier, + STATE(627), 1, + sym_attribute, + [15856] = 2, + ACTIONS(1709), 1, + anon_sym_LBRACE, + STATE(216), 1, + sym_content_block, + [15863] = 2, + ACTIONS(270), 1, + anon_sym_DQUOTE, + STATE(525), 1, + sym_string_literal, + [15870] = 2, + ACTIONS(1769), 1, + anon_sym_LBRACE, + ACTIONS(1771), 1, + anon_sym_LPAREN, + [15877] = 2, + ACTIONS(1773), 1, + anon_sym_LBRACE, + STATE(298), 1, + sym_content_block, + [15884] = 1, + ACTIONS(1302), 2, + anon_sym_if, + anon_sym_EQ_GT, + [15889] = 2, + ACTIONS(1775), 1, + anon_sym_RPAREN, + ACTIONS(1777), 1, + anon_sym_if, + [15896] = 1, + ACTIONS(1779), 2, + anon_sym_COLON, + sym_identifier, + [15901] = 2, + ACTIONS(1773), 1, + anon_sym_LBRACE, + STATE(301), 1, + sym_content_block, + [15908] = 2, + ACTIONS(1429), 1, + anon_sym_LBRACE, + STATE(233), 1, + sym_content_block, + [15915] = 2, + ACTIONS(1773), 1, + anon_sym_LBRACE, + STATE(299), 1, + sym_content_block, + [15922] = 2, + ACTIONS(1715), 1, + anon_sym_LBRACE, + STATE(199), 1, + sym_content_block, + [15929] = 2, + ACTIONS(1449), 1, + sym_identifier, + STATE(643), 1, + sym_struct_field_init, + [15936] = 2, + ACTIONS(1781), 1, + aux_sym_char_literal_token1, + ACTIONS(1783), 1, + sym_escape_sequence, + [15943] = 1, + ACTIONS(1785), 2, + anon_sym_RBRACE, + sym_identifier, + [15948] = 2, + ACTIONS(1787), 1, + anon_sym_LBRACE, + ACTIONS(1789), 1, + anon_sym_LPAREN, + [15955] = 1, + ACTIONS(1791), 2, + anon_sym_RBRACE, + sym_identifier, + [15960] = 1, + ACTIONS(1793), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [15965] = 1, + ACTIONS(1795), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [15970] = 2, + ACTIONS(1797), 1, + aux_sym_char_literal_token1, + ACTIONS(1799), 1, + sym_escape_sequence, + [15977] = 2, + ACTIONS(1757), 1, + anon_sym_LBRACE, + ACTIONS(1801), 1, + anon_sym_LPAREN, + [15984] = 2, + ACTIONS(1429), 1, + anon_sym_LBRACE, + STATE(263), 1, + sym_content_block, + [15991] = 1, + ACTIONS(1803), 1, + anon_sym_RBRACK, + [15995] = 1, + ACTIONS(1805), 1, + anon_sym_COLON, + [15999] = 1, + ACTIONS(1807), 1, + anon_sym_RPAREN, + [16003] = 1, + ACTIONS(1809), 1, + anon_sym_LPAREN, + [16007] = 1, + ACTIONS(1811), 1, + anon_sym_LBRACE, + [16011] = 1, + ACTIONS(1813), 1, + anon_sym_GT, + [16015] = 1, + ACTIONS(1815), 1, + anon_sym_RPAREN, + [16019] = 1, + ACTIONS(286), 1, + sym_identifier, + [16023] = 1, + ACTIONS(1817), 1, + anon_sym_in, + [16027] = 1, + ACTIONS(1819), 1, + anon_sym_SQUOTE, + [16031] = 1, + ACTIONS(1821), 1, + sym_identifier, + [16035] = 1, + ACTIONS(1823), 1, + anon_sym_in, + [16039] = 1, + ACTIONS(1803), 1, + anon_sym_RPAREN, + [16043] = 1, + ACTIONS(1825), 1, + anon_sym_GT, + [16047] = 1, + ACTIONS(322), 1, + sym_identifier, + [16051] = 1, + ACTIONS(1827), 1, + anon_sym_RPAREN, + [16055] = 1, + ACTIONS(1829), 1, + sym_identifier, + [16059] = 1, + ACTIONS(1831), 1, + aux_sym_embedded_language_token1, + [16063] = 1, + ACTIONS(1833), 1, + anon_sym_LBRACE, + [16067] = 1, + ACTIONS(1232), 1, + anon_sym_RBRACE, + [16071] = 1, + ACTIONS(1835), 1, + anon_sym_COMMA, + [16075] = 1, + ACTIONS(1242), 1, + anon_sym_RBRACE, + [16079] = 1, + ACTIONS(1513), 1, + anon_sym_LBRACE, + [16083] = 1, + ACTIONS(264), 1, + sym_identifier, + [16087] = 1, + ACTIONS(1837), 1, + anon_sym_RPAREN, + [16091] = 1, + ACTIONS(1839), 1, + anon_sym_GT, + [16095] = 1, + ACTIONS(1841), 1, + aux_sym_embedded_language_token1, + [16099] = 1, + ACTIONS(1843), 1, + anon_sym_RBRACE, + [16103] = 1, + ACTIONS(1845), 1, + anon_sym_COLON, + [16107] = 1, + ACTIONS(1847), 1, + sym_identifier, + [16111] = 1, + ACTIONS(1849), 1, + sym_identifier, + [16115] = 1, + ACTIONS(1851), 1, + anon_sym_COLON, + [16119] = 1, + ACTIONS(1853), 1, + sym_tag_name, + [16123] = 1, + ACTIONS(1855), 1, + anon_sym_SQUOTE, + [16127] = 1, + ACTIONS(1857), 1, + anon_sym_RBRACE, + [16131] = 1, + ACTIONS(1859), 1, + anon_sym_RPAREN, + [16135] = 1, + ACTIONS(1859), 1, + anon_sym_RBRACK, + [16139] = 1, + ACTIONS(1861), 1, + anon_sym_SQUOTE, + [16143] = 1, + ACTIONS(1863), 1, + anon_sym_RPAREN, + [16147] = 1, + ACTIONS(1865), 1, + anon_sym_GT, + [16151] = 1, + ACTIONS(1867), 1, + anon_sym_SQUOTE, + [16155] = 1, + ACTIONS(1869), 1, + anon_sym_RPAREN, + [16159] = 1, + ACTIONS(1871), 1, + anon_sym_LBRACE, + [16163] = 1, + ACTIONS(1873), 1, sym_attribute_content, - [22862] = 1, - ACTIONS(1185), 1, - anon_sym_RPAREN, - [22866] = 1, - ACTIONS(1884), 1, - anon_sym_LBRACE, - [22870] = 1, - ACTIONS(1886), 1, + [16167] = 1, + ACTIONS(1875), 1, + anon_sym_GT, + [16171] = 1, + ACTIONS(1877), 1, sym_identifier, - [22874] = 1, - ACTIONS(1746), 1, - anon_sym_LBRACE, - [22878] = 1, - ACTIONS(1888), 1, - anon_sym_in, - [22882] = 1, - ACTIONS(1890), 1, - anon_sym_RPAREN, - [22886] = 1, - ACTIONS(1892), 1, - anon_sym_LBRACE, - [22890] = 1, - ACTIONS(1894), 1, + [16175] = 1, + ACTIONS(1879), 1, sym_identifier, - [22894] = 1, - ACTIONS(1163), 1, - anon_sym_RPAREN, - [22898] = 1, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - [22902] = 1, - ACTIONS(1462), 1, + [16179] = 1, + ACTIONS(1881), 1, anon_sym_RBRACE, - [22906] = 1, - ACTIONS(1450), 1, - anon_sym_RBRACE, - [22910] = 1, - ACTIONS(374), 1, - sym_identifier, - [22914] = 1, - ACTIONS(1898), 1, - sym_identifier, - [22918] = 1, - ACTIONS(1193), 1, - anon_sym_RPAREN, - [22922] = 1, - ACTIONS(1900), 1, - anon_sym_GT, - [22926] = 1, - ACTIONS(1902), 1, - anon_sym_in, - [22930] = 1, - ACTIONS(1904), 1, - anon_sym_GT, - [22934] = 1, - ACTIONS(1750), 1, - anon_sym_LBRACE, - [22938] = 1, - ACTIONS(1906), 1, - anon_sym_GT, - [22942] = 1, - ACTIONS(1908), 1, - anon_sym_LBRACE, - [22946] = 1, - ACTIONS(1910), 1, - anon_sym_GT, - [22950] = 1, - ACTIONS(1912), 1, - anon_sym_GT, - [22954] = 1, - ACTIONS(1914), 1, - anon_sym_EQ, - [22958] = 1, - ACTIONS(1916), 1, - sym_tag_name, - [22962] = 1, - ACTIONS(1918), 1, - sym_identifier, - [22966] = 1, - ACTIONS(1920), 1, - anon_sym_GT, - [22970] = 1, - ACTIONS(1922), 1, - anon_sym_GT, - [22974] = 1, - ACTIONS(1924), 1, - anon_sym_EQ, - [22978] = 1, - ACTIONS(1926), 1, - anon_sym_BQUOTE_BQUOTE_BQUOTE_AT, - [22982] = 1, - ACTIONS(1928), 1, - anon_sym_as, - [22986] = 1, - ACTIONS(1930), 1, - anon_sym_LBRACE, - [22990] = 1, - ACTIONS(1932), 1, - anon_sym_EQ, - [22994] = 1, - ACTIONS(1934), 1, - anon_sym_LPAREN, - [22998] = 1, - ACTIONS(1936), 1, - aux_sym_embedded_language_token1, - [23002] = 1, - ACTIONS(1938), 1, - anon_sym_GT, - [23006] = 1, - ACTIONS(1940), 1, - anon_sym_GT, - [23010] = 1, - ACTIONS(1942), 1, - sym_identifier, - [23014] = 1, - ACTIONS(1944), 1, - sym_identifier, - [23018] = 1, - ACTIONS(1946), 1, - sym_tag_name, - [23022] = 1, - ACTIONS(1948), 1, - anon_sym_GT, - [23026] = 1, - ACTIONS(1950), 1, - anon_sym_RPAREN, - [23030] = 1, - ACTIONS(1952), 1, - sym_tag_name, - [23034] = 1, - ACTIONS(1954), 1, - anon_sym_RBRACE, - [23038] = 1, - ACTIONS(1956), 1, - anon_sym_RPAREN, - [23042] = 1, - ACTIONS(1958), 1, - sym_identifier, - [23046] = 1, - ACTIONS(1960), 1, - anon_sym_LBRACE, - [23050] = 1, - ACTIONS(1962), 1, - sym_tag_name, - [23054] = 1, - ACTIONS(1964), 1, - sym_tag_name, - [23058] = 1, - ACTIONS(1696), 1, + [16183] = 1, + ACTIONS(1883), 1, + anon_sym_RBRACK, + [16187] = 1, + ACTIONS(1431), 1, anon_sym_if, - [23062] = 1, - ACTIONS(1966), 1, - anon_sym_GT, - [23066] = 1, - ACTIONS(1968), 1, - anon_sym_GT, - [23070] = 1, - ACTIONS(1970), 1, - aux_sym_embedded_language_token1, - [23074] = 1, - ACTIONS(1972), 1, - anon_sym_GT, - [23078] = 1, - ACTIONS(1974), 1, - anon_sym_PIPE, - [23082] = 1, - ACTIONS(1976), 1, - sym_tag_name, - [23086] = 1, - ACTIONS(1978), 1, - anon_sym_SQUOTE, - [23090] = 1, - ACTIONS(1980), 1, - anon_sym_GT, - [23094] = 1, - ACTIONS(1982), 1, - anon_sym_GT, - [23098] = 1, - ACTIONS(1984), 1, - anon_sym_LBRACE, - [23102] = 1, - ACTIONS(1986), 1, - sym_identifier, - [23106] = 1, - ACTIONS(1988), 1, - anon_sym_EQ, - [23110] = 1, - ACTIONS(1990), 1, - anon_sym_RPAREN, - [23114] = 1, - ACTIONS(396), 1, - sym_identifier, - [23118] = 1, - ACTIONS(1992), 1, - sym_identifier, - [23122] = 1, - ACTIONS(1994), 1, - anon_sym_LBRACE, - [23126] = 1, - ACTIONS(1996), 1, - anon_sym_LBRACE, - [23130] = 1, - ACTIONS(1998), 1, - ts_builtin_sym_end, - [23134] = 1, - ACTIONS(2000), 1, - anon_sym_GT, - [23138] = 1, - ACTIONS(2002), 1, - anon_sym_in, - [23142] = 1, - ACTIONS(2004), 1, + [16191] = 1, + ACTIONS(1885), 1, anon_sym_LPAREN, - [23146] = 1, - ACTIONS(2006), 1, - anon_sym_EQ, - [23150] = 1, - ACTIONS(2008), 1, + [16195] = 1, + ACTIONS(1887), 1, + anon_sym_RPAREN, + [16199] = 1, + ACTIONS(1050), 1, + anon_sym_GT, + [16203] = 1, + ACTIONS(1889), 1, + anon_sym_RPAREN, + [16207] = 1, + ACTIONS(1889), 1, + anon_sym_RBRACK, + [16211] = 1, + ACTIONS(1891), 1, anon_sym_LBRACE, - [23154] = 1, - ACTIONS(2010), 1, - anon_sym_in, - [23158] = 1, - ACTIONS(1748), 1, - anon_sym_if, - [23162] = 1, - ACTIONS(2012), 1, - anon_sym_LBRACE, - [23166] = 1, - ACTIONS(2014), 1, + [16215] = 1, + ACTIONS(1893), 1, anon_sym_COLON, - [23170] = 1, - ACTIONS(1173), 1, - anon_sym_RPAREN, - [23174] = 1, - ACTIONS(2016), 1, - anon_sym_EQ, - [23178] = 1, - ACTIONS(460), 1, - sym_identifier, - [23182] = 1, - ACTIONS(2018), 1, - sym_tag_name, - [23186] = 1, - ACTIONS(2020), 1, + [16219] = 1, + ACTIONS(1895), 1, anon_sym_LBRACE, - [23190] = 1, - ACTIONS(2022), 1, - sym_tag_name, - [23194] = 1, - ACTIONS(2024), 1, + [16223] = 1, + ACTIONS(1897), 1, + anon_sym_LBRACE, + [16227] = 1, + ACTIONS(1899), 1, + anon_sym_EQ, + [16231] = 1, + ACTIONS(1901), 1, + anon_sym_RPAREN, + [16235] = 1, + ACTIONS(1903), 1, + ts_builtin_sym_end, + [16239] = 1, + ACTIONS(1905), 1, + anon_sym_LPAREN, + [16243] = 1, + ACTIONS(1907), 1, anon_sym_in, - [23198] = 1, - ACTIONS(2026), 1, - anon_sym_in, - [23202] = 1, - ACTIONS(2028), 1, - anon_sym_PIPE, - [23206] = 1, - ACTIONS(2030), 1, + [16247] = 1, + ACTIONS(1909), 1, + anon_sym_EQ_GT, + [16251] = 1, + ACTIONS(1220), 1, anon_sym_RBRACE, + [16255] = 1, + ACTIONS(1911), 1, + anon_sym_LBRACE, + [16259] = 1, + ACTIONS(1913), 1, + anon_sym_GT, + [16263] = 1, + ACTIONS(1915), 1, + anon_sym_LBRACE, + [16267] = 1, + ACTIONS(1917), 1, + anon_sym_LBRACE, + [16271] = 1, + ACTIONS(1919), 1, + anon_sym_RBRACE, + [16275] = 1, + ACTIONS(1921), 1, + anon_sym_EQ, + [16279] = 1, + ACTIONS(1923), 1, + anon_sym_GT, + [16283] = 1, + ACTIONS(1925), 1, + sym_identifier, + [16287] = 1, + ACTIONS(1927), 1, + sym_tag_name, + [16291] = 1, + ACTIONS(1929), 1, + sym_identifier, + [16295] = 1, + ACTIONS(1507), 1, + anon_sym_LBRACE, + [16299] = 1, + ACTIONS(1931), 1, + anon_sym_EQ, + [16303] = 1, + ACTIONS(1933), 1, + anon_sym_GT, + [16307] = 1, + ACTIONS(1935), 1, + anon_sym_RPAREN, + [16311] = 1, + ACTIONS(1937), 1, + anon_sym_LBRACE, + [16315] = 1, + ACTIONS(1939), 1, + anon_sym_RBRACK, + [16319] = 1, + ACTIONS(1941), 1, + anon_sym_LPAREN, + [16323] = 1, + ACTIONS(1943), 1, + anon_sym_LPAREN, + [16327] = 1, + ACTIONS(1945), 1, + anon_sym_LBRACE, + [16331] = 1, + ACTIONS(1947), 1, + anon_sym_LPAREN, + [16335] = 1, + ACTIONS(1949), 1, + anon_sym_COMMA, + [16339] = 1, + ACTIONS(1951), 1, + sym_identifier, + [16343] = 1, + ACTIONS(1953), 1, + anon_sym_LPAREN, + [16347] = 1, + ACTIONS(1955), 1, + anon_sym_BQUOTE_BQUOTE_BQUOTE_AT, + [16351] = 1, + ACTIONS(1957), 1, + sym_tag_name, + [16355] = 1, + ACTIONS(1959), 1, + sym_identifier, + [16359] = 1, + ACTIONS(1961), 1, + anon_sym_LBRACE, + [16363] = 1, + ACTIONS(1963), 1, + anon_sym_LBRACE, + [16367] = 1, + ACTIONS(1965), 1, + anon_sym_LPAREN, + [16371] = 1, + ACTIONS(1967), 1, + anon_sym_GT, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(2)] = 0, - [SMALL_STATE(3)] = 95, - [SMALL_STATE(4)] = 190, - [SMALL_STATE(5)] = 238, - [SMALL_STATE(6)] = 318, - [SMALL_STATE(7)] = 370, - [SMALL_STATE(8)] = 418, - [SMALL_STATE(9)] = 470, - [SMALL_STATE(10)] = 550, - [SMALL_STATE(11)] = 598, - [SMALL_STATE(12)] = 678, - [SMALL_STATE(13)] = 758, - [SMALL_STATE(14)] = 803, - [SMALL_STATE(15)] = 848, - [SMALL_STATE(16)] = 893, - [SMALL_STATE(17)] = 938, - [SMALL_STATE(18)] = 987, - [SMALL_STATE(19)] = 1032, - [SMALL_STATE(20)] = 1077, - [SMALL_STATE(21)] = 1122, - [SMALL_STATE(22)] = 1167, - [SMALL_STATE(23)] = 1212, - [SMALL_STATE(24)] = 1257, - [SMALL_STATE(25)] = 1302, - [SMALL_STATE(26)] = 1347, - [SMALL_STATE(27)] = 1392, - [SMALL_STATE(28)] = 1437, - [SMALL_STATE(29)] = 1482, - [SMALL_STATE(30)] = 1527, - [SMALL_STATE(31)] = 1572, - [SMALL_STATE(32)] = 1617, - [SMALL_STATE(33)] = 1662, - [SMALL_STATE(34)] = 1707, - [SMALL_STATE(35)] = 1752, - [SMALL_STATE(36)] = 1797, - [SMALL_STATE(37)] = 1847, - [SMALL_STATE(38)] = 1891, - [SMALL_STATE(39)] = 1937, - [SMALL_STATE(40)] = 1981, - [SMALL_STATE(41)] = 2027, - [SMALL_STATE(42)] = 2070, - [SMALL_STATE(43)] = 2115, - [SMALL_STATE(44)] = 2160, - [SMALL_STATE(45)] = 2205, - [SMALL_STATE(46)] = 2254, - [SMALL_STATE(47)] = 2303, - [SMALL_STATE(48)] = 2345, - [SMALL_STATE(49)] = 2423, - [SMALL_STATE(50)] = 2501, - [SMALL_STATE(51)] = 2543, - [SMALL_STATE(52)] = 2585, - [SMALL_STATE(53)] = 2627, - [SMALL_STATE(54)] = 2669, - [SMALL_STATE(55)] = 2747, - [SMALL_STATE(56)] = 2793, - [SMALL_STATE(57)] = 2835, - [SMALL_STATE(58)] = 2911, - [SMALL_STATE(59)] = 2953, - [SMALL_STATE(60)] = 3031, - [SMALL_STATE(61)] = 3109, - [SMALL_STATE(62)] = 3185, - [SMALL_STATE(63)] = 3227, - [SMALL_STATE(64)] = 3269, - [SMALL_STATE(65)] = 3311, - [SMALL_STATE(66)] = 3389, - [SMALL_STATE(67)] = 3431, - [SMALL_STATE(68)] = 3473, - [SMALL_STATE(69)] = 3515, - [SMALL_STATE(70)] = 3593, - [SMALL_STATE(71)] = 3671, - [SMALL_STATE(72)] = 3713, - [SMALL_STATE(73)] = 3755, - [SMALL_STATE(74)] = 3797, - [SMALL_STATE(75)] = 3839, - [SMALL_STATE(76)] = 3881, - [SMALL_STATE(77)] = 3923, - [SMALL_STATE(78)] = 3965, - [SMALL_STATE(79)] = 4007, - [SMALL_STATE(80)] = 4085, - [SMALL_STATE(81)] = 4163, - [SMALL_STATE(82)] = 4205, - [SMALL_STATE(83)] = 4283, - [SMALL_STATE(84)] = 4361, - [SMALL_STATE(85)] = 4439, - [SMALL_STATE(86)] = 4517, - [SMALL_STATE(87)] = 4595, - [SMALL_STATE(88)] = 4670, - [SMALL_STATE(89)] = 4745, - [SMALL_STATE(90)] = 4788, - [SMALL_STATE(91)] = 4863, - [SMALL_STATE(92)] = 4938, - [SMALL_STATE(93)] = 5013, - [SMALL_STATE(94)] = 5088, - [SMALL_STATE(95)] = 5163, - [SMALL_STATE(96)] = 5238, - [SMALL_STATE(97)] = 5313, - [SMALL_STATE(98)] = 5388, - [SMALL_STATE(99)] = 5463, - [SMALL_STATE(100)] = 5538, - [SMALL_STATE(101)] = 5613, - [SMALL_STATE(102)] = 5660, - [SMALL_STATE(103)] = 5703, - [SMALL_STATE(104)] = 5778, - [SMALL_STATE(105)] = 5853, - [SMALL_STATE(106)] = 5928, - [SMALL_STATE(107)] = 6000, - [SMALL_STATE(108)] = 6072, - [SMALL_STATE(109)] = 6144, - [SMALL_STATE(110)] = 6216, - [SMALL_STATE(111)] = 6288, - [SMALL_STATE(112)] = 6360, - [SMALL_STATE(113)] = 6432, - [SMALL_STATE(114)] = 6504, - [SMALL_STATE(115)] = 6576, - [SMALL_STATE(116)] = 6648, - [SMALL_STATE(117)] = 6720, - [SMALL_STATE(118)] = 6792, - [SMALL_STATE(119)] = 6864, - [SMALL_STATE(120)] = 6936, - [SMALL_STATE(121)] = 7008, - [SMALL_STATE(122)] = 7080, - [SMALL_STATE(123)] = 7152, - [SMALL_STATE(124)] = 7224, - [SMALL_STATE(125)] = 7296, - [SMALL_STATE(126)] = 7368, - [SMALL_STATE(127)] = 7440, - [SMALL_STATE(128)] = 7512, - [SMALL_STATE(129)] = 7584, - [SMALL_STATE(130)] = 7656, - [SMALL_STATE(131)] = 7728, - [SMALL_STATE(132)] = 7800, - [SMALL_STATE(133)] = 7872, - [SMALL_STATE(134)] = 7944, - [SMALL_STATE(135)] = 8016, - [SMALL_STATE(136)] = 8088, - [SMALL_STATE(137)] = 8128, - [SMALL_STATE(138)] = 8200, - [SMALL_STATE(139)] = 8272, - [SMALL_STATE(140)] = 8344, - [SMALL_STATE(141)] = 8416, - [SMALL_STATE(142)] = 8488, - [SMALL_STATE(143)] = 8560, - [SMALL_STATE(144)] = 8632, - [SMALL_STATE(145)] = 8704, - [SMALL_STATE(146)] = 8776, - [SMALL_STATE(147)] = 8848, - [SMALL_STATE(148)] = 8920, - [SMALL_STATE(149)] = 8992, - [SMALL_STATE(150)] = 9064, - [SMALL_STATE(151)] = 9136, - [SMALL_STATE(152)] = 9208, - [SMALL_STATE(153)] = 9280, - [SMALL_STATE(154)] = 9352, - [SMALL_STATE(155)] = 9424, - [SMALL_STATE(156)] = 9496, - [SMALL_STATE(157)] = 9568, - [SMALL_STATE(158)] = 9640, - [SMALL_STATE(159)] = 9712, - [SMALL_STATE(160)] = 9784, - [SMALL_STATE(161)] = 9856, - [SMALL_STATE(162)] = 9928, - [SMALL_STATE(163)] = 10000, - [SMALL_STATE(164)] = 10072, - [SMALL_STATE(165)] = 10144, - [SMALL_STATE(166)] = 10216, - [SMALL_STATE(167)] = 10288, - [SMALL_STATE(168)] = 10360, - [SMALL_STATE(169)] = 10432, - [SMALL_STATE(170)] = 10504, - [SMALL_STATE(171)] = 10576, - [SMALL_STATE(172)] = 10648, - [SMALL_STATE(173)] = 10720, - [SMALL_STATE(174)] = 10792, - [SMALL_STATE(175)] = 10864, - [SMALL_STATE(176)] = 10936, - [SMALL_STATE(177)] = 11008, - [SMALL_STATE(178)] = 11080, - [SMALL_STATE(179)] = 11152, - [SMALL_STATE(180)] = 11224, - [SMALL_STATE(181)] = 11296, - [SMALL_STATE(182)] = 11368, - [SMALL_STATE(183)] = 11440, - [SMALL_STATE(184)] = 11512, - [SMALL_STATE(185)] = 11569, - [SMALL_STATE(186)] = 11626, - [SMALL_STATE(187)] = 11683, - [SMALL_STATE(188)] = 11734, - [SMALL_STATE(189)] = 11785, - [SMALL_STATE(190)] = 11836, - [SMALL_STATE(191)] = 11887, - [SMALL_STATE(192)] = 11938, - [SMALL_STATE(193)] = 11989, - [SMALL_STATE(194)] = 12040, - [SMALL_STATE(195)] = 12091, - [SMALL_STATE(196)] = 12142, - [SMALL_STATE(197)] = 12193, - [SMALL_STATE(198)] = 12244, - [SMALL_STATE(199)] = 12292, - [SMALL_STATE(200)] = 12340, - [SMALL_STATE(201)] = 12388, - [SMALL_STATE(202)] = 12436, - [SMALL_STATE(203)] = 12484, - [SMALL_STATE(204)] = 12532, - [SMALL_STATE(205)] = 12580, - [SMALL_STATE(206)] = 12628, - [SMALL_STATE(207)] = 12676, - [SMALL_STATE(208)] = 12724, - [SMALL_STATE(209)] = 12759, - [SMALL_STATE(210)] = 12794, - [SMALL_STATE(211)] = 12828, - [SMALL_STATE(212)] = 12862, - [SMALL_STATE(213)] = 12896, - [SMALL_STATE(214)] = 12930, - [SMALL_STATE(215)] = 12964, - [SMALL_STATE(216)] = 12998, - [SMALL_STATE(217)] = 13060, - [SMALL_STATE(218)] = 13122, - [SMALL_STATE(219)] = 13156, - [SMALL_STATE(220)] = 13190, - [SMALL_STATE(221)] = 13252, - [SMALL_STATE(222)] = 13286, - [SMALL_STATE(223)] = 13322, - [SMALL_STATE(224)] = 13384, - [SMALL_STATE(225)] = 13446, - [SMALL_STATE(226)] = 13482, - [SMALL_STATE(227)] = 13513, - [SMALL_STATE(228)] = 13544, - [SMALL_STATE(229)] = 13575, - [SMALL_STATE(230)] = 13606, - [SMALL_STATE(231)] = 13637, - [SMALL_STATE(232)] = 13668, - [SMALL_STATE(233)] = 13699, - [SMALL_STATE(234)] = 13730, - [SMALL_STATE(235)] = 13761, - [SMALL_STATE(236)] = 13796, - [SMALL_STATE(237)] = 13827, - [SMALL_STATE(238)] = 13858, - [SMALL_STATE(239)] = 13889, - [SMALL_STATE(240)] = 13920, - [SMALL_STATE(241)] = 13978, - [SMALL_STATE(242)] = 14036, - [SMALL_STATE(243)] = 14094, - [SMALL_STATE(244)] = 14132, - [SMALL_STATE(245)] = 14168, - [SMALL_STATE(246)] = 14206, - [SMALL_STATE(247)] = 14242, - [SMALL_STATE(248)] = 14278, - [SMALL_STATE(249)] = 14316, - [SMALL_STATE(250)] = 14348, - [SMALL_STATE(251)] = 14384, - [SMALL_STATE(252)] = 14442, - [SMALL_STATE(253)] = 14497, - [SMALL_STATE(254)] = 14552, - [SMALL_STATE(255)] = 14607, - [SMALL_STATE(256)] = 14636, - [SMALL_STATE(257)] = 14665, - [SMALL_STATE(258)] = 14720, - [SMALL_STATE(259)] = 14775, - [SMALL_STATE(260)] = 14804, - [SMALL_STATE(261)] = 14833, - [SMALL_STATE(262)] = 14864, - [SMALL_STATE(263)] = 14893, - [SMALL_STATE(264)] = 14948, - [SMALL_STATE(265)] = 15003, - [SMALL_STATE(266)] = 15032, - [SMALL_STATE(267)] = 15061, - [SMALL_STATE(268)] = 15090, - [SMALL_STATE(269)] = 15119, - [SMALL_STATE(270)] = 15148, - [SMALL_STATE(271)] = 15177, - [SMALL_STATE(272)] = 15206, - [SMALL_STATE(273)] = 15235, - [SMALL_STATE(274)] = 15290, - [SMALL_STATE(275)] = 15319, - [SMALL_STATE(276)] = 15348, - [SMALL_STATE(277)] = 15381, - [SMALL_STATE(278)] = 15436, - [SMALL_STATE(279)] = 15491, - [SMALL_STATE(280)] = 15523, - [SMALL_STATE(281)] = 15551, - [SMALL_STATE(282)] = 15579, - [SMALL_STATE(283)] = 15611, - [SMALL_STATE(284)] = 15646, - [SMALL_STATE(285)] = 15681, - [SMALL_STATE(286)] = 15716, - [SMALL_STATE(287)] = 15749, - [SMALL_STATE(288)] = 15784, - [SMALL_STATE(289)] = 15817, - [SMALL_STATE(290)] = 15844, - [SMALL_STATE(291)] = 15879, - [SMALL_STATE(292)] = 15910, - [SMALL_STATE(293)] = 15945, - [SMALL_STATE(294)] = 15972, - [SMALL_STATE(295)] = 16001, - [SMALL_STATE(296)] = 16034, - [SMALL_STATE(297)] = 16061, - [SMALL_STATE(298)] = 16090, - [SMALL_STATE(299)] = 16123, - [SMALL_STATE(300)] = 16152, - [SMALL_STATE(301)] = 16187, - [SMALL_STATE(302)] = 16214, - [SMALL_STATE(303)] = 16240, - [SMALL_STATE(304)] = 16266, - [SMALL_STATE(305)] = 16298, - [SMALL_STATE(306)] = 16324, - [SMALL_STATE(307)] = 16350, - [SMALL_STATE(308)] = 16376, - [SMALL_STATE(309)] = 16402, - [SMALL_STATE(310)] = 16428, - [SMALL_STATE(311)] = 16476, - [SMALL_STATE(312)] = 16502, - [SMALL_STATE(313)] = 16528, - [SMALL_STATE(314)] = 16554, - [SMALL_STATE(315)] = 16580, - [SMALL_STATE(316)] = 16606, - [SMALL_STATE(317)] = 16636, - [SMALL_STATE(318)] = 16662, - [SMALL_STATE(319)] = 16688, - [SMALL_STATE(320)] = 16720, - [SMALL_STATE(321)] = 16746, - [SMALL_STATE(322)] = 16772, - [SMALL_STATE(323)] = 16798, - [SMALL_STATE(324)] = 16830, - [SMALL_STATE(325)] = 16856, - [SMALL_STATE(326)] = 16882, - [SMALL_STATE(327)] = 16908, - [SMALL_STATE(328)] = 16934, - [SMALL_STATE(329)] = 16960, - [SMALL_STATE(330)] = 16986, - [SMALL_STATE(331)] = 17016, - [SMALL_STATE(332)] = 17042, - [SMALL_STATE(333)] = 17068, - [SMALL_STATE(334)] = 17094, - [SMALL_STATE(335)] = 17120, - [SMALL_STATE(336)] = 17146, - [SMALL_STATE(337)] = 17172, - [SMALL_STATE(338)] = 17198, - [SMALL_STATE(339)] = 17224, - [SMALL_STATE(340)] = 17250, - [SMALL_STATE(341)] = 17282, - [SMALL_STATE(342)] = 17308, - [SMALL_STATE(343)] = 17340, - [SMALL_STATE(344)] = 17366, - [SMALL_STATE(345)] = 17392, - [SMALL_STATE(346)] = 17418, - [SMALL_STATE(347)] = 17444, - [SMALL_STATE(348)] = 17470, - [SMALL_STATE(349)] = 17496, - [SMALL_STATE(350)] = 17522, - [SMALL_STATE(351)] = 17548, - [SMALL_STATE(352)] = 17580, - [SMALL_STATE(353)] = 17606, - [SMALL_STATE(354)] = 17638, - [SMALL_STATE(355)] = 17670, - [SMALL_STATE(356)] = 17702, - [SMALL_STATE(357)] = 17734, - [SMALL_STATE(358)] = 17766, - [SMALL_STATE(359)] = 17792, - [SMALL_STATE(360)] = 17824, - [SMALL_STATE(361)] = 17856, - [SMALL_STATE(362)] = 17888, - [SMALL_STATE(363)] = 17914, - [SMALL_STATE(364)] = 17940, - [SMALL_STATE(365)] = 17988, - [SMALL_STATE(366)] = 18014, - [SMALL_STATE(367)] = 18040, - [SMALL_STATE(368)] = 18088, - [SMALL_STATE(369)] = 18114, - [SMALL_STATE(370)] = 18140, - [SMALL_STATE(371)] = 18188, - [SMALL_STATE(372)] = 18236, - [SMALL_STATE(373)] = 18268, - [SMALL_STATE(374)] = 18297, - [SMALL_STATE(375)] = 18326, - [SMALL_STATE(376)] = 18355, - [SMALL_STATE(377)] = 18384, - [SMALL_STATE(378)] = 18413, - [SMALL_STATE(379)] = 18442, - [SMALL_STATE(380)] = 18471, - [SMALL_STATE(381)] = 18500, - [SMALL_STATE(382)] = 18529, - [SMALL_STATE(383)] = 18558, - [SMALL_STATE(384)] = 18587, - [SMALL_STATE(385)] = 18616, - [SMALL_STATE(386)] = 18645, - [SMALL_STATE(387)] = 18674, - [SMALL_STATE(388)] = 18703, - [SMALL_STATE(389)] = 18732, - [SMALL_STATE(390)] = 18761, - [SMALL_STATE(391)] = 18790, - [SMALL_STATE(392)] = 18819, - [SMALL_STATE(393)] = 18848, - [SMALL_STATE(394)] = 18877, - [SMALL_STATE(395)] = 18906, - [SMALL_STATE(396)] = 18935, - [SMALL_STATE(397)] = 18964, - [SMALL_STATE(398)] = 18993, - [SMALL_STATE(399)] = 19022, - [SMALL_STATE(400)] = 19048, - [SMALL_STATE(401)] = 19074, - [SMALL_STATE(402)] = 19098, - [SMALL_STATE(403)] = 19122, - [SMALL_STATE(404)] = 19146, - [SMALL_STATE(405)] = 19170, - [SMALL_STATE(406)] = 19193, - [SMALL_STATE(407)] = 19216, - [SMALL_STATE(408)] = 19239, - [SMALL_STATE(409)] = 19262, - [SMALL_STATE(410)] = 19285, - [SMALL_STATE(411)] = 19308, - [SMALL_STATE(412)] = 19331, - [SMALL_STATE(413)] = 19354, - [SMALL_STATE(414)] = 19377, - [SMALL_STATE(415)] = 19400, - [SMALL_STATE(416)] = 19423, - [SMALL_STATE(417)] = 19446, - [SMALL_STATE(418)] = 19469, - [SMALL_STATE(419)] = 19492, - [SMALL_STATE(420)] = 19515, - [SMALL_STATE(421)] = 19538, - [SMALL_STATE(422)] = 19561, - [SMALL_STATE(423)] = 19584, - [SMALL_STATE(424)] = 19607, - [SMALL_STATE(425)] = 19630, - [SMALL_STATE(426)] = 19653, - [SMALL_STATE(427)] = 19676, - [SMALL_STATE(428)] = 19699, - [SMALL_STATE(429)] = 19722, - [SMALL_STATE(430)] = 19745, - [SMALL_STATE(431)] = 19768, - [SMALL_STATE(432)] = 19791, - [SMALL_STATE(433)] = 19814, - [SMALL_STATE(434)] = 19837, - [SMALL_STATE(435)] = 19860, - [SMALL_STATE(436)] = 19883, - [SMALL_STATE(437)] = 19906, - [SMALL_STATE(438)] = 19929, - [SMALL_STATE(439)] = 19952, - [SMALL_STATE(440)] = 19975, - [SMALL_STATE(441)] = 19997, - [SMALL_STATE(442)] = 20019, - [SMALL_STATE(443)] = 20041, - [SMALL_STATE(444)] = 20063, - [SMALL_STATE(445)] = 20082, - [SMALL_STATE(446)] = 20101, - [SMALL_STATE(447)] = 20128, - [SMALL_STATE(448)] = 20156, - [SMALL_STATE(449)] = 20184, - [SMALL_STATE(450)] = 20212, - [SMALL_STATE(451)] = 20240, - [SMALL_STATE(452)] = 20268, - [SMALL_STATE(453)] = 20296, - [SMALL_STATE(454)] = 20321, - [SMALL_STATE(455)] = 20346, - [SMALL_STATE(456)] = 20369, - [SMALL_STATE(457)] = 20394, - [SMALL_STATE(458)] = 20419, - [SMALL_STATE(459)] = 20442, - [SMALL_STATE(460)] = 20467, - [SMALL_STATE(461)] = 20492, - [SMALL_STATE(462)] = 20517, - [SMALL_STATE(463)] = 20542, - [SMALL_STATE(464)] = 20565, - [SMALL_STATE(465)] = 20587, - [SMALL_STATE(466)] = 20601, - [SMALL_STATE(467)] = 20623, - [SMALL_STATE(468)] = 20645, - [SMALL_STATE(469)] = 20667, - [SMALL_STATE(470)] = 20689, - [SMALL_STATE(471)] = 20711, - [SMALL_STATE(472)] = 20725, - [SMALL_STATE(473)] = 20745, - [SMALL_STATE(474)] = 20759, - [SMALL_STATE(475)] = 20778, - [SMALL_STATE(476)] = 20789, - [SMALL_STATE(477)] = 20800, - [SMALL_STATE(478)] = 20819, - [SMALL_STATE(479)] = 20830, - [SMALL_STATE(480)] = 20841, - [SMALL_STATE(481)] = 20860, - [SMALL_STATE(482)] = 20871, - [SMALL_STATE(483)] = 20882, - [SMALL_STATE(484)] = 20893, - [SMALL_STATE(485)] = 20904, - [SMALL_STATE(486)] = 20915, - [SMALL_STATE(487)] = 20934, - [SMALL_STATE(488)] = 20945, - [SMALL_STATE(489)] = 20960, - [SMALL_STATE(490)] = 20971, - [SMALL_STATE(491)] = 20982, - [SMALL_STATE(492)] = 20997, - [SMALL_STATE(493)] = 21007, - [SMALL_STATE(494)] = 21021, - [SMALL_STATE(495)] = 21031, - [SMALL_STATE(496)] = 21041, - [SMALL_STATE(497)] = 21051, - [SMALL_STATE(498)] = 21065, - [SMALL_STATE(499)] = 21079, - [SMALL_STATE(500)] = 21090, - [SMALL_STATE(501)] = 21101, - [SMALL_STATE(502)] = 21112, - [SMALL_STATE(503)] = 21123, - [SMALL_STATE(504)] = 21134, - [SMALL_STATE(505)] = 21145, - [SMALL_STATE(506)] = 21156, - [SMALL_STATE(507)] = 21167, - [SMALL_STATE(508)] = 21178, - [SMALL_STATE(509)] = 21189, - [SMALL_STATE(510)] = 21200, - [SMALL_STATE(511)] = 21211, - [SMALL_STATE(512)] = 21222, - [SMALL_STATE(513)] = 21233, - [SMALL_STATE(514)] = 21244, - [SMALL_STATE(515)] = 21255, - [SMALL_STATE(516)] = 21266, - [SMALL_STATE(517)] = 21277, - [SMALL_STATE(518)] = 21288, - [SMALL_STATE(519)] = 21299, - [SMALL_STATE(520)] = 21310, - [SMALL_STATE(521)] = 21326, - [SMALL_STATE(522)] = 21342, - [SMALL_STATE(523)] = 21358, - [SMALL_STATE(524)] = 21374, - [SMALL_STATE(525)] = 21390, - [SMALL_STATE(526)] = 21400, - [SMALL_STATE(527)] = 21410, - [SMALL_STATE(528)] = 21420, - [SMALL_STATE(529)] = 21430, - [SMALL_STATE(530)] = 21446, - [SMALL_STATE(531)] = 21456, - [SMALL_STATE(532)] = 21470, - [SMALL_STATE(533)] = 21480, - [SMALL_STATE(534)] = 21491, - [SMALL_STATE(535)] = 21504, - [SMALL_STATE(536)] = 21517, - [SMALL_STATE(537)] = 21528, - [SMALL_STATE(538)] = 21539, - [SMALL_STATE(539)] = 21550, - [SMALL_STATE(540)] = 21563, - [SMALL_STATE(541)] = 21576, - [SMALL_STATE(542)] = 21589, - [SMALL_STATE(543)] = 21600, - [SMALL_STATE(544)] = 21611, - [SMALL_STATE(545)] = 21618, - [SMALL_STATE(546)] = 21629, - [SMALL_STATE(547)] = 21640, - [SMALL_STATE(548)] = 21651, - [SMALL_STATE(549)] = 21662, - [SMALL_STATE(550)] = 21673, - [SMALL_STATE(551)] = 21682, - [SMALL_STATE(552)] = 21689, - [SMALL_STATE(553)] = 21696, - [SMALL_STATE(554)] = 21703, - [SMALL_STATE(555)] = 21714, - [SMALL_STATE(556)] = 21721, - [SMALL_STATE(557)] = 21734, - [SMALL_STATE(558)] = 21741, - [SMALL_STATE(559)] = 21752, - [SMALL_STATE(560)] = 21759, - [SMALL_STATE(561)] = 21772, - [SMALL_STATE(562)] = 21779, - [SMALL_STATE(563)] = 21790, - [SMALL_STATE(564)] = 21801, - [SMALL_STATE(565)] = 21808, - [SMALL_STATE(566)] = 21821, - [SMALL_STATE(567)] = 21834, - [SMALL_STATE(568)] = 21841, - [SMALL_STATE(569)] = 21852, - [SMALL_STATE(570)] = 21865, - [SMALL_STATE(571)] = 21878, - [SMALL_STATE(572)] = 21885, - [SMALL_STATE(573)] = 21892, - [SMALL_STATE(574)] = 21905, - [SMALL_STATE(575)] = 21912, - [SMALL_STATE(576)] = 21919, - [SMALL_STATE(577)] = 21926, - [SMALL_STATE(578)] = 21933, - [SMALL_STATE(579)] = 21944, - [SMALL_STATE(580)] = 21951, - [SMALL_STATE(581)] = 21958, - [SMALL_STATE(582)] = 21965, - [SMALL_STATE(583)] = 21972, - [SMALL_STATE(584)] = 21979, - [SMALL_STATE(585)] = 21992, - [SMALL_STATE(586)] = 22002, - [SMALL_STATE(587)] = 22008, - [SMALL_STATE(588)] = 22018, - [SMALL_STATE(589)] = 22028, - [SMALL_STATE(590)] = 22036, - [SMALL_STATE(591)] = 22046, - [SMALL_STATE(592)] = 22056, - [SMALL_STATE(593)] = 22066, - [SMALL_STATE(594)] = 22076, - [SMALL_STATE(595)] = 22086, - [SMALL_STATE(596)] = 22096, - [SMALL_STATE(597)] = 22106, - [SMALL_STATE(598)] = 22114, - [SMALL_STATE(599)] = 22124, - [SMALL_STATE(600)] = 22134, - [SMALL_STATE(601)] = 22144, - [SMALL_STATE(602)] = 22154, - [SMALL_STATE(603)] = 22164, - [SMALL_STATE(604)] = 22172, - [SMALL_STATE(605)] = 22182, - [SMALL_STATE(606)] = 22192, - [SMALL_STATE(607)] = 22202, - [SMALL_STATE(608)] = 22212, - [SMALL_STATE(609)] = 22222, - [SMALL_STATE(610)] = 22232, - [SMALL_STATE(611)] = 22242, - [SMALL_STATE(612)] = 22252, - [SMALL_STATE(613)] = 22262, - [SMALL_STATE(614)] = 22272, - [SMALL_STATE(615)] = 22282, - [SMALL_STATE(616)] = 22292, - [SMALL_STATE(617)] = 22302, - [SMALL_STATE(618)] = 22310, - [SMALL_STATE(619)] = 22320, - [SMALL_STATE(620)] = 22330, - [SMALL_STATE(621)] = 22340, - [SMALL_STATE(622)] = 22346, - [SMALL_STATE(623)] = 22356, - [SMALL_STATE(624)] = 22366, - [SMALL_STATE(625)] = 22376, - [SMALL_STATE(626)] = 22384, - [SMALL_STATE(627)] = 22394, - [SMALL_STATE(628)] = 22404, - [SMALL_STATE(629)] = 22414, - [SMALL_STATE(630)] = 22424, - [SMALL_STATE(631)] = 22434, - [SMALL_STATE(632)] = 22444, - [SMALL_STATE(633)] = 22454, - [SMALL_STATE(634)] = 22460, - [SMALL_STATE(635)] = 22470, - [SMALL_STATE(636)] = 22480, - [SMALL_STATE(637)] = 22488, - [SMALL_STATE(638)] = 22498, - [SMALL_STATE(639)] = 22504, - [SMALL_STATE(640)] = 22514, - [SMALL_STATE(641)] = 22524, - [SMALL_STATE(642)] = 22531, - [SMALL_STATE(643)] = 22536, - [SMALL_STATE(644)] = 22543, - [SMALL_STATE(645)] = 22550, - [SMALL_STATE(646)] = 22555, - [SMALL_STATE(647)] = 22562, - [SMALL_STATE(648)] = 22569, - [SMALL_STATE(649)] = 22576, - [SMALL_STATE(650)] = 22583, - [SMALL_STATE(651)] = 22590, - [SMALL_STATE(652)] = 22595, - [SMALL_STATE(653)] = 22602, - [SMALL_STATE(654)] = 22609, - [SMALL_STATE(655)] = 22614, - [SMALL_STATE(656)] = 22621, - [SMALL_STATE(657)] = 22628, - [SMALL_STATE(658)] = 22633, - [SMALL_STATE(659)] = 22640, - [SMALL_STATE(660)] = 22647, - [SMALL_STATE(661)] = 22652, - [SMALL_STATE(662)] = 22659, - [SMALL_STATE(663)] = 22666, - [SMALL_STATE(664)] = 22671, - [SMALL_STATE(665)] = 22678, - [SMALL_STATE(666)] = 22685, - [SMALL_STATE(667)] = 22692, - [SMALL_STATE(668)] = 22699, - [SMALL_STATE(669)] = 22706, - [SMALL_STATE(670)] = 22711, - [SMALL_STATE(671)] = 22716, - [SMALL_STATE(672)] = 22723, - [SMALL_STATE(673)] = 22730, - [SMALL_STATE(674)] = 22737, - [SMALL_STATE(675)] = 22744, - [SMALL_STATE(676)] = 22749, - [SMALL_STATE(677)] = 22754, - [SMALL_STATE(678)] = 22759, - [SMALL_STATE(679)] = 22764, - [SMALL_STATE(680)] = 22771, - [SMALL_STATE(681)] = 22778, - [SMALL_STATE(682)] = 22782, - [SMALL_STATE(683)] = 22786, - [SMALL_STATE(684)] = 22790, - [SMALL_STATE(685)] = 22794, - [SMALL_STATE(686)] = 22798, - [SMALL_STATE(687)] = 22802, - [SMALL_STATE(688)] = 22806, - [SMALL_STATE(689)] = 22810, - [SMALL_STATE(690)] = 22814, - [SMALL_STATE(691)] = 22818, - [SMALL_STATE(692)] = 22822, - [SMALL_STATE(693)] = 22826, - [SMALL_STATE(694)] = 22830, - [SMALL_STATE(695)] = 22834, - [SMALL_STATE(696)] = 22838, - [SMALL_STATE(697)] = 22842, - [SMALL_STATE(698)] = 22846, - [SMALL_STATE(699)] = 22850, - [SMALL_STATE(700)] = 22854, - [SMALL_STATE(701)] = 22858, - [SMALL_STATE(702)] = 22862, - [SMALL_STATE(703)] = 22866, - [SMALL_STATE(704)] = 22870, - [SMALL_STATE(705)] = 22874, - [SMALL_STATE(706)] = 22878, - [SMALL_STATE(707)] = 22882, - [SMALL_STATE(708)] = 22886, - [SMALL_STATE(709)] = 22890, - [SMALL_STATE(710)] = 22894, - [SMALL_STATE(711)] = 22898, - [SMALL_STATE(712)] = 22902, - [SMALL_STATE(713)] = 22906, - [SMALL_STATE(714)] = 22910, - [SMALL_STATE(715)] = 22914, - [SMALL_STATE(716)] = 22918, - [SMALL_STATE(717)] = 22922, - [SMALL_STATE(718)] = 22926, - [SMALL_STATE(719)] = 22930, - [SMALL_STATE(720)] = 22934, - [SMALL_STATE(721)] = 22938, - [SMALL_STATE(722)] = 22942, - [SMALL_STATE(723)] = 22946, - [SMALL_STATE(724)] = 22950, - [SMALL_STATE(725)] = 22954, - [SMALL_STATE(726)] = 22958, - [SMALL_STATE(727)] = 22962, - [SMALL_STATE(728)] = 22966, - [SMALL_STATE(729)] = 22970, - [SMALL_STATE(730)] = 22974, - [SMALL_STATE(731)] = 22978, - [SMALL_STATE(732)] = 22982, - [SMALL_STATE(733)] = 22986, - [SMALL_STATE(734)] = 22990, - [SMALL_STATE(735)] = 22994, - [SMALL_STATE(736)] = 22998, - [SMALL_STATE(737)] = 23002, - [SMALL_STATE(738)] = 23006, - [SMALL_STATE(739)] = 23010, - [SMALL_STATE(740)] = 23014, - [SMALL_STATE(741)] = 23018, - [SMALL_STATE(742)] = 23022, - [SMALL_STATE(743)] = 23026, - [SMALL_STATE(744)] = 23030, - [SMALL_STATE(745)] = 23034, - [SMALL_STATE(746)] = 23038, - [SMALL_STATE(747)] = 23042, - [SMALL_STATE(748)] = 23046, - [SMALL_STATE(749)] = 23050, - [SMALL_STATE(750)] = 23054, - [SMALL_STATE(751)] = 23058, - [SMALL_STATE(752)] = 23062, - [SMALL_STATE(753)] = 23066, - [SMALL_STATE(754)] = 23070, - [SMALL_STATE(755)] = 23074, - [SMALL_STATE(756)] = 23078, - [SMALL_STATE(757)] = 23082, - [SMALL_STATE(758)] = 23086, - [SMALL_STATE(759)] = 23090, - [SMALL_STATE(760)] = 23094, - [SMALL_STATE(761)] = 23098, - [SMALL_STATE(762)] = 23102, - [SMALL_STATE(763)] = 23106, - [SMALL_STATE(764)] = 23110, - [SMALL_STATE(765)] = 23114, - [SMALL_STATE(766)] = 23118, - [SMALL_STATE(767)] = 23122, - [SMALL_STATE(768)] = 23126, - [SMALL_STATE(769)] = 23130, - [SMALL_STATE(770)] = 23134, - [SMALL_STATE(771)] = 23138, - [SMALL_STATE(772)] = 23142, - [SMALL_STATE(773)] = 23146, - [SMALL_STATE(774)] = 23150, - [SMALL_STATE(775)] = 23154, - [SMALL_STATE(776)] = 23158, - [SMALL_STATE(777)] = 23162, - [SMALL_STATE(778)] = 23166, - [SMALL_STATE(779)] = 23170, - [SMALL_STATE(780)] = 23174, - [SMALL_STATE(781)] = 23178, - [SMALL_STATE(782)] = 23182, - [SMALL_STATE(783)] = 23186, - [SMALL_STATE(784)] = 23190, - [SMALL_STATE(785)] = 23194, - [SMALL_STATE(786)] = 23198, - [SMALL_STATE(787)] = 23202, - [SMALL_STATE(788)] = 23206, + [SMALL_STATE(3)] = 75, + [SMALL_STATE(4)] = 152, + [SMALL_STATE(5)] = 223, + [SMALL_STATE(6)] = 300, + [SMALL_STATE(7)] = 371, + [SMALL_STATE(8)] = 441, + [SMALL_STATE(9)] = 508, + [SMALL_STATE(10)] = 575, + [SMALL_STATE(11)] = 642, + [SMALL_STATE(12)] = 706, + [SMALL_STATE(13)] = 770, + [SMALL_STATE(14)] = 834, + [SMALL_STATE(15)] = 898, + [SMALL_STATE(16)] = 962, + [SMALL_STATE(17)] = 1023, + [SMALL_STATE(18)] = 1084, + [SMALL_STATE(19)] = 1145, + [SMALL_STATE(20)] = 1206, + [SMALL_STATE(21)] = 1267, + [SMALL_STATE(22)] = 1328, + [SMALL_STATE(23)] = 1389, + [SMALL_STATE(24)] = 1450, + [SMALL_STATE(25)] = 1523, + [SMALL_STATE(26)] = 1584, + [SMALL_STATE(27)] = 1645, + [SMALL_STATE(28)] = 1706, + [SMALL_STATE(29)] = 1767, + [SMALL_STATE(30)] = 1828, + [SMALL_STATE(31)] = 1889, + [SMALL_STATE(32)] = 1950, + [SMALL_STATE(33)] = 2011, + [SMALL_STATE(34)] = 2069, + [SMALL_STATE(35)] = 2127, + [SMALL_STATE(36)] = 2185, + [SMALL_STATE(37)] = 2243, + [SMALL_STATE(38)] = 2301, + [SMALL_STATE(39)] = 2359, + [SMALL_STATE(40)] = 2417, + [SMALL_STATE(41)] = 2475, + [SMALL_STATE(42)] = 2533, + [SMALL_STATE(43)] = 2591, + [SMALL_STATE(44)] = 2649, + [SMALL_STATE(45)] = 2707, + [SMALL_STATE(46)] = 2765, + [SMALL_STATE(47)] = 2823, + [SMALL_STATE(48)] = 2881, + [SMALL_STATE(49)] = 2939, + [SMALL_STATE(50)] = 2997, + [SMALL_STATE(51)] = 3055, + [SMALL_STATE(52)] = 3113, + [SMALL_STATE(53)] = 3171, + [SMALL_STATE(54)] = 3229, + [SMALL_STATE(55)] = 3287, + [SMALL_STATE(56)] = 3345, + [SMALL_STATE(57)] = 3414, + [SMALL_STATE(58)] = 3483, + [SMALL_STATE(59)] = 3552, + [SMALL_STATE(60)] = 3621, + [SMALL_STATE(61)] = 3690, + [SMALL_STATE(62)] = 3759, + [SMALL_STATE(63)] = 3828, + [SMALL_STATE(64)] = 3897, + [SMALL_STATE(65)] = 3966, + [SMALL_STATE(66)] = 4035, + [SMALL_STATE(67)] = 4104, + [SMALL_STATE(68)] = 4173, + [SMALL_STATE(69)] = 4242, + [SMALL_STATE(70)] = 4311, + [SMALL_STATE(71)] = 4380, + [SMALL_STATE(72)] = 4449, + [SMALL_STATE(73)] = 4518, + [SMALL_STATE(74)] = 4587, + [SMALL_STATE(75)] = 4656, + [SMALL_STATE(76)] = 4725, + [SMALL_STATE(77)] = 4794, + [SMALL_STATE(78)] = 4863, + [SMALL_STATE(79)] = 4926, + [SMALL_STATE(80)] = 4959, + [SMALL_STATE(81)] = 5022, + [SMALL_STATE(82)] = 5085, + [SMALL_STATE(83)] = 5148, + [SMALL_STATE(84)] = 5211, + [SMALL_STATE(85)] = 5274, + [SMALL_STATE(86)] = 5337, + [SMALL_STATE(87)] = 5400, + [SMALL_STATE(88)] = 5460, + [SMALL_STATE(89)] = 5494, + [SMALL_STATE(90)] = 5554, + [SMALL_STATE(91)] = 5588, + [SMALL_STATE(92)] = 5622, + [SMALL_STATE(93)] = 5682, + [SMALL_STATE(94)] = 5742, + [SMALL_STATE(95)] = 5802, + [SMALL_STATE(96)] = 5859, + [SMALL_STATE(97)] = 5890, + [SMALL_STATE(98)] = 5921, + [SMALL_STATE(99)] = 5952, + [SMALL_STATE(100)] = 5983, + [SMALL_STATE(101)] = 6014, + [SMALL_STATE(102)] = 6045, + [SMALL_STATE(103)] = 6076, + [SMALL_STATE(104)] = 6107, + [SMALL_STATE(105)] = 6138, + [SMALL_STATE(106)] = 6195, + [SMALL_STATE(107)] = 6252, + [SMALL_STATE(108)] = 6309, + [SMALL_STATE(109)] = 6340, + [SMALL_STATE(110)] = 6397, + [SMALL_STATE(111)] = 6428, + [SMALL_STATE(112)] = 6485, + [SMALL_STATE(113)] = 6516, + [SMALL_STATE(114)] = 6575, + [SMALL_STATE(115)] = 6632, + [SMALL_STATE(116)] = 6691, + [SMALL_STATE(117)] = 6750, + [SMALL_STATE(118)] = 6807, + [SMALL_STATE(119)] = 6840, + [SMALL_STATE(120)] = 6899, + [SMALL_STATE(121)] = 6958, + [SMALL_STATE(122)] = 7017, + [SMALL_STATE(123)] = 7048, + [SMALL_STATE(124)] = 7107, + [SMALL_STATE(125)] = 7164, + [SMALL_STATE(126)] = 7221, + [SMALL_STATE(127)] = 7280, + [SMALL_STATE(128)] = 7337, + [SMALL_STATE(129)] = 7394, + [SMALL_STATE(130)] = 7425, + [SMALL_STATE(131)] = 7482, + [SMALL_STATE(132)] = 7513, + [SMALL_STATE(133)] = 7572, + [SMALL_STATE(134)] = 7631, + [SMALL_STATE(135)] = 7690, + [SMALL_STATE(136)] = 7749, + [SMALL_STATE(137)] = 7780, + [SMALL_STATE(138)] = 7839, + [SMALL_STATE(139)] = 7898, + [SMALL_STATE(140)] = 7929, + [SMALL_STATE(141)] = 7986, + [SMALL_STATE(142)] = 8043, + [SMALL_STATE(143)] = 8100, + [SMALL_STATE(144)] = 8157, + [SMALL_STATE(145)] = 8214, + [SMALL_STATE(146)] = 8271, + [SMALL_STATE(147)] = 8328, + [SMALL_STATE(148)] = 8385, + [SMALL_STATE(149)] = 8442, + [SMALL_STATE(150)] = 8473, + [SMALL_STATE(151)] = 8530, + [SMALL_STATE(152)] = 8587, + [SMALL_STATE(153)] = 8644, + [SMALL_STATE(154)] = 8701, + [SMALL_STATE(155)] = 8732, + [SMALL_STATE(156)] = 8763, + [SMALL_STATE(157)] = 8822, + [SMALL_STATE(158)] = 8879, + [SMALL_STATE(159)] = 8910, + [SMALL_STATE(160)] = 8941, + [SMALL_STATE(161)] = 8971, + [SMALL_STATE(162)] = 9027, + [SMALL_STATE(163)] = 9083, + [SMALL_STATE(164)] = 9139, + [SMALL_STATE(165)] = 9195, + [SMALL_STATE(166)] = 9251, + [SMALL_STATE(167)] = 9307, + [SMALL_STATE(168)] = 9363, + [SMALL_STATE(169)] = 9419, + [SMALL_STATE(170)] = 9475, + [SMALL_STATE(171)] = 9523, + [SMALL_STATE(172)] = 9571, + [SMALL_STATE(173)] = 9619, + [SMALL_STATE(174)] = 9667, + [SMALL_STATE(175)] = 9725, + [SMALL_STATE(176)] = 9759, + [SMALL_STATE(177)] = 9782, + [SMALL_STATE(178)] = 9813, + [SMALL_STATE(179)] = 9842, + [SMALL_STATE(180)] = 9871, + [SMALL_STATE(181)] = 9894, + [SMALL_STATE(182)] = 9923, + [SMALL_STATE(183)] = 9954, + [SMALL_STATE(184)] = 9983, + [SMALL_STATE(185)] = 10014, + [SMALL_STATE(186)] = 10045, + [SMALL_STATE(187)] = 10067, + [SMALL_STATE(188)] = 10093, + [SMALL_STATE(189)] = 10119, + [SMALL_STATE(190)] = 10141, + [SMALL_STATE(191)] = 10166, + [SMALL_STATE(192)] = 10191, + [SMALL_STATE(193)] = 10212, + [SMALL_STATE(194)] = 10233, + [SMALL_STATE(195)] = 10253, + [SMALL_STATE(196)] = 10273, + [SMALL_STATE(197)] = 10293, + [SMALL_STATE(198)] = 10313, + [SMALL_STATE(199)] = 10333, + [SMALL_STATE(200)] = 10355, + [SMALL_STATE(201)] = 10375, + [SMALL_STATE(202)] = 10395, + [SMALL_STATE(203)] = 10415, + [SMALL_STATE(204)] = 10435, + [SMALL_STATE(205)] = 10455, + [SMALL_STATE(206)] = 10477, + [SMALL_STATE(207)] = 10497, + [SMALL_STATE(208)] = 10517, + [SMALL_STATE(209)] = 10537, + [SMALL_STATE(210)] = 10557, + [SMALL_STATE(211)] = 10577, + [SMALL_STATE(212)] = 10597, + [SMALL_STATE(213)] = 10617, + [SMALL_STATE(214)] = 10637, + [SMALL_STATE(215)] = 10659, + [SMALL_STATE(216)] = 10679, + [SMALL_STATE(217)] = 10699, + [SMALL_STATE(218)] = 10721, + [SMALL_STATE(219)] = 10741, + [SMALL_STATE(220)] = 10761, + [SMALL_STATE(221)] = 10781, + [SMALL_STATE(222)] = 10803, + [SMALL_STATE(223)] = 10823, + [SMALL_STATE(224)] = 10843, + [SMALL_STATE(225)] = 10862, + [SMALL_STATE(226)] = 10881, + [SMALL_STATE(227)] = 10900, + [SMALL_STATE(228)] = 10919, + [SMALL_STATE(229)] = 10938, + [SMALL_STATE(230)] = 10957, + [SMALL_STATE(231)] = 10976, + [SMALL_STATE(232)] = 10995, + [SMALL_STATE(233)] = 11014, + [SMALL_STATE(234)] = 11033, + [SMALL_STATE(235)] = 11052, + [SMALL_STATE(236)] = 11071, + [SMALL_STATE(237)] = 11090, + [SMALL_STATE(238)] = 11109, + [SMALL_STATE(239)] = 11128, + [SMALL_STATE(240)] = 11147, + [SMALL_STATE(241)] = 11166, + [SMALL_STATE(242)] = 11185, + [SMALL_STATE(243)] = 11204, + [SMALL_STATE(244)] = 11223, + [SMALL_STATE(245)] = 11242, + [SMALL_STATE(246)] = 11261, + [SMALL_STATE(247)] = 11280, + [SMALL_STATE(248)] = 11299, + [SMALL_STATE(249)] = 11318, + [SMALL_STATE(250)] = 11337, + [SMALL_STATE(251)] = 11356, + [SMALL_STATE(252)] = 11375, + [SMALL_STATE(253)] = 11394, + [SMALL_STATE(254)] = 11413, + [SMALL_STATE(255)] = 11432, + [SMALL_STATE(256)] = 11451, + [SMALL_STATE(257)] = 11470, + [SMALL_STATE(258)] = 11489, + [SMALL_STATE(259)] = 11508, + [SMALL_STATE(260)] = 11527, + [SMALL_STATE(261)] = 11546, + [SMALL_STATE(262)] = 11565, + [SMALL_STATE(263)] = 11584, + [SMALL_STATE(264)] = 11603, + [SMALL_STATE(265)] = 11622, + [SMALL_STATE(266)] = 11641, + [SMALL_STATE(267)] = 11660, + [SMALL_STATE(268)] = 11679, + [SMALL_STATE(269)] = 11698, + [SMALL_STATE(270)] = 11717, + [SMALL_STATE(271)] = 11736, + [SMALL_STATE(272)] = 11755, + [SMALL_STATE(273)] = 11774, + [SMALL_STATE(274)] = 11817, + [SMALL_STATE(275)] = 11836, + [SMALL_STATE(276)] = 11855, + [SMALL_STATE(277)] = 11881, + [SMALL_STATE(278)] = 11896, + [SMALL_STATE(279)] = 11915, + [SMALL_STATE(280)] = 11934, + [SMALL_STATE(281)] = 11961, + [SMALL_STATE(282)] = 11989, + [SMALL_STATE(283)] = 12005, + [SMALL_STATE(284)] = 12021, + [SMALL_STATE(285)] = 12037, + [SMALL_STATE(286)] = 12053, + [SMALL_STATE(287)] = 12069, + [SMALL_STATE(288)] = 12085, + [SMALL_STATE(289)] = 12101, + [SMALL_STATE(290)] = 12117, + [SMALL_STATE(291)] = 12133, + [SMALL_STATE(292)] = 12149, + [SMALL_STATE(293)] = 12177, + [SMALL_STATE(294)] = 12205, + [SMALL_STATE(295)] = 12233, + [SMALL_STATE(296)] = 12249, + [SMALL_STATE(297)] = 12265, + [SMALL_STATE(298)] = 12290, + [SMALL_STATE(299)] = 12303, + [SMALL_STATE(300)] = 12316, + [SMALL_STATE(301)] = 12341, + [SMALL_STATE(302)] = 12354, + [SMALL_STATE(303)] = 12379, + [SMALL_STATE(304)] = 12404, + [SMALL_STATE(305)] = 12429, + [SMALL_STATE(306)] = 12454, + [SMALL_STATE(307)] = 12479, + [SMALL_STATE(308)] = 12494, + [SMALL_STATE(309)] = 12519, + [SMALL_STATE(310)] = 12542, + [SMALL_STATE(311)] = 12564, + [SMALL_STATE(312)] = 12584, + [SMALL_STATE(313)] = 12604, + [SMALL_STATE(314)] = 12624, + [SMALL_STATE(315)] = 12636, + [SMALL_STATE(316)] = 12648, + [SMALL_STATE(317)] = 12660, + [SMALL_STATE(318)] = 12672, + [SMALL_STATE(319)] = 12700, + [SMALL_STATE(320)] = 12712, + [SMALL_STATE(321)] = 12724, + [SMALL_STATE(322)] = 12746, + [SMALL_STATE(323)] = 12758, + [SMALL_STATE(324)] = 12770, + [SMALL_STATE(325)] = 12792, + [SMALL_STATE(326)] = 12804, + [SMALL_STATE(327)] = 12816, + [SMALL_STATE(328)] = 12828, + [SMALL_STATE(329)] = 12840, + [SMALL_STATE(330)] = 12852, + [SMALL_STATE(331)] = 12872, + [SMALL_STATE(332)] = 12892, + [SMALL_STATE(333)] = 12904, + [SMALL_STATE(334)] = 12916, + [SMALL_STATE(335)] = 12928, + [SMALL_STATE(336)] = 12940, + [SMALL_STATE(337)] = 12952, + [SMALL_STATE(338)] = 12964, + [SMALL_STATE(339)] = 12976, + [SMALL_STATE(340)] = 12988, + [SMALL_STATE(341)] = 13003, + [SMALL_STATE(342)] = 13014, + [SMALL_STATE(343)] = 13025, + [SMALL_STATE(344)] = 13036, + [SMALL_STATE(345)] = 13047, + [SMALL_STATE(346)] = 13058, + [SMALL_STATE(347)] = 13069, + [SMALL_STATE(348)] = 13080, + [SMALL_STATE(349)] = 13099, + [SMALL_STATE(350)] = 13118, + [SMALL_STATE(351)] = 13137, + [SMALL_STATE(352)] = 13156, + [SMALL_STATE(353)] = 13166, + [SMALL_STATE(354)] = 13176, + [SMALL_STATE(355)] = 13186, + [SMALL_STATE(356)] = 13196, + [SMALL_STATE(357)] = 13208, + [SMALL_STATE(358)] = 13222, + [SMALL_STATE(359)] = 13234, + [SMALL_STATE(360)] = 13244, + [SMALL_STATE(361)] = 13254, + [SMALL_STATE(362)] = 13263, + [SMALL_STATE(363)] = 13276, + [SMALL_STATE(364)] = 13285, + [SMALL_STATE(365)] = 13294, + [SMALL_STATE(366)] = 13303, + [SMALL_STATE(367)] = 13312, + [SMALL_STATE(368)] = 13325, + [SMALL_STATE(369)] = 13334, + [SMALL_STATE(370)] = 13343, + [SMALL_STATE(371)] = 13352, + [SMALL_STATE(372)] = 13369, + [SMALL_STATE(373)] = 13378, + [SMALL_STATE(374)] = 13387, + [SMALL_STATE(375)] = 13398, + [SMALL_STATE(376)] = 13407, + [SMALL_STATE(377)] = 13416, + [SMALL_STATE(378)] = 13425, + [SMALL_STATE(379)] = 13434, + [SMALL_STATE(380)] = 13442, + [SMALL_STATE(381)] = 13452, + [SMALL_STATE(382)] = 13468, + [SMALL_STATE(383)] = 13476, + [SMALL_STATE(384)] = 13484, + [SMALL_STATE(385)] = 13492, + [SMALL_STATE(386)] = 13500, + [SMALL_STATE(387)] = 13508, + [SMALL_STATE(388)] = 13516, + [SMALL_STATE(389)] = 13524, + [SMALL_STATE(390)] = 13532, + [SMALL_STATE(391)] = 13540, + [SMALL_STATE(392)] = 13548, + [SMALL_STATE(393)] = 13556, + [SMALL_STATE(394)] = 13564, + [SMALL_STATE(395)] = 13572, + [SMALL_STATE(396)] = 13580, + [SMALL_STATE(397)] = 13588, + [SMALL_STATE(398)] = 13596, + [SMALL_STATE(399)] = 13604, + [SMALL_STATE(400)] = 13612, + [SMALL_STATE(401)] = 13620, + [SMALL_STATE(402)] = 13628, + [SMALL_STATE(403)] = 13638, + [SMALL_STATE(404)] = 13654, + [SMALL_STATE(405)] = 13662, + [SMALL_STATE(406)] = 13670, + [SMALL_STATE(407)] = 13678, + [SMALL_STATE(408)] = 13686, + [SMALL_STATE(409)] = 13694, + [SMALL_STATE(410)] = 13702, + [SMALL_STATE(411)] = 13710, + [SMALL_STATE(412)] = 13718, + [SMALL_STATE(413)] = 13734, + [SMALL_STATE(414)] = 13750, + [SMALL_STATE(415)] = 13758, + [SMALL_STATE(416)] = 13774, + [SMALL_STATE(417)] = 13790, + [SMALL_STATE(418)] = 13804, + [SMALL_STATE(419)] = 13812, + [SMALL_STATE(420)] = 13825, + [SMALL_STATE(421)] = 13832, + [SMALL_STATE(422)] = 13845, + [SMALL_STATE(423)] = 13856, + [SMALL_STATE(424)] = 13863, + [SMALL_STATE(425)] = 13870, + [SMALL_STATE(426)] = 13877, + [SMALL_STATE(427)] = 13884, + [SMALL_STATE(428)] = 13891, + [SMALL_STATE(429)] = 13898, + [SMALL_STATE(430)] = 13909, + [SMALL_STATE(431)] = 13918, + [SMALL_STATE(432)] = 13925, + [SMALL_STATE(433)] = 13932, + [SMALL_STATE(434)] = 13941, + [SMALL_STATE(435)] = 13948, + [SMALL_STATE(436)] = 13959, + [SMALL_STATE(437)] = 13966, + [SMALL_STATE(438)] = 13977, + [SMALL_STATE(439)] = 13984, + [SMALL_STATE(440)] = 13993, + [SMALL_STATE(441)] = 14000, + [SMALL_STATE(442)] = 14007, + [SMALL_STATE(443)] = 14014, + [SMALL_STATE(444)] = 14021, + [SMALL_STATE(445)] = 14028, + [SMALL_STATE(446)] = 14041, + [SMALL_STATE(447)] = 14048, + [SMALL_STATE(448)] = 14059, + [SMALL_STATE(449)] = 14066, + [SMALL_STATE(450)] = 14073, + [SMALL_STATE(451)] = 14080, + [SMALL_STATE(452)] = 14087, + [SMALL_STATE(453)] = 14100, + [SMALL_STATE(454)] = 14107, + [SMALL_STATE(455)] = 14114, + [SMALL_STATE(456)] = 14121, + [SMALL_STATE(457)] = 14134, + [SMALL_STATE(458)] = 14147, + [SMALL_STATE(459)] = 14158, + [SMALL_STATE(460)] = 14165, + [SMALL_STATE(461)] = 14178, + [SMALL_STATE(462)] = 14189, + [SMALL_STATE(463)] = 14200, + [SMALL_STATE(464)] = 14213, + [SMALL_STATE(465)] = 14224, + [SMALL_STATE(466)] = 14237, + [SMALL_STATE(467)] = 14248, + [SMALL_STATE(468)] = 14259, + [SMALL_STATE(469)] = 14266, + [SMALL_STATE(470)] = 14279, + [SMALL_STATE(471)] = 14290, + [SMALL_STATE(472)] = 14301, + [SMALL_STATE(473)] = 14314, + [SMALL_STATE(474)] = 14327, + [SMALL_STATE(475)] = 14340, + [SMALL_STATE(476)] = 14347, + [SMALL_STATE(477)] = 14360, + [SMALL_STATE(478)] = 14373, + [SMALL_STATE(479)] = 14380, + [SMALL_STATE(480)] = 14391, + [SMALL_STATE(481)] = 14402, + [SMALL_STATE(482)] = 14413, + [SMALL_STATE(483)] = 14420, + [SMALL_STATE(484)] = 14430, + [SMALL_STATE(485)] = 14440, + [SMALL_STATE(486)] = 14450, + [SMALL_STATE(487)] = 14460, + [SMALL_STATE(488)] = 14470, + [SMALL_STATE(489)] = 14480, + [SMALL_STATE(490)] = 14490, + [SMALL_STATE(491)] = 14500, + [SMALL_STATE(492)] = 14510, + [SMALL_STATE(493)] = 14520, + [SMALL_STATE(494)] = 14530, + [SMALL_STATE(495)] = 14540, + [SMALL_STATE(496)] = 14550, + [SMALL_STATE(497)] = 14560, + [SMALL_STATE(498)] = 14570, + [SMALL_STATE(499)] = 14580, + [SMALL_STATE(500)] = 14590, + [SMALL_STATE(501)] = 14598, + [SMALL_STATE(502)] = 14608, + [SMALL_STATE(503)] = 14618, + [SMALL_STATE(504)] = 14628, + [SMALL_STATE(505)] = 14638, + [SMALL_STATE(506)] = 14648, + [SMALL_STATE(507)] = 14658, + [SMALL_STATE(508)] = 14668, + [SMALL_STATE(509)] = 14676, + [SMALL_STATE(510)] = 14686, + [SMALL_STATE(511)] = 14696, + [SMALL_STATE(512)] = 14706, + [SMALL_STATE(513)] = 14716, + [SMALL_STATE(514)] = 14726, + [SMALL_STATE(515)] = 14736, + [SMALL_STATE(516)] = 14746, + [SMALL_STATE(517)] = 14756, + [SMALL_STATE(518)] = 14766, + [SMALL_STATE(519)] = 14776, + [SMALL_STATE(520)] = 14782, + [SMALL_STATE(521)] = 14792, + [SMALL_STATE(522)] = 14802, + [SMALL_STATE(523)] = 14810, + [SMALL_STATE(524)] = 14816, + [SMALL_STATE(525)] = 14826, + [SMALL_STATE(526)] = 14836, + [SMALL_STATE(527)] = 14846, + [SMALL_STATE(528)] = 14856, + [SMALL_STATE(529)] = 14866, + [SMALL_STATE(530)] = 14876, + [SMALL_STATE(531)] = 14886, + [SMALL_STATE(532)] = 14896, + [SMALL_STATE(533)] = 14906, + [SMALL_STATE(534)] = 14916, + [SMALL_STATE(535)] = 14926, + [SMALL_STATE(536)] = 14936, + [SMALL_STATE(537)] = 14944, + [SMALL_STATE(538)] = 14954, + [SMALL_STATE(539)] = 14964, + [SMALL_STATE(540)] = 14974, + [SMALL_STATE(541)] = 14984, + [SMALL_STATE(542)] = 14994, + [SMALL_STATE(543)] = 15004, + [SMALL_STATE(544)] = 15012, + [SMALL_STATE(545)] = 15022, + [SMALL_STATE(546)] = 15032, + [SMALL_STATE(547)] = 15042, + [SMALL_STATE(548)] = 15052, + [SMALL_STATE(549)] = 15062, + [SMALL_STATE(550)] = 15072, + [SMALL_STATE(551)] = 15082, + [SMALL_STATE(552)] = 15092, + [SMALL_STATE(553)] = 15100, + [SMALL_STATE(554)] = 15110, + [SMALL_STATE(555)] = 15120, + [SMALL_STATE(556)] = 15130, + [SMALL_STATE(557)] = 15140, + [SMALL_STATE(558)] = 15150, + [SMALL_STATE(559)] = 15160, + [SMALL_STATE(560)] = 15170, + [SMALL_STATE(561)] = 15180, + [SMALL_STATE(562)] = 15190, + [SMALL_STATE(563)] = 15196, + [SMALL_STATE(564)] = 15206, + [SMALL_STATE(565)] = 15216, + [SMALL_STATE(566)] = 15226, + [SMALL_STATE(567)] = 15236, + [SMALL_STATE(568)] = 15246, + [SMALL_STATE(569)] = 15256, + [SMALL_STATE(570)] = 15266, + [SMALL_STATE(571)] = 15276, + [SMALL_STATE(572)] = 15286, + [SMALL_STATE(573)] = 15296, + [SMALL_STATE(574)] = 15306, + [SMALL_STATE(575)] = 15316, + [SMALL_STATE(576)] = 15326, + [SMALL_STATE(577)] = 15336, + [SMALL_STATE(578)] = 15344, + [SMALL_STATE(579)] = 15352, + [SMALL_STATE(580)] = 15362, + [SMALL_STATE(581)] = 15372, + [SMALL_STATE(582)] = 15382, + [SMALL_STATE(583)] = 15392, + [SMALL_STATE(584)] = 15402, + [SMALL_STATE(585)] = 15412, + [SMALL_STATE(586)] = 15422, + [SMALL_STATE(587)] = 15427, + [SMALL_STATE(588)] = 15434, + [SMALL_STATE(589)] = 15439, + [SMALL_STATE(590)] = 15444, + [SMALL_STATE(591)] = 15451, + [SMALL_STATE(592)] = 15456, + [SMALL_STATE(593)] = 15461, + [SMALL_STATE(594)] = 15466, + [SMALL_STATE(595)] = 15471, + [SMALL_STATE(596)] = 15476, + [SMALL_STATE(597)] = 15481, + [SMALL_STATE(598)] = 15488, + [SMALL_STATE(599)] = 15493, + [SMALL_STATE(600)] = 15498, + [SMALL_STATE(601)] = 15505, + [SMALL_STATE(602)] = 15512, + [SMALL_STATE(603)] = 15517, + [SMALL_STATE(604)] = 15524, + [SMALL_STATE(605)] = 15529, + [SMALL_STATE(606)] = 15534, + [SMALL_STATE(607)] = 15541, + [SMALL_STATE(608)] = 15548, + [SMALL_STATE(609)] = 15555, + [SMALL_STATE(610)] = 15562, + [SMALL_STATE(611)] = 15567, + [SMALL_STATE(612)] = 15572, + [SMALL_STATE(613)] = 15579, + [SMALL_STATE(614)] = 15586, + [SMALL_STATE(615)] = 15593, + [SMALL_STATE(616)] = 15598, + [SMALL_STATE(617)] = 15605, + [SMALL_STATE(618)] = 15610, + [SMALL_STATE(619)] = 15617, + [SMALL_STATE(620)] = 15624, + [SMALL_STATE(621)] = 15631, + [SMALL_STATE(622)] = 15638, + [SMALL_STATE(623)] = 15643, + [SMALL_STATE(624)] = 15648, + [SMALL_STATE(625)] = 15655, + [SMALL_STATE(626)] = 15660, + [SMALL_STATE(627)] = 15667, + [SMALL_STATE(628)] = 15672, + [SMALL_STATE(629)] = 15679, + [SMALL_STATE(630)] = 15684, + [SMALL_STATE(631)] = 15691, + [SMALL_STATE(632)] = 15698, + [SMALL_STATE(633)] = 15705, + [SMALL_STATE(634)] = 15710, + [SMALL_STATE(635)] = 15715, + [SMALL_STATE(636)] = 15720, + [SMALL_STATE(637)] = 15725, + [SMALL_STATE(638)] = 15730, + [SMALL_STATE(639)] = 15737, + [SMALL_STATE(640)] = 15744, + [SMALL_STATE(641)] = 15749, + [SMALL_STATE(642)] = 15754, + [SMALL_STATE(643)] = 15761, + [SMALL_STATE(644)] = 15766, + [SMALL_STATE(645)] = 15773, + [SMALL_STATE(646)] = 15778, + [SMALL_STATE(647)] = 15785, + [SMALL_STATE(648)] = 15792, + [SMALL_STATE(649)] = 15799, + [SMALL_STATE(650)] = 15804, + [SMALL_STATE(651)] = 15809, + [SMALL_STATE(652)] = 15816, + [SMALL_STATE(653)] = 15823, + [SMALL_STATE(654)] = 15830, + [SMALL_STATE(655)] = 15835, + [SMALL_STATE(656)] = 15842, + [SMALL_STATE(657)] = 15849, + [SMALL_STATE(658)] = 15856, + [SMALL_STATE(659)] = 15863, + [SMALL_STATE(660)] = 15870, + [SMALL_STATE(661)] = 15877, + [SMALL_STATE(662)] = 15884, + [SMALL_STATE(663)] = 15889, + [SMALL_STATE(664)] = 15896, + [SMALL_STATE(665)] = 15901, + [SMALL_STATE(666)] = 15908, + [SMALL_STATE(667)] = 15915, + [SMALL_STATE(668)] = 15922, + [SMALL_STATE(669)] = 15929, + [SMALL_STATE(670)] = 15936, + [SMALL_STATE(671)] = 15943, + [SMALL_STATE(672)] = 15948, + [SMALL_STATE(673)] = 15955, + [SMALL_STATE(674)] = 15960, + [SMALL_STATE(675)] = 15965, + [SMALL_STATE(676)] = 15970, + [SMALL_STATE(677)] = 15977, + [SMALL_STATE(678)] = 15984, + [SMALL_STATE(679)] = 15991, + [SMALL_STATE(680)] = 15995, + [SMALL_STATE(681)] = 15999, + [SMALL_STATE(682)] = 16003, + [SMALL_STATE(683)] = 16007, + [SMALL_STATE(684)] = 16011, + [SMALL_STATE(685)] = 16015, + [SMALL_STATE(686)] = 16019, + [SMALL_STATE(687)] = 16023, + [SMALL_STATE(688)] = 16027, + [SMALL_STATE(689)] = 16031, + [SMALL_STATE(690)] = 16035, + [SMALL_STATE(691)] = 16039, + [SMALL_STATE(692)] = 16043, + [SMALL_STATE(693)] = 16047, + [SMALL_STATE(694)] = 16051, + [SMALL_STATE(695)] = 16055, + [SMALL_STATE(696)] = 16059, + [SMALL_STATE(697)] = 16063, + [SMALL_STATE(698)] = 16067, + [SMALL_STATE(699)] = 16071, + [SMALL_STATE(700)] = 16075, + [SMALL_STATE(701)] = 16079, + [SMALL_STATE(702)] = 16083, + [SMALL_STATE(703)] = 16087, + [SMALL_STATE(704)] = 16091, + [SMALL_STATE(705)] = 16095, + [SMALL_STATE(706)] = 16099, + [SMALL_STATE(707)] = 16103, + [SMALL_STATE(708)] = 16107, + [SMALL_STATE(709)] = 16111, + [SMALL_STATE(710)] = 16115, + [SMALL_STATE(711)] = 16119, + [SMALL_STATE(712)] = 16123, + [SMALL_STATE(713)] = 16127, + [SMALL_STATE(714)] = 16131, + [SMALL_STATE(715)] = 16135, + [SMALL_STATE(716)] = 16139, + [SMALL_STATE(717)] = 16143, + [SMALL_STATE(718)] = 16147, + [SMALL_STATE(719)] = 16151, + [SMALL_STATE(720)] = 16155, + [SMALL_STATE(721)] = 16159, + [SMALL_STATE(722)] = 16163, + [SMALL_STATE(723)] = 16167, + [SMALL_STATE(724)] = 16171, + [SMALL_STATE(725)] = 16175, + [SMALL_STATE(726)] = 16179, + [SMALL_STATE(727)] = 16183, + [SMALL_STATE(728)] = 16187, + [SMALL_STATE(729)] = 16191, + [SMALL_STATE(730)] = 16195, + [SMALL_STATE(731)] = 16199, + [SMALL_STATE(732)] = 16203, + [SMALL_STATE(733)] = 16207, + [SMALL_STATE(734)] = 16211, + [SMALL_STATE(735)] = 16215, + [SMALL_STATE(736)] = 16219, + [SMALL_STATE(737)] = 16223, + [SMALL_STATE(738)] = 16227, + [SMALL_STATE(739)] = 16231, + [SMALL_STATE(740)] = 16235, + [SMALL_STATE(741)] = 16239, + [SMALL_STATE(742)] = 16243, + [SMALL_STATE(743)] = 16247, + [SMALL_STATE(744)] = 16251, + [SMALL_STATE(745)] = 16255, + [SMALL_STATE(746)] = 16259, + [SMALL_STATE(747)] = 16263, + [SMALL_STATE(748)] = 16267, + [SMALL_STATE(749)] = 16271, + [SMALL_STATE(750)] = 16275, + [SMALL_STATE(751)] = 16279, + [SMALL_STATE(752)] = 16283, + [SMALL_STATE(753)] = 16287, + [SMALL_STATE(754)] = 16291, + [SMALL_STATE(755)] = 16295, + [SMALL_STATE(756)] = 16299, + [SMALL_STATE(757)] = 16303, + [SMALL_STATE(758)] = 16307, + [SMALL_STATE(759)] = 16311, + [SMALL_STATE(760)] = 16315, + [SMALL_STATE(761)] = 16319, + [SMALL_STATE(762)] = 16323, + [SMALL_STATE(763)] = 16327, + [SMALL_STATE(764)] = 16331, + [SMALL_STATE(765)] = 16335, + [SMALL_STATE(766)] = 16339, + [SMALL_STATE(767)] = 16343, + [SMALL_STATE(768)] = 16347, + [SMALL_STATE(769)] = 16351, + [SMALL_STATE(770)] = 16355, + [SMALL_STATE(771)] = 16359, + [SMALL_STATE(772)] = 16363, + [SMALL_STATE(773)] = 16367, + [SMALL_STATE(774)] = 16371, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template, 0, 0, 0), - [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [39] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_repeat1, 2, 0, 0), - [41] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_repeat1, 2, 0, 0), SHIFT_REPEAT(647), - [44] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_repeat1, 2, 0, 0), SHIFT_REPEAT(596), - [47] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_repeat1, 2, 0, 0), SHIFT_REPEAT(615), - [50] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_repeat1, 2, 0, 0), SHIFT_REPEAT(610), - [53] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_template_repeat1, 2, 0, 0), SHIFT_REPEAT(782), - [56] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_repeat1, 2, 0, 0), SHIFT_REPEAT(699), - [59] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_repeat1, 2, 0, 0), SHIFT_REPEAT(91), - [62] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_repeat1, 2, 0, 0), SHIFT_REPEAT(364), - [65] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_template_repeat1, 2, 0, 0), SHIFT_REPEAT(534), - [68] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_repeat1, 2, 0, 0), SHIFT_REPEAT(263), - [71] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_repeat1, 2, 0, 0), SHIFT_REPEAT(125), - [74] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_repeat1, 2, 0, 0), SHIFT_REPEAT(279), - [77] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_repeat1, 2, 0, 0), SHIFT_REPEAT(282), - [80] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_repeat1, 2, 0, 0), SHIFT_REPEAT(644), - [83] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_repeat1, 2, 0, 0), SHIFT_REPEAT(320), - [86] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_repeat1, 2, 0, 0), SHIFT_REPEAT(328), - [89] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_repeat1, 2, 0, 0), SHIFT_REPEAT(491), - [92] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template, 1, 0, 0), - [94] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 0), - [96] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 0), - [98] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_closing_function_tag, 4, 0, 0), - [100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_self_closing_function_tag, 4, 0, 0), SHIFT(757), - [103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_self_closing_function_tag, 4, 0, 0), SHIFT(103), - [106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_self_closing_function_tag, 4, 0, 0), SHIFT(370), - [109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_self_closing_function_tag, 4, 0, 0), SHIFT(539), - [112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_self_closing_function_tag, 4, 0, 0), SHIFT(273), - [115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_self_closing_function_tag, 4, 0, 0), SHIFT(177), - [118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_self_closing_function_tag, 4, 0, 0), SHIFT(393), - [121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_self_closing_function_tag, 4, 0, 0), SHIFT(394), - [124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_self_closing_function_tag, 4, 0, 0), SHIFT(664), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_self_closing_function_tag, 4, 0, 0), SHIFT(410), - [132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_self_closing_function_tag, 4, 0, 0), SHIFT(411), - [135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_self_closing_function_tag, 4, 0, 0), SHIFT(488), - [138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, 0, 0), - [140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 3, 0, 0), - [146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 3, 0, 0), - [148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 3, 0, 0), - [152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 0), - [154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 0), - [156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_closing_function_tag, 3, 0, 0), - [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_self_closing_function_tag, 3, 0, 0), SHIFT(757), - [161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_self_closing_function_tag, 3, 0, 0), SHIFT(103), - [164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_self_closing_function_tag, 3, 0, 0), SHIFT(370), - [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_self_closing_function_tag, 3, 0, 0), SHIFT(539), - [170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_self_closing_function_tag, 3, 0, 0), SHIFT(273), - [173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_self_closing_function_tag, 3, 0, 0), SHIFT(177), - [176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_self_closing_function_tag, 3, 0, 0), SHIFT(393), - [179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_self_closing_function_tag, 3, 0, 0), SHIFT(394), - [182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_self_closing_function_tag, 3, 0, 0), SHIFT(664), - [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_self_closing_function_tag, 3, 0, 0), SHIFT(410), - [190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_self_closing_function_tag, 3, 0, 0), SHIFT(411), - [193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_self_closing_function_tag, 3, 0, 0), SHIFT(488), - [196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 0), - [198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 0), - [200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_html_element, 3, 0, 0), - [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_html_element, 3, 0, 0), SHIFT(726), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_html_element, 3, 0, 0), SHIFT(103), - [210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_html_element, 3, 0, 0), SHIFT(370), - [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_html_element, 3, 0, 0), SHIFT(539), - [216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_html_element, 3, 0, 0), SHIFT(273), - [219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_html_element, 3, 0, 0), SHIFT(177), - [222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_html_element, 3, 0, 0), SHIFT(393), - [225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_html_element, 3, 0, 0), SHIFT(394), - [228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_html_element, 3, 0, 0), SHIFT(649), - [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_html_element, 3, 0, 0), SHIFT(410), - [234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_html_element, 3, 0, 0), SHIFT(411), - [237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_html_element, 3, 0, 0), SHIFT(488), - [240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_html_element, 4, 0, 0), - [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_html_element, 4, 0, 0), SHIFT(726), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_html_element, 4, 0, 0), SHIFT(103), - [250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_html_element, 4, 0, 0), SHIFT(370), - [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_html_element, 4, 0, 0), SHIFT(539), - [256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_html_element, 4, 0, 0), SHIFT(273), - [259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_html_element, 4, 0, 0), SHIFT(177), - [262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_html_element, 4, 0, 0), SHIFT(393), - [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_html_element, 4, 0, 0), SHIFT(394), - [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_html_element, 4, 0, 0), SHIFT(649), - [271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_html_element, 4, 0, 0), SHIFT(410), - [274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_html_element, 4, 0, 0), SHIFT(411), - [277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_html_element, 4, 0, 0), SHIFT(488), - [280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer_literal, 1, 0, 0), - [282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer_literal, 1, 0, 0), - [284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number_literal, 1, 0, 0), - [286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number_literal, 1, 0, 0), - [288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), - [294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), - [296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal, 1, 0, 0), - [306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal, 1, 0, 0), - [308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), - [310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), - [312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), - [314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), - [316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), - [318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), - [320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), - [326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), - [328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3, 0, 0), - [330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3, 0, 0), - [332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), - [334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), - [336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), - [338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), - [340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_call, 5, 0, 0), - [342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_call, 5, 0, 0), - [344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rust_path, 1, 0, 0), - [346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rust_path, 1, 0, 0), - [348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_call, 6, 0, 0), - [350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_call, 6, 0, 0), - [352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_access, 4, 0, 0), - [354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_access, 4, 0, 0), - [356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_content_block, 2, 0, 0), - [358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_content_block, 2, 0, 0), - [360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_content_block, 3, 0, 0), - [362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_content_block, 3, 0, 0), - [364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_statement, 4, 0, 0), - [366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_statement, 4, 0, 0), - [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), - [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), - [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), - [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), - [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), - [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_self_closing_function_tag, 4, 0, 0), - [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_self_closing_function_tag, 3, 0, 0), - [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), - [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), - [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_content_block_repeat1, 2, 0, 0), SHIFT_REPEAT(757), - [501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_content_block_repeat1, 2, 0, 0), SHIFT_REPEAT(103), - [504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_content_block_repeat1, 2, 0, 0), SHIFT_REPEAT(370), - [507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_content_block_repeat1, 2, 0, 0), SHIFT_REPEAT(539), - [510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_content_block_repeat1, 2, 0, 0), SHIFT_REPEAT(273), - [513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_content_block_repeat1, 2, 0, 0), SHIFT_REPEAT(177), - [516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_content_block_repeat1, 2, 0, 0), SHIFT_REPEAT(393), - [519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_content_block_repeat1, 2, 0, 0), SHIFT_REPEAT(394), - [522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_content_block_repeat1, 2, 0, 0), SHIFT_REPEAT(664), - [525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_content_block_repeat1, 2, 0, 0), - [527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_content_block_repeat1, 2, 0, 0), SHIFT_REPEAT(410), - [530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_content_block_repeat1, 2, 0, 0), SHIFT_REPEAT(411), - [533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_content_block_repeat1, 2, 0, 0), SHIFT_REPEAT(488), - [536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_html_element, 3, 0, 0), SHIFT(741), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_html_element, 4, 0, 0), SHIFT(744), - [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_self_closing_function_tag, 3, 0, 0), SHIFT(680), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_self_closing_function_tag, 4, 0, 0), SHIFT(659), - [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_content_block_repeat1, 2, 0, 0), SHIFT_REPEAT(649), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_content_block_repeat1, 2, 0, 0), SHIFT_REPEAT(726), - [620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_repeat1, 2, 0, 0), SHIFT_REPEAT(227), - [623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_repeat1, 2, 0, 0), SHIFT_REPEAT(195), - [626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_repeat1, 2, 0, 0), - [628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_repeat1, 2, 0, 0), SHIFT_REPEAT(206), - [631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_repeat1, 2, 0, 0), SHIFT_REPEAT(193), - [634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_repeat1, 2, 0, 0), SHIFT_REPEAT(256), - [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(280), - [700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), - [702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(254), - [705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(525), - [708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(573), - [711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(662), - [714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(211), - [717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(211), - [720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(213), - [723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(214), - [726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(505), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_path_repeat1, 2, 0, 0), - [741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_path_repeat1, 2, 0, 0), SHIFT_REPEAT(54), - [744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_path_repeat1, 2, 0, 0), SHIFT_REPEAT(121), - [747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expression_path_repeat1, 2, 0, 0), - [749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_path_repeat1, 2, 0, 0), SHIFT_REPEAT(765), - [752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 0), - [754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 0), - [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_path, 2, 0, 0), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_path, 2, 0, 0), - [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 0), - [770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 0), - [772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 0), - [774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 0), - [776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_path, 1, 0, 0), - [778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_path, 1, 0, 0), - [780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path_type, 1, 0, 0), - [782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_type, 1, 0, 0), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 0), - [788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 0), - [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_path_repeat1, 3, 0, 0), - [794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expression_path_repeat1, 3, 0, 0), - [796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive_type, 1, 0, 0), - [798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_type, 1, 0, 0), - [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_expression, 1, 0, 0), - [820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_expression, 1, 0, 0), - [822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rust_type, 1, 0, 0), - [824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rust_type, 1, 0, 0), - [826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_repeat1, 1, 0, 0), - [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_repeat1, 1, 0, 0), - [832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2, 0, 0), - [834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2, 0, 0), - [836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, 0, 0), - [838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, 0, 0), - [840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), - [842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), - [844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_type, 3, 0, 0), - [846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_type, 3, 0, 0), - [848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, 0, 0), - [850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, 0, 0), - [852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), - [854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), - [856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 4, 0, 0), - [858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 4, 0, 0), - [860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), - [862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), - [864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 0), - [866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 0), - [868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 5, 0, 0), - [870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 5, 0, 0), - [872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 0), - [874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 0), - [876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(776), - [879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1, 0, 0), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 1, 0, 0), - [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_repeat1, 2, 0, 0), - [889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1, 0, 0), - [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 1, 0, 0), - [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 1, 0, 0), - [913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_path_repeat1, 2, 0, 0), SHIFT_REPEAT(82), - [916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_path_repeat1, 2, 0, 0), SHIFT_REPEAT(164), - [919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_path_repeat1, 2, 0, 0), SHIFT_REPEAT(781), - [922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_literal_repeat1, 2, 0, 0), - [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if_branch, 7, 0, 0), - [930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if_branch, 7, 0, 0), - [932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 0), - [934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 0), - [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if_branch, 4, 0, 0), - [940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if_branch, 4, 0, 0), - [942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_statement, 2, 0, 0), - [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_statement, 2, 0, 0), - [948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 0), - [950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 0), - [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_html_element, 6, 0, 0), - [960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_html_element, 6, 0, 0), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_definition, 6, 0, 0), - [966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_definition, 6, 0, 0), - [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_container_function_tag, 6, 0, 0), - [970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_container_function_tag, 6, 0, 0), - [972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_definition, 7, 0, 0), - [974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_definition, 7, 0, 0), - [976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_definition, 7, 0, 0), - [978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_definition, 7, 0, 0), - [980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_html_element, 7, 0, 0), - [982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_html_element, 7, 0, 0), - [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_loop, 7, 0, 0), - [988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_loop, 7, 0, 0), - [990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_safe_expression, 7, 0, 0), - [992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_safe_expression, 7, 0, 0), - [994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_container_function_tag, 7, 0, 0), - [996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_container_function_tag, 7, 0, 0), - [998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_html_element, 8, 0, 0), - [1000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_html_element, 8, 0, 0), - [1002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_value, 1, 0, 0), - [1004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, 0, 0), - [1006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, 0, 0), - [1008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_container_function_tag, 8, 0, 0), - [1010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_container_function_tag, 8, 0, 0), - [1012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 1, 0, 0), - [1014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment, 1, 0, 0), - [1016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_statement, 4, 0, 0), - [1018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_statement, 4, 0, 0), - [1020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 0), - [1022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 0), - [1024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_definition, 4, 0, 0), - [1026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_definition, 4, 0, 0), - [1028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_definition, 4, 0, 0), - [1030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_definition, 4, 0, 0), - [1032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_node, 1, 0, 0), - [1034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_node, 1, 0, 0), - [1036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_html_element, 4, 0, 0), - [1038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(751), - [1041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 0), - [1043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 0), - [1045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_definition, 6, 0, 0), - [1047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_definition, 6, 0, 0), - [1049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_element, 1, 0, 0), - [1051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_element, 1, 0, 0), - [1053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_expression, 1, 0, 0), - [1055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_expression, 1, 0, 0), - [1057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_control_flow, 1, 0, 0), - [1059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_control_flow, 1, 0, 0), - [1061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_tag, 1, 0, 0), - [1063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_tag, 1, 0, 0), - [1065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expression, 2, 0, 0), - [1067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expression, 2, 0, 0), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [1071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_expression, 4, 0, 0), - [1073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_expression, 4, 0, 0), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [1079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), - [1081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), - [1083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, 0, 0), - [1085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, 0, 0), - [1087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), - [1089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), - [1091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 4, 0, 0), - [1093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 4, 0, 0), - [1095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 4, 0, 0), - [1097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 4, 0, 0), - [1099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_embedded_language, 4, 0, 0), - [1101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_embedded_language, 4, 0, 0), - [1103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_definition, 5, 0, 0), - [1105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_definition, 5, 0, 0), - [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [1109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_definition, 5, 0, 0), - [1111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_definition, 5, 0, 0), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [1119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_html_element, 5, 0, 0), - [1121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_html_element, 5, 0, 0), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [1127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_branch, 2, 0, 0), - [1129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_branch, 2, 0, 0), - [1131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 0), - [1133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 0), - [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [1137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_loop, 5, 0, 0), - [1139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_loop, 5, 0, 0), - [1141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_safe_expression, 5, 0, 0), - [1143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_safe_expression, 5, 0, 0), - [1145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 0), - [1147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 0), - [1149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_closing_function_tag, 5, 0, 0), - [1151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_self_closing_function_tag, 5, 0, 0), - [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [1215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 1, 0, 0), - [1217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 1, 0, 0), - [1219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 1, 0, 0), - [1221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 1, 0, 0), - [1223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 0), - [1225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 0), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [1229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 0), - [1231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 0), - [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [1235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 0), - [1237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 0), - [1239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 6, 0, 0), - [1241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 6, 0, 0), - [1243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_html_element_repeat1, 2, 0, 0), - [1245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_html_element_repeat1, 2, 0, 0), SHIFT_REPEAT(112), - [1248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_html_element_repeat1, 2, 0, 0), SHIFT_REPEAT(367), - [1251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_html_element_repeat1, 2, 0, 0), SHIFT_REPEAT(497), - [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [1284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_path_repeat1, 2, 0, 0), SHIFT_REPEAT(84), - [1287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_path_repeat1, 2, 0, 0), SHIFT_REPEAT(174), - [1290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_path_repeat1, 2, 0, 0), SHIFT_REPEAT(695), - [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [1333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_self_closing_function_tag_repeat1, 2, 0, 0), - [1335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_self_closing_function_tag_repeat1, 2, 0, 0), SHIFT_REPEAT(655), - [1338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_self_closing_function_tag_repeat1, 2, 0, 0), SHIFT_REPEAT(527), - [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [1343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_path_repeat1, 2, 0, 0), SHIFT_REPEAT(48), - [1346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_path_repeat1, 2, 0, 0), SHIFT_REPEAT(176), - [1349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_path_repeat1, 2, 0, 0), SHIFT_REPEAT(714), - [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_if_statement, 4, 0, 0), - [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_if_statement, 4, 0, 0), - [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_html_attribute, 1, 0, 0), - [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_html_attribute, 1, 0, 0), - [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_if_statement, 5, 0, 0), - [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_if_statement, 5, 0, 0), - [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, 0, 0), - [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 5, 0, 0), - [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_or_control, 1, 0, 0), - [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_or_control, 1, 0, 0), - [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_if_statement, 7, 0, 0), - [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_if_statement, 7, 0, 0), - [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_for_loop, 7, 0, 0), - [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_for_loop, 7, 0, 0), - [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_if_statement, 8, 0, 0), - [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_if_statement, 8, 0, 0), - [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_pattern, 1, 0, 0), - [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier_pattern, 1, 0, 0), - [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), - [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 3, 0, 0), - [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_if_statement, 9, 0, 0), - [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_if_statement, 9, 0, 0), - [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_control_flow, 1, 0, 0), - [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_control_flow, 1, 0, 0), - [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_html_attribute, 3, 0, 0), - [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_html_attribute, 3, 0, 0), - [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_value, 1, 0, 0), - [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_value, 1, 0, 0), - [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_for_loop, 6, 0, 0), - [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_for_loop, 6, 0, 0), - [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 0), - [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 4, 0, 0), - [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_value, 4, 0, 0), - [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_value, 4, 0, 0), - [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), - [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), - [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 0), - [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, 0, 0), - [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_attribute, 1, 0, 0), - [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 0), - [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, 0, 0), - [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 0), - [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, 0, 0), - [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), - [1494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(532), - [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, 0, 0), - [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), - [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), - [1513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(535), - [1516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(535), - [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_definition_repeat1, 2, 0, 0), - [1521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(599), - [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), - [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_definition_repeat1, 2, 0, 0), - [1548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(548), - [1551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_reference, 2, 0, 0), - [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, 0, 0), - [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [1565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 1, 0, 0), - [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_attribute, 1, 0, 0), - [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_path, 1, 0, 0), - [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [1575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(151), - [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 0), - [1582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_params_repeat1, 2, 0, 0), SHIFT_REPEAT(715), - [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_params_repeat1, 2, 0, 0), - [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), - [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), - [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [1615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_reference, 3, 0, 0), - [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_attribute_value, 1, 0, 0), - [1619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_function_attribute, 3, 0, 0), - [1621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_attribute_value, 2, 0, 0), - [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [1633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_type_repeat1, 2, 0, 0), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [1641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 0), - [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [1669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 0), - [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [1673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(671), - [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), - [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_params, 1, 0, 0), - [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 0), - [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_params, 2, 0, 0), - [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), - [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_field, 4, 0, 0), - [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [1752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(264), - [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), - [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [1759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_type_repeat1, 2, 0, 0), SHIFT_REPEAT(203), - [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [1764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_type_repeat1, 2, 0, 0), SHIFT_REPEAT(204), - [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [1769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_field, 3, 0, 0), - [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [1779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), SHIFT_REPEAT(652), - [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), - [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, 0, 0), - [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 3, 0, 0), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [1820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 4, 0, 0), - [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, 0, 0), - [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 0), - [1836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_field, 5, 0, 0), - [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, 0, 0), - [1840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 2, 0, 0), - [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_language_name, 1, 0, 0), - [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 0), - [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_pattern, 1, 0, 0), - [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [1908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_params, 4, 0, 0), - [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 5, 0, 0), - [1996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_params, 3, 0, 0), - [1998] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [2008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), - [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [2012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), - [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [27] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_type, 2, 0, 0), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [43] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template, 1, 0, 0), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [47] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_closure_type, 2, 0, 0), SHIFT(707), + [50] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_repeat1, 2, 0, 0), + [52] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_template_repeat1, 2, 0, 0), SHIFT_REPEAT(174), + [55] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_template_repeat1, 2, 0, 0), SHIFT_REPEAT(621), + [58] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_repeat1, 2, 0, 0), SHIFT_REPEAT(272), + [61] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_repeat1, 2, 0, 0), SHIFT_REPEAT(608), + [64] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_repeat1, 2, 0, 0), SHIFT_REPEAT(246), + [67] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_repeat1, 2, 0, 0), SHIFT_REPEAT(250), + [70] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_repeat1, 2, 0, 0), SHIFT_REPEAT(243), + [73] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_repeat1, 2, 0, 0), SHIFT_REPEAT(340), + [76] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_repeat1, 2, 0, 0), SHIFT_REPEAT(258), + [79] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_closure_type, 2, 0, 0), SHIFT(452), + [82] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_closure_type, 2, 0, 0), SHIFT(277), + [85] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_closure_type, 2, 0, 0), SHIFT(17), + [88] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_closure_type, 2, 0, 0), SHIFT(39), + [91] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_closure_type, 2, 0, 0), SHIFT(32), + [94] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_closure_type, 2, 0, 0), SHIFT(7), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [99] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_closure_type, 2, 0, 0), SHIFT(337), + [102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_repeat1, 2, 0, 0), SHIFT_REPEAT(460), + [107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_repeat1, 2, 0, 0), SHIFT_REPEAT(79), + [110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_repeat1, 2, 0, 0), SHIFT_REPEAT(26), + [113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_repeat1, 2, 0, 0), + [115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_repeat1, 2, 0, 0), SHIFT_REPEAT(49), + [118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_repeat1, 2, 0, 0), SHIFT_REPEAT(29), + [121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_repeat1, 2, 0, 0), SHIFT_REPEAT(13), + [124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_repeat1, 2, 0, 0), SHIFT_REPEAT(155), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__template_nodes, 2, 0, 0), SHIFT_REPEAT(273), + [176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__template_nodes, 2, 0, 0), + [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__template_nodes, 2, 0, 0), SHIFT_REPEAT(621), + [181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__template_nodes, 2, 0, 0), + [183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__template_nodes, 2, 0, 0), SHIFT_REPEAT(272), + [186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__template_nodes, 2, 0, 0), SHIFT_REPEAT(608), + [189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__template_nodes, 2, 0, 0), SHIFT_REPEAT(246), + [192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__template_nodes, 2, 0, 0), SHIFT_REPEAT(250), + [195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__template_nodes, 2, 0, 0), SHIFT_REPEAT(243), + [198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__template_nodes, 2, 0, 0), SHIFT_REPEAT(340), + [201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__template_nodes, 2, 0, 0), SHIFT_REPEAT(258), + [204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), + [214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rust_path, 1, 0, 0), + [284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rust_path, 1, 0, 0), + [286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(277), + [291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), + [293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(168), + [296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(662), + [299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(469), + [302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(670), + [305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(593), + [308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(593), + [311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(594), + [314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(595), + [317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(635), + [320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), + [350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_type, 1, 0, 0), + [352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path_type, 1, 0, 0), + [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_type, 4, 0, 0), + [366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_type, 4, 0, 0), + [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_type, 3, 0, 0), + [372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_type, 3, 0, 0), + [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), + [378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 4, 0, 0), + [382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 4, 0, 0), + [384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_render_type, 5, 0, 0), + [386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_render_type, 5, 0, 0), + [388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), + [390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), + [392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 0), + [394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 0), + [396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_type, 5, 0, 0), + [398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_type, 5, 0, 0), + [400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, 0, 0), + [402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, 0, 0), + [404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 5, 0, 0), + [406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 5, 0, 0), + [408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_render_type, 6, 0, 0), + [410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_render_type, 6, 0, 0), + [412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_type, 6, 0, 0), + [414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_type, 6, 0, 0), + [416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_render_type, 3, 0, 0), + [418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_render_type, 3, 0, 0), + [420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), + [422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), + [424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_type, 3, 0, 0), + [426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_type, 3, 0, 0), + [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_repeat1, 1, 0, 0), + [442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_repeat1, 1, 0, 0), + [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rust_type, 1, 0, 0), + [454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rust_type, 1, 0, 0), + [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, 0, 0), + [462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, 0, 0), + [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_out_type, 2, 0, 0), + [478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_out_type, 2, 0, 0), + [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_render_type, 4, 0, 0), + [490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_render_type, 4, 0, 0), + [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), + [498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), + [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2, 0, 0), + [522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2, 0, 0), + [524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_type, 1, 0, 0), + [526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive_type, 1, 0, 0), + [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_expression, 1, 0, 0), + [532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_expression, 1, 0, 0), + [534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target_type, 2, 0, 0), + [536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target_type, 2, 0, 0), + [538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_repeat1, 2, 0, 0), + [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_path, 1, 0, 0), + [590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_path, 1, 0, 0), + [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_content_block, 3, 0, 0), + [602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_content_block, 3, 0, 0), + [604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_path_repeat1, 2, 0, 0), + [606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expression_path_repeat1, 2, 0, 0), + [608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_path_repeat1, 2, 0, 0), SHIFT_REPEAT(78), + [611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_path_repeat1, 2, 0, 0), SHIFT_REPEAT(111), + [614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_path_repeat1, 2, 0, 0), SHIFT_REPEAT(702), + [617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, 0, 0), + [619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, 0, 0), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 0), + [625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 0), + [627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_content_block, 2, 0, 0), + [629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_content_block, 2, 0, 0), + [631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 0), + [633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 0), + [635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_path, 3, 0, 0), + [637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_path, 3, 0, 0), + [639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 0), + [641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 0), + [643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_path, 2, 0, 0), + [645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_path, 2, 0, 0), + [647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_path_repeat1, 3, 0, 0), + [649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expression_path_repeat1, 3, 0, 0), + [651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), + [653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), + [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 0), + [661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 0), + [663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(728), + [666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), + [668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), + [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), + [676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_block, 4, 0, 0), + [684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_block, 4, 0, 0), + [686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_render_closure, 4, 0, 0), + [688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_render_closure, 4, 0, 0), + [690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inferred_enum_struct, 4, 0, 0), + [692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inferred_enum_struct, 4, 0, 0), + [694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inferred_enum_call, 4, 0, 0), + [696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inferred_enum_call, 4, 0, 0), + [698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 0), + [700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 0), + [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_render_closure, 5, 0, 0), + [706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_render_closure, 5, 0, 0), + [708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inferred_enum_struct, 5, 0, 0), + [710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inferred_enum_struct, 5, 0, 0), + [712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_render_closure, 6, 0, 0), + [714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_render_closure, 6, 0, 0), + [716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inferred_enum_struct, 6, 0, 0), + [718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inferred_enum_struct, 6, 0, 0), + [720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if_branch, 7, 0, 0), + [722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if_branch, 7, 0, 0), + [724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 0), + [726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 0), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), + [732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), + [734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), + [736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), + [738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer_literal, 1, 0, 0), + [740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer_literal, 1, 0, 0), + [742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number_literal, 1, 0, 0), + [744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number_literal, 1, 0, 0), + [746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_statement, 5, 0, 0), + [752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_statement, 5, 0, 0), + [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if_branch, 4, 0, 0), + [762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if_branch, 4, 0, 0), + [764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 4, 0, 0), + [766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 4, 0, 0), + [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal, 1, 0, 0), + [772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal, 1, 0, 0), + [774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_block, 3, 0, 0), + [776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_block, 3, 0, 0), + [778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inferred_enum_struct, 3, 0, 0), + [780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inferred_enum_struct, 3, 0, 0), + [782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 4, 0, 0), + [784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 4, 0, 0), + [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inferred_enum_call, 3, 0, 0), + [790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inferred_enum_call, 3, 0, 0), + [792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3, 0, 0), + [794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3, 0, 0), + [796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 6, 0, 0), + [798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 6, 0, 0), + [800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_expression, 4, 0, 0), + [802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_expression, 4, 0, 0), + [804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_out_ref, 2, 0, 0), + [806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_out_ref, 2, 0, 0), + [808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_safe_expression, 7, 0, 0), + [810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_safe_expression, 7, 0, 0), + [812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target_ref, 2, 0, 0), + [814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target_ref, 2, 0, 0), + [816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_matches_expression, 7, 0, 0), + [818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_matches_expression, 7, 0, 0), + [820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_loop, 8, 0, 0), + [822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_loop, 8, 0, 0), + [824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 0), + [826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 0), + [828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_html_element, 4, 0, 0), + [830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_html_element, 4, 0, 0), + [832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_html_element, 8, 0, 0), + [834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_html_element, 8, 0, 0), + [836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expression, 2, 0, 0), + [838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expression, 2, 0, 0), + [840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_closing_function_tag, 4, 0, 0), + [842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_self_closing_function_tag, 4, 0, 0), + [844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_embedded_language, 4, 0, 0), + [846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_embedded_language, 4, 0, 0), + [848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_container_function_tag, 8, 0, 0), + [850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_container_function_tag, 8, 0, 0), + [852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_block, 1, 0, 0), + [854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_block, 1, 0, 0), + [856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_comment, 1, 0, 0), + [858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_comment, 1, 0, 0), + [860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_html_element, 7, 0, 0), + [862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_html_element, 7, 0, 0), + [864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_expression, 5, 0, 0), + [866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_expression, 5, 0, 0), + [868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_container_function_tag, 7, 0, 0), + [870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_container_function_tag, 7, 0, 0), + [872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 1, 0, 0), + [874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment, 1, 0, 0), + [876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9, 0, 0), + [878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 9, 0, 0), + [880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 0), + [882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 0), + [884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 5, 0, 0), + [886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 5, 0, 0), + [888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 5, 0, 0), + [890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 5, 0, 0), + [892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_matches_expression, 9, 0, 0), + [894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_matches_expression, 9, 0, 0), + [896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_html_element, 5, 0, 0), + [898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_html_element, 5, 0, 0), + [900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_closing_function_tag, 5, 0, 0), + [902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_self_closing_function_tag, 5, 0, 0), + [904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_node, 1, 0, 0), + [906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_node, 1, 0, 0), + [908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_branch, 2, 0, 0), + [910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_branch, 2, 0, 0), + [912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 0), + [914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 0), + [916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 0), + [918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 0), + [920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 0), + [922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 0), + [924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_loop, 6, 0, 0), + [926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_loop, 6, 0, 0), + [928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_expression, 6, 0, 0), + [930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_expression, 6, 0, 0), + [932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_statement, 6, 0, 0), + [934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_statement, 6, 0, 0), + [936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_expression, 1, 0, 0), + [938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_expression, 1, 0, 0), + [940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 6, 0, 0), + [942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 6, 0, 0), + [944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_control_flow, 1, 0, 0), + [946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_control_flow, 1, 0, 0), + [948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_html_element, 6, 0, 0), + [950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_html_element, 6, 0, 0), + [952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_tag, 1, 0, 0), + [954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_tag, 1, 0, 0), + [956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_container_function_tag, 6, 0, 0), + [958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_container_function_tag, 6, 0, 0), + [960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expression, 1, 0, 0), + [962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expression, 1, 0, 0), + [964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_html_element, 3, 0, 0), + [966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_html_element, 3, 0, 0), + [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_safe_expression, 5, 0, 0), + [970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_safe_expression, 5, 0, 0), + [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_statement, 3, 0, 0), + [978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_statement, 3, 0, 0), + [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 0), + [984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 0), + [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_html_element_repeat1, 2, 0, 0), SHIFT_REPEAT(528), + [991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_html_element_repeat1, 2, 0, 0), + [993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_html_element_repeat1, 2, 0, 0), SHIFT_REPEAT(378), + [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [1004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 0), + [1006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 0), + [1008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_definition, 6, 0, 0), + [1010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_definition, 6, 0, 0), + [1012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_definition, 6, 0, 0), + [1014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_definition, 6, 0, 0), + [1016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_element, 1, 0, 0), + [1018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_element, 1, 0, 0), + [1020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_definition, 5, 0, 0), + [1022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_definition, 5, 0, 0), + [1024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 0), + [1026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 0), + [1028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_definition, 8, 0, 0), + [1030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_definition, 8, 0, 0), + [1032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_definition, 5, 0, 0), + [1034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_definition, 5, 0, 0), + [1036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_definition, 7, 0, 0), + [1038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_definition, 7, 0, 0), + [1040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_definition, 8, 0, 0), + [1042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_definition, 8, 0, 0), + [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [1052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_statement, 5, 0, 0), + [1054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_statement, 5, 0, 0), + [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_definition, 7, 0, 0), + [1058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_definition, 7, 0, 0), + [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [1092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_path_repeat1, 2, 0, 0), SHIFT_REPEAT(83), + [1095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_path_repeat1, 2, 0, 0), SHIFT_REPEAT(146), + [1098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_path_repeat1, 2, 0, 0), SHIFT_REPEAT(693), + [1101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_self_closing_function_tag_repeat1, 2, 0, 0), SHIFT_REPEAT(603), + [1104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_self_closing_function_tag_repeat1, 2, 0, 0), + [1106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_self_closing_function_tag_repeat1, 2, 0, 0), SHIFT_REPEAT(380), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [1141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_path_repeat1, 2, 0, 0), SHIFT_REPEAT(80), + [1144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_path_repeat1, 2, 0, 0), SHIFT_REPEAT(157), + [1147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_path_repeat1, 2, 0, 0), SHIFT_REPEAT(686), + [1150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_if_statement, 5, 0, 0), + [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_if_statement, 5, 0, 0), + [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_if_statement, 6, 0, 0), + [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_if_statement, 6, 0, 0), + [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_name, 2, 0, 0), + [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [1174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_html_attribute, 1, 0, 0), + [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_name, 1, 0, 0), + [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_or_control, 1, 0, 0), + [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_attribute, 1, 0, 0), + [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_value, 4, 0, 0), + [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), + [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_for_loop, 7, 0, 0), + [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_if_statement, 8, 0, 0), + [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_for_loop, 8, 0, 0), + [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_html_attribute, 3, 0, 0), + [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_value, 1, 0, 0), + [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_if_statement, 9, 0, 0), + [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_if_statement, 10, 0, 0), + [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, 0, 0), + [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, 0, 0), + [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 0), + [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_pattern, 1, 0, 0), + [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_control_flow, 1, 0, 0), + [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), + [1248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(402), + [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 0), + [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [1265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_variant_pattern, 5, 0, 0), + [1267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_path, 1, 0, 0), + [1269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_reference, 3, 0, 0), + [1271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 0), + [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [1277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 1, 0, 0), + [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [1281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_attribute_value, 1, 0, 0), + [1283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_variant_pattern, 3, 0, 0), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [1287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_variant_pattern, 6, 0, 0), + [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [1291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_attribute, 1, 0, 0), + [1293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_render_type_repeat1, 2, 0, 0), SHIFT_REPEAT(35), + [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_render_type_repeat1, 2, 0, 0), + [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_function_attribute, 3, 0, 0), + [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), + [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 0), + [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_attribute_value, 2, 0, 0), + [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_reference, 2, 0, 0), + [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_definition_repeat1, 2, 0, 0), + [1336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(572), + [1339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 0), + [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_definition_repeat1, 2, 0, 0), + [1365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(481), + [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), + [1376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(472), + [1379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(472), + [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_variant_pattern, 4, 0, 0), + [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, 0, 0), + [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [1420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), SHIFT_REPEAT(657), + [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), + [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 1, 0, 0), + [1481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_variant_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(163), + [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_variant_pattern_repeat1, 2, 0, 0), + [1486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(128), + [1489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_expression_repeat1, 2, 0, 0), + [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_field, 4, 0, 0), + [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_field, 3, 0, 0), + [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 0), + [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 0), + [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [1595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(609), + [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), + [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 0), + [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [1608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11), + [1611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_type_repeat1, 2, 0, 0), + [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [1621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inferred_enum_struct_repeat1, 2, 0, 0), + [1623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inferred_enum_struct_repeat1, 2, 0, 0), SHIFT_REPEAT(669), + [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [1682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_params_repeat1, 2, 0, 0), SHIFT_REPEAT(708), + [1685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_params_repeat1, 2, 0, 0), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, 0, 0), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_param, 1, 0, 0), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 2, 0, 0), + [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [1731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_param, 3, 0, 0), + [1733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 4, 0, 0), + [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [1747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 0), + [1749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_field_init, 3, 0, 0), + [1751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_pattern, 1, 0, 0), + [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 3, 0, 0), + [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_field, 5, 0, 0), + [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, 0, 0), + [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, 0, 0), + [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_value, 1, 0, 0), + [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_params, 4, 0, 0), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 0), + [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_language_name, 1, 0, 0), + [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), + [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_params, 3, 0, 0), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [1903] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), + [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 5, 0, 0), + [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), }; #ifdef __cplusplus diff --git a/src/tree_sitter/parser.h b/src/tree_sitter/parser.h index cdbe64c..858107d 100644 --- a/src/tree_sitter/parser.h +++ b/src/tree_sitter/parser.h @@ -18,7 +18,6 @@ typedef uint16_t TSStateId; typedef uint16_t TSSymbol; typedef uint16_t TSFieldId; typedef struct TSLanguage TSLanguage; -typedef struct TSLanguageMetadata TSLanguageMetadata; typedef struct TSLanguageMetadata { uint8_t major_version; uint8_t minor_version; diff --git a/test/corpus/basic.txt b/test/corpus/basic.txt new file mode 100644 index 0000000..2922968 --- /dev/null +++ b/test/corpus/basic.txt @@ -0,0 +1,90 @@ +================== +empty function +================== + +@fn empty() { } + +--- + +(template + (template_element + (function_definition + (identifier) + (parameter_list) + (content_block)))) + +================== +use statement +================== + +@use std::collections::HashMap + +--- + +(template + (template_element + (use_statement + (rust_path)))) + +================== +import with alias +================== + +@import "/components/button" as btn + +--- + +(template + (template_element + (import_statement + (string_literal) + (identifier)))) + +================== +struct definition +================== + +@struct User { + name: String, + age: u32, +} + +--- + +(template + (template_element + (struct_definition + (identifier) + (struct_field + (identifier) + (type_expression + (rust_type + (primitive_type)))) + (struct_field + (identifier) + (type_expression + (rust_type + (primitive_type))))))) + +================== +html element with text +================== + +@fn greet() { +

Hello

+} + +--- + +(template + (template_element + (function_definition + (identifier) + (parameter_list) + (content_block + (template_node + (html_element + (tag_name) + (template_node + (text_content)) + (tag_name))))))) diff --git a/test/corpus/control_flow.txt b/test/corpus/control_flow.txt new file mode 100644 index 0000000..94462cb --- /dev/null +++ b/test/corpus/control_flow.txt @@ -0,0 +1,150 @@ +================== +@if statement +================== + +@fn show(x: bool) { @if x {

Yes

} } + +--- + +(template + (template_element + (function_definition + (identifier) + (parameter_list + (parameter + (identifier) + (rust_type + (primitive_type)))) + (content_block + (template_node + (template_control_flow + (if_statement + (expression + (primary_expression + (rust_path))) + (content_block + (template_node + (html_element + (tag_name) + (template_node + (text_content)) + (tag_name))))))))))) + +================== +@for loop +================== + +@fn loop(items: Vec) { @for n in items {
  • @n
  • } } + +--- + +(template + (template_element + (function_definition + (identifier) + (parameter_list + (parameter + (identifier) + (rust_type + (generic_type + (rust_path) + (rust_type + (primitive_type)))))) + (content_block + (template_node + (template_control_flow + (for_loop + (simple_pattern + (identifier_pattern + (identifier))) + (expression + (primary_expression + (rust_path))) + (content_block + (template_node + (html_element + (tag_name) + (template_node + (template_expression + (simple_expression + (expression_path + (identifier))))) + (tag_name))))))))))) + +================== +@match with literal and wildcard +================== + +@fn pick(v: u32) { @match v { 0 => {

    zero

    }, _ => {

    other

    } } } + +--- + +(template + (template_element + (function_definition + (identifier) + (parameter_list + (parameter + (identifier) + (rust_type + (primitive_type)))) + (content_block + (template_node + (template_control_flow + (match_statement + (expression + (primary_expression + (rust_path))) + (match_arm + (pattern + (literal + (number_literal + (integer_literal)))) + (content_block + (template_node + (html_element + (tag_name) + (template_node + (text_content)) + (tag_name))))) + (match_arm + (pattern + (wildcard_pattern)) + (content_block + (template_node + (html_element + (tag_name) + (template_node + (text_content)) + (tag_name)))))))))))) + +================== +@if in HTML attribute position +================== + +@fn cb(active: bool) { } + +--- + +(template + (template_element + (function_definition + (identifier) + (parameter_list + (parameter + (identifier) + (rust_type + (primitive_type)))) + (content_block + (template_node + (html_element + (tag_name) + (attribute_or_control + (attribute_control_flow + (attribute_if_statement + (expression + (primary_expression + (rust_path))) + (attribute_or_control + (html_attribute + (attribute_name)))))))))))) diff --git a/test/corpus/features.txt b/test/corpus/features.txt new file mode 100644 index 0000000..ceb354c --- /dev/null +++ b/test/corpus/features.txt @@ -0,0 +1,159 @@ +================== +format expression +================== + +@fn fmt(name: String) {

    @format("Hello {}", name)

    } + +--- + +(template + (template_element + (function_definition + (identifier) + (parameter_list + (parameter + (identifier) + (rust_type + (primitive_type)))) + (content_block + (template_node + (html_element + (tag_name) + (template_node + (template_expression + (format_expression + (string_literal) + (expression + (primary_expression + (rust_path)))))) + (tag_name))))))) + +================== +matches expression +================== + +@fn check(v: Option) {

    @matches(v, Some(_))

    } + +--- + +(template + (template_element + (function_definition + (identifier) + (parameter_list + (parameter + (identifier) + (rust_type + (generic_type + (rust_path) + (rust_type + (primitive_type)))))) + (content_block + (template_node + (html_element + (tag_name) + (template_node + (template_expression + (matches_expression + (expression + (primary_expression + (rust_path))) + (pattern + (tuple_variant_pattern + (rust_path) + (pattern + (wildcard_pattern))))))) + (tag_name))))))) + +================== +inferred enum path +================== + +@fn status(s: Status) {

    @(::Active)

    } + +--- + +(template + (template_element + (function_definition + (identifier) + (parameter_list + (parameter + (identifier) + (rust_type + (path_type + (rust_path))))) + (content_block + (template_node + (html_element + (tag_name) + (template_node + (template_expression + (complex_expression + (expression + (primary_expression + (inferred_enum_path)))))) + (tag_name))))))) + +================== +inferred enum tuple variant +================== + +@fn call() {

    @(::Some(1))

    } + +--- + +(template + (template_element + (function_definition + (identifier) + (parameter_list) + (content_block + (template_node + (html_element + (tag_name) + (template_node + (template_expression + (complex_expression + (expression + (primary_expression + (inferred_enum_call + (inferred_enum_path) + (argument_list + (expression + (primary_expression + (literal + (number_literal + (integer_literal)))))))))))) + (tag_name))))))) + +================== +inferred enum struct variant +================== + +@fn data() { @let x = ::User { name: "A" }; } + +--- + +(template + (template_element + (function_definition + (identifier) + (parameter_list) + (content_block + (template_node + (template_control_flow + (let_statement + (simple_pattern + (identifier_pattern + (identifier))) + (expression + (primary_expression + (inferred_enum_struct + (inferred_enum_path) + (struct_field_init + (identifier) + (expression + (primary_expression + (literal + (string_literal))))))))))))))) diff --git a/test/corpus/known_bugs.txt b/test/corpus/known_bugs.txt new file mode 100644 index 0000000..585fdb1 --- /dev/null +++ b/test/corpus/known_bugs.txt @@ -0,0 +1,25 @@ +================== +@let statement +================== + +@fn calc() { @let n = 42; } + +--- + +(template + (template_element + (function_definition + (identifier) + (parameter_list) + (content_block + (template_node + (template_control_flow + (let_statement + (simple_pattern + (identifier_pattern + (identifier))) + (expression + (primary_expression + (literal + (number_literal + (integer_literal))))))))))))