From ed4df8e104e5847c71927b3cd7f882eb74acf078 Mon Sep 17 00:00:00 2001 From: Novus Nota <68142933+novusnota@users.noreply.github.com> Date: Fri, 7 Feb 2025 03:57:09 +0100 Subject: [PATCH] feat: better `asm` parsing according to upstream Tact compiler parser Additionally, a lot of choices were made to better accomodate the future Tact assembly grammar (not in syntax, but in node names and layout) and facilitate language server use Closes #49 --- .github/workflows/ci.yml | 2 + README.md | 7 +- grammar.js | 116 +- src/grammar.json | 191 +- src/node-types.json | 142 +- src/parser.c | 14441 ++++++++++++++--------------- test/corpus/asm_function.txt | 209 +- test/highlight/asm_function.tact | 64 +- test/sample/example.tact | 5 + 9 files changed, 7696 insertions(+), 7481 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7d9b223..1784e18 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -47,4 +47,6 @@ jobs: if: ${{ runner.os != 'Windows' }} run: | git clone https://github.com/tact-lang/tact.git -b "v$(jq -r '.version' < package.json)" + npm run parse -- -q tact/src/grammar/next/test/*.tact npm run parse -- -q tact/src/grammar/test/*.tact + # TODO: items-asm-funs.tact must be changed diff --git a/README.md b/README.md index 72f57f9..1da4754 100644 --- a/README.md +++ b/README.md @@ -6,13 +6,11 @@ A fully-featured 🌳 [Tree-sitter](https://github.com/tree-sitter/tree-sitter) grammar for the ⚡ Tact contract programming language: -- 🍰 Parses whole Tact grammar as defined in [grammar.ohm](https://github.com/tact-lang/tact/blob/main/src/grammar/grammar.ohm) (with performance and usability in mind). +- 🍰 Parses whole Tact grammar as defined in [grammar.gg](https://github.com/tact-lang/tact/blob/da4b8d82128cf4b6f9b04d93a93a9382407112c2/src/grammar/next/grammar.gg) (with performance and usability in mind). - 🎨 Provides highlighting, scoping and tagging [queries](#-structure). - ⚙ Test-covered (including queries), reflects latest Tact language updates. - 🚀 See guidelines on usage and integration in editors supporting Tree-sitter [below](#-usage). -Note, that the only limiting point are the `asm` functions introduced in Tact 1.5.0 — their bodies doesn't produce any highlighting and can be ill-parsed for now, so expect ERROR nodes in the parse tree. In the future, this is planned to be resolved by an external scanner — it can parse much more, and it can yield more tokens for subsequent highlighting. - ## 🚀 Usage ### Neovim @@ -205,7 +203,8 @@ To find highlighting and other queries for specific editors, look in the `editor ## ⚙ References -- [grammar.ohm](https://github.com/tact-lang/tact/blob/main/src/grammar/grammar.ohm) — Official grammar specification in Ohm PEG language. +- [grammar.gg](https://github.com/tact-lang/tact/blob/da4b8d82128cf4b6f9b04d93a93a9382407112c2/src/grammar/next/grammar.gg) — Official Tact grammar specification. +- [grammar.ohm](https://github.com/tact-lang/tact/blob/da4b8d82128cf4b6f9b04d93a93a9382407112c2/src/grammar/prev/grammar.ohm) — Previous, now outdated Tact grammar specification in Ohm PEG language. - [tact-by-example](https://github.com/tact-lang/tact-by-example) — Many different contract samples. ## Useful ⚡ Tact links diff --git a/grammar.js b/grammar.js index aa76dea..ba7ee8a 100644 --- a/grammar.js +++ b/grammar.js @@ -218,47 +218,107 @@ module.exports = grammar({ asm_arrangement_rets: ($) => seq("->", repeat1(alias($._decimal_integer, $.integer))), - asm_function_body: ($) => - seq( - "{", - prec.right( - repeat( - choice( - // list with { } - $.asm_list, - // others - $._asm_instruction, - ), - ), + // NOTE: + // The following asm-related pieces intentionally differ from the grammar.gg. + // This is done to provide a better API for the language server. + // + // There's no catch because there's no well-defined Tact assembly syntax + // that we've agreed upon — the current parser in the compiler + // simply produces a large string to be passed as-is to the rest of the pipeline. + // + // Therefore, most of the things below would be internally refactored and/or removed completely once there's a proper definition of the Tact assembly. + // (That does NOT require Fift removal, a first step might be just + // converting our syntax to bits of the Fift syntax seen below) + // + asm_function_body: ($) => seq("{", repeat($.asm_expression), "}"), + + // Zero or more arguments, followed by a TVM instruction + asm_expression: ($) => + prec.right( + seq( + field("arguments", optional($.asm_argument_list)), + field("name", $.tvm_instruction), ), - prec.right("}"), ), - asm_list: ($) => seq("{", /\s/, repeat($._asm_instruction), "}", /\s/), + // One or more primitives + asm_argument_list: ($) => repeat1($._asm_primitive), - _asm_instruction: ($) => + // See comments for each + _asm_primitive: ($) => choice( - // string - $._asm_string, - // char - seq("char", /\s/, /\S/, /\s/), - // custom - /\S+/, // NOTE: this point can be significantly improved + $.asm_sequence, + $.asm_string, + $.asm_hex_bitstring, + $.asm_bin_bitstring, + $.asm_boc_hex, + $.asm_control_register, + $.asm_stack_register, + $.asm_integer, ), - _asm_string: (_) => + // <{ ... }> + asm_sequence: ($) => + seq("<{", repeat($.asm_expression), choice("}>c", "}>s", "}>CONT", "}>")), + + // "..." + asm_string: (_) => seq( choice('abort"', '."', '+"', '"'), token.immediate(prec(1, /[^"]+/)), token.immediate('"'), - /\s/, ), - // NOTE: May be re-introduced in the future, unused in the current parser - // listNoStateCheck - // seq("({)", /\s/, repeat($._asm_instruction), "(})", /\s/), - // hexLiteral - // _asm_hex_literal: (_) => /[xB]\{[\s\da-fA-F]*_?\s*\}\s/, + // x{DEADBEEF_} + // x{babecafe} + // x{} + asm_hex_bitstring: (_) => /x\{[a-fA-F0-9]*_?\}/, + + // b{011101010} + // b{} + asm_bin_bitstring: (_) => /b\{[01]*\}/, + + // B{DEADBEEF_} B>boc + // B{babecafe} B>boc + // B{} B>boc + // + asm_boc_hex: (_) => choice(/B\{[a-fA-F0-9]*_?\}\s+B>boc/, //), + + // c0 + // c15 + asm_control_register: (_) => /c\d\d?/, + + // s0 + // s15 + // 16 s() + asm_stack_register: (_) => choice(/s\d\d?/, /\d\d?\d?\s+s\(\)/), + + // 0 + // 500 + // -42 + // 0b10 + // 0xff + // 0xFF + asm_integer: (_) => { + const hex_literal = /-?0x[a-fA-F0-9]+/; + const bin_literal = /-?0b[01]+/; + const dec_literal = /-?\d+/; + + return token(choice( + hex_literal, // hexadecimal + bin_literal, // binary + dec_literal, // decimal + )); + }, + + // MYCODE + // HASHEXT_SHA256 + // ADDRSHIFTMOD ADDRSHIFT#MOD + // IF IF: + // XCHG3 XCHG3_l + // 2SWAP SWAP2 + // ROT -ROT + tvm_instruction: (_) => /-?[A-Z0-9_#:]+l?/, /* Functions */ diff --git a/src/grammar.json b/src/grammar.json index 0df90b9..604e241 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -478,98 +478,133 @@ "value": "{" }, { - "type": "PREC_RIGHT", - "value": 0, + "type": "REPEAT", "content": { - "type": "REPEAT", + "type": "SYMBOL", + "name": "asm_expression" + } + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "asm_expression": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "arguments", "content": { "type": "CHOICE", "members": [ { "type": "SYMBOL", - "name": "asm_list" + "name": "asm_argument_list" }, { - "type": "SYMBOL", - "name": "_asm_instruction" + "type": "BLANK" } ] } + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "tvm_instruction" + } } - }, - { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "STRING", - "value": "}" - } - } - ] + ] + } }, - "asm_list": { - "type": "SEQ", + "asm_argument_list": { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "_asm_primitive" + } + }, + "_asm_primitive": { + "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "{" + "type": "SYMBOL", + "name": "asm_sequence" }, { - "type": "PATTERN", - "value": "\\s" + "type": "SYMBOL", + "name": "asm_string" }, { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_asm_instruction" - } + "type": "SYMBOL", + "name": "asm_hex_bitstring" }, { - "type": "STRING", - "value": "}" + "type": "SYMBOL", + "name": "asm_bin_bitstring" }, { - "type": "PATTERN", - "value": "\\s" + "type": "SYMBOL", + "name": "asm_boc_hex" + }, + { + "type": "SYMBOL", + "name": "asm_control_register" + }, + { + "type": "SYMBOL", + "name": "asm_stack_register" + }, + { + "type": "SYMBOL", + "name": "asm_integer" } ] }, - "_asm_instruction": { - "type": "CHOICE", + "asm_sequence": { + "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "_asm_string" + "type": "STRING", + "value": "<{" }, { - "type": "SEQ", + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "asm_expression" + } + }, + { + "type": "CHOICE", "members": [ { "type": "STRING", - "value": "char" + "value": "}>c" }, { - "type": "PATTERN", - "value": "\\s" + "type": "STRING", + "value": "}>s" }, { - "type": "PATTERN", - "value": "\\S" + "type": "STRING", + "value": "}>CONT" }, { - "type": "PATTERN", - "value": "\\s" + "type": "STRING", + "value": "}>" } ] - }, - { - "type": "PATTERN", - "value": "\\S+" } ] }, - "_asm_string": { + "asm_string": { "type": "SEQ", "members": [ { @@ -610,13 +645,71 @@ "type": "STRING", "value": "\"" } + } + ] + }, + "asm_hex_bitstring": { + "type": "PATTERN", + "value": "x\\{[a-fA-F0-9]*_?\\}" + }, + "asm_bin_bitstring": { + "type": "PATTERN", + "value": "b\\{[01]*\\}" + }, + "asm_boc_hex": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "B\\{[a-fA-F0-9]*_?\\}\\s+B>boc" + }, + { + "type": "PATTERN", + "value": "" + } + ] + }, + "asm_control_register": { + "type": "PATTERN", + "value": "c\\d\\d?" + }, + "asm_stack_register": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "s\\d\\d?" }, { "type": "PATTERN", - "value": "\\s" + "value": "\\d\\d?\\d?\\s+s\\(\\)" } ] }, + "asm_integer": { + "type": "TOKEN", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "-?0x[a-fA-F0-9]+" + }, + { + "type": "PATTERN", + "value": "-?0b[01]+" + }, + { + "type": "PATTERN", + "value": "-?\\d+" + } + ] + } + }, + "tvm_instruction": { + "type": "PATTERN", + "value": "-?[A-Z0-9_#:]+l?" + }, "_function": { "type": "SEQ", "members": [ diff --git a/src/node-types.json b/src/node-types.json index 466694f..1dd15d6 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -100,6 +100,49 @@ ] } }, + { + "type": "asm_argument_list", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "asm_bin_bitstring", + "named": true + }, + { + "type": "asm_boc_hex", + "named": true + }, + { + "type": "asm_control_register", + "named": true + }, + { + "type": "asm_hex_bitstring", + "named": true + }, + { + "type": "asm_integer", + "named": true + }, + { + "type": "asm_sequence", + "named": true + }, + { + "type": "asm_stack_register", + "named": true + }, + { + "type": "asm_string", + "named": true + } + ] + } + }, { "type": "asm_arrangement", "named": true, @@ -156,6 +199,37 @@ ] } }, + { + "type": "asm_boc_hex", + "named": true, + "fields": {} + }, + { + "type": "asm_expression", + "named": true, + "fields": { + "arguments": { + "multiple": false, + "required": false, + "types": [ + { + "type": "asm_argument_list", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "tvm_instruction", + "named": true + } + ] + } + } + }, { "type": "asm_function", "named": true, @@ -243,14 +317,34 @@ "required": false, "types": [ { - "type": "asm_list", + "type": "asm_expression", + "named": true + } + ] + } + }, + { + "type": "asm_sequence", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "asm_expression", "named": true } ] } }, { - "type": "asm_list", + "type": "asm_stack_register", + "named": true, + "fields": {} + }, + { + "type": "asm_string", "named": true, "fields": {} }, @@ -2888,6 +2982,10 @@ "type": "<=", "named": false }, + { + "type": "<{", + "named": false + }, { "type": "=", "named": false @@ -2949,15 +3047,27 @@ "named": false }, { - "type": "bounced", - "named": false + "type": "asm_bin_bitstring", + "named": true }, { - "type": "catch", + "type": "asm_control_register", + "named": true + }, + { + "type": "asm_hex_bitstring", + "named": true + }, + { + "type": "asm_integer", + "named": true + }, + { + "type": "bounced", "named": false }, { - "type": "char", + "type": "catch", "named": false }, { @@ -3104,6 +3214,10 @@ "type": "try", "named": false }, + { + "type": "tvm_instruction", + "named": true + }, { "type": "type_identifier", "named": true @@ -3148,6 +3262,22 @@ "type": "}", "named": false }, + { + "type": "}>", + "named": false + }, + { + "type": "}>CONT", + "named": false + }, + { + "type": "}>c", + "named": false + }, + { + "type": "}>s", + "named": false + }, { "type": "~", "named": false diff --git a/src/parser.c b/src/parser.c index 88c0ae1..fb2de3c 100644 --- a/src/parser.c +++ b/src/parser.c @@ -5,15 +5,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 508 +#define STATE_COUNT 502 #define LARGE_STATE_COUNT 2 -#define SYMBOL_COUNT 214 +#define SYMBOL_COUNT 228 #define ALIAS_COUNT 3 -#define TOKEN_COUNT 108 +#define TOKEN_COUNT 118 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 30 #define MAX_ALIAS_SEQUENCE_LENGTH 11 -#define PRODUCTION_ID_COUNT 80 +#define PRODUCTION_ID_COUNT 81 enum ts_symbol_identifiers { sym_identifier = 1, @@ -35,203 +35,217 @@ enum ts_symbol_identifiers { anon_sym_DASH_GT = 17, anon_sym_LBRACE = 18, anon_sym_RBRACE = 19, - aux_sym_asm_list_token1 = 20, - anon_sym_char = 21, - aux_sym__asm_instruction_token1 = 22, - aux_sym__asm_instruction_token2 = 23, - anon_sym_abort_DQUOTE = 24, - anon_sym_DOT_DQUOTE = 25, - anon_sym_PLUS_DQUOTE = 26, - anon_sym_DQUOTE = 27, - aux_sym__asm_string_token1 = 28, - anon_sym_DQUOTE2 = 29, - anon_sym_mutates = 30, - anon_sym_extends = 31, - anon_sym_inline = 32, - anon_sym_get = 33, - anon_sym_COMMA = 34, - anon_sym_struct = 35, - anon_sym_message = 36, - anon_sym_contract = 37, - anon_sym_trait = 38, - anon_sym_ATinterface = 39, - anon_sym_with = 40, - anon_sym_init = 41, - anon_sym_receive = 42, - anon_sym_bounced = 43, - anon_sym_external = 44, - anon_sym_let = 45, - anon_sym_DOT_DOT = 46, - anon_sym_return = 47, - anon_sym_PLUS_EQ = 48, - anon_sym_DASH_EQ = 49, - anon_sym_STAR_EQ = 50, - anon_sym_SLASH_EQ = 51, - anon_sym_PERCENT_EQ = 52, - anon_sym_AMP_EQ = 53, - anon_sym_PIPE_EQ = 54, - anon_sym_CARET_EQ = 55, - anon_sym_PIPE_PIPE_EQ = 56, - anon_sym_AMP_AMP_EQ = 57, - anon_sym_GT_GT_EQ = 58, - anon_sym_LT_LT_EQ = 59, - anon_sym_if = 60, - anon_sym_else = 61, - anon_sym_while = 62, - anon_sym_repeat = 63, - anon_sym_do = 64, - anon_sym_until = 65, - anon_sym_try = 66, - anon_sym_catch = 67, - anon_sym_foreach = 68, - anon_sym_in = 69, - anon_sym_QMARK = 70, - anon_sym_PIPE_PIPE = 71, - anon_sym_AMP_AMP = 72, - anon_sym_PIPE = 73, - anon_sym_CARET = 74, - anon_sym_AMP = 75, - anon_sym_BANG_EQ = 76, - anon_sym_EQ_EQ = 77, - anon_sym_GT = 78, - anon_sym_GT_EQ = 79, - anon_sym_LT = 80, - anon_sym_LT_EQ = 81, - anon_sym_GT_GT = 82, - anon_sym_LT_LT = 83, - anon_sym_PLUS = 84, - anon_sym_DASH = 85, - anon_sym_STAR = 86, - anon_sym_SLASH = 87, - anon_sym_PERCENT = 88, - anon_sym_BANG = 89, - anon_sym_TILDE = 90, - anon_sym_BANG_BANG = 91, - anon_sym_DOT = 92, - anon_sym_initOf = 93, - anon_sym_map = 94, - sym__type_identifier = 95, - anon_sym_as = 96, - sym__func_quoted_id = 97, - sym__func_plain_id = 98, - sym_self = 99, - sym__non_quote_or_backslash_char = 100, - sym_escape_sequence = 101, - anon_sym_true = 102, - anon_sym_false = 103, - sym_null = 104, - sym_integer = 105, - sym__decimal_integer = 106, - sym_comment = 107, - sym_source_file = 108, - sym_import = 109, - sym__module_item = 110, - sym_primitive = 111, - sym__constant = 112, - sym_constant_attributes = 113, - sym_native_function = 114, - sym_asm_function = 115, - sym_asm_arrangement = 116, - sym_asm_arrangement_args = 117, - sym_asm_arrangement_rets = 118, - sym_asm_function_body = 119, - sym_asm_list = 120, - sym__asm_instruction = 121, - sym__asm_string = 122, - sym__function = 123, - sym__function_declaration = 124, - sym__function_definition = 125, - sym_function_attributes = 126, - sym_get_attribute = 127, - sym_parameter_list = 128, - sym_parameter = 129, - sym_struct = 130, - sym_message = 131, - sym_message_value = 132, - sym_struct_body = 133, - sym_field = 134, - sym_storage_constant = 135, - sym_storage_variable = 136, - sym__field_after_id = 137, - sym_contract = 138, - sym_trait = 139, - sym_contract_attributes = 140, - sym_trait_list = 141, - sym_contract_body = 142, - sym_trait_body = 143, - sym__body_item_without_semicolon = 144, - sym_init_function = 145, - sym__receiver_function = 146, - sym_receive_function = 147, - sym_bounced_function = 148, - sym_external_function = 149, - sym__statement = 150, - sym__statement_with_brace = 151, - sym__statement_without_semicolon = 152, - sym_let_statement = 153, - sym_destruct_statement = 154, - sym_destruct_bind_list = 155, - sym_destruct_bind = 156, - sym_block_statement = 157, - sym_return_statement = 158, - sym_expression_statement = 159, - sym_assignment_statement = 160, - sym_augmented_assignment_statement = 161, - sym_if_statement = 162, - sym_else_clause = 163, - sym_while_statement = 164, - sym_repeat_statement = 165, - sym_do_until_statement = 166, - sym_try_statement = 167, - sym_catch_clause = 168, - sym_foreach_statement = 169, - sym__path_expression = 170, - sym__expression = 171, - sym_ternary_expression = 172, - sym_binary_expression = 173, - sym_unary_expression = 174, - sym_value_expression = 175, - sym_non_null_assert_expression = 176, - sym_method_call_expression = 177, - sym_field_access_expression = 178, - sym_static_call_expression = 179, - sym_argument_list = 180, - sym_argument = 181, - sym_parenthesized_expression = 182, - sym_instance_expression = 183, - sym_instance_argument_list = 184, - sym_instance_argument = 185, - sym_initOf = 186, - sym__type = 187, - sym_map_type = 188, - sym_bounced_type = 189, - sym_optional_type = 190, - sym_tlb_serialization = 191, - sym_func_identifier = 192, - sym_string = 193, - sym_boolean = 194, - aux_sym_source_file_repeat1 = 195, - aux_sym_source_file_repeat2 = 196, - aux_sym_constant_attributes_repeat1 = 197, - aux_sym_asm_arrangement_args_repeat1 = 198, - aux_sym_asm_arrangement_rets_repeat1 = 199, - aux_sym_asm_function_body_repeat1 = 200, - aux_sym_asm_list_repeat1 = 201, - aux_sym_function_attributes_repeat1 = 202, - aux_sym_parameter_list_repeat1 = 203, - aux_sym_struct_body_repeat1 = 204, - aux_sym_contract_attributes_repeat1 = 205, - aux_sym_trait_list_repeat1 = 206, - aux_sym_contract_body_repeat1 = 207, - aux_sym_trait_body_repeat1 = 208, - aux_sym_destruct_bind_list_repeat1 = 209, - aux_sym_block_statement_repeat1 = 210, - aux_sym_argument_list_repeat1 = 211, - aux_sym_instance_argument_list_repeat1 = 212, - aux_sym_string_repeat1 = 213, - alias_sym_function_body = 214, - alias_sym_message_body = 215, - alias_sym_trait_attributes = 216, + anon_sym_LT_LBRACE = 20, + anon_sym_RBRACE_GTc = 21, + anon_sym_RBRACE_GTs = 22, + anon_sym_RBRACE_GTCONT = 23, + anon_sym_RBRACE_GT = 24, + anon_sym_abort_DQUOTE = 25, + anon_sym_DOT_DQUOTE = 26, + anon_sym_PLUS_DQUOTE = 27, + anon_sym_DQUOTE = 28, + aux_sym_asm_string_token1 = 29, + anon_sym_DQUOTE2 = 30, + sym_asm_hex_bitstring = 31, + sym_asm_bin_bitstring = 32, + aux_sym_asm_boc_hex_token1 = 33, + aux_sym_asm_boc_hex_token2 = 34, + sym_asm_control_register = 35, + aux_sym_asm_stack_register_token1 = 36, + aux_sym_asm_stack_register_token2 = 37, + sym_asm_integer = 38, + sym_tvm_instruction = 39, + anon_sym_mutates = 40, + anon_sym_extends = 41, + anon_sym_inline = 42, + anon_sym_get = 43, + anon_sym_COMMA = 44, + anon_sym_struct = 45, + anon_sym_message = 46, + anon_sym_contract = 47, + anon_sym_trait = 48, + anon_sym_ATinterface = 49, + anon_sym_with = 50, + anon_sym_init = 51, + anon_sym_receive = 52, + anon_sym_bounced = 53, + anon_sym_external = 54, + anon_sym_let = 55, + anon_sym_DOT_DOT = 56, + anon_sym_return = 57, + anon_sym_PLUS_EQ = 58, + anon_sym_DASH_EQ = 59, + anon_sym_STAR_EQ = 60, + anon_sym_SLASH_EQ = 61, + anon_sym_PERCENT_EQ = 62, + anon_sym_AMP_EQ = 63, + anon_sym_PIPE_EQ = 64, + anon_sym_CARET_EQ = 65, + anon_sym_PIPE_PIPE_EQ = 66, + anon_sym_AMP_AMP_EQ = 67, + anon_sym_GT_GT_EQ = 68, + anon_sym_LT_LT_EQ = 69, + anon_sym_if = 70, + anon_sym_else = 71, + anon_sym_while = 72, + anon_sym_repeat = 73, + anon_sym_do = 74, + anon_sym_until = 75, + anon_sym_try = 76, + anon_sym_catch = 77, + anon_sym_foreach = 78, + anon_sym_in = 79, + anon_sym_QMARK = 80, + anon_sym_PIPE_PIPE = 81, + anon_sym_AMP_AMP = 82, + anon_sym_PIPE = 83, + anon_sym_CARET = 84, + anon_sym_AMP = 85, + anon_sym_BANG_EQ = 86, + anon_sym_EQ_EQ = 87, + anon_sym_GT = 88, + anon_sym_GT_EQ = 89, + anon_sym_LT = 90, + anon_sym_LT_EQ = 91, + anon_sym_GT_GT = 92, + anon_sym_LT_LT = 93, + anon_sym_PLUS = 94, + anon_sym_DASH = 95, + anon_sym_STAR = 96, + anon_sym_SLASH = 97, + anon_sym_PERCENT = 98, + anon_sym_BANG = 99, + anon_sym_TILDE = 100, + anon_sym_BANG_BANG = 101, + anon_sym_DOT = 102, + anon_sym_initOf = 103, + anon_sym_map = 104, + sym__type_identifier = 105, + anon_sym_as = 106, + sym__func_quoted_id = 107, + sym__func_plain_id = 108, + sym_self = 109, + sym__non_quote_or_backslash_char = 110, + sym_escape_sequence = 111, + anon_sym_true = 112, + anon_sym_false = 113, + sym_null = 114, + sym_integer = 115, + sym__decimal_integer = 116, + sym_comment = 117, + sym_source_file = 118, + sym_import = 119, + sym__module_item = 120, + sym_primitive = 121, + sym__constant = 122, + sym_constant_attributes = 123, + sym_native_function = 124, + sym_asm_function = 125, + sym_asm_arrangement = 126, + sym_asm_arrangement_args = 127, + sym_asm_arrangement_rets = 128, + sym_asm_function_body = 129, + sym_asm_expression = 130, + sym_asm_argument_list = 131, + sym__asm_primitive = 132, + sym_asm_sequence = 133, + sym_asm_string = 134, + sym_asm_boc_hex = 135, + sym_asm_stack_register = 136, + sym__function = 137, + sym__function_declaration = 138, + sym__function_definition = 139, + sym_function_attributes = 140, + sym_get_attribute = 141, + sym_parameter_list = 142, + sym_parameter = 143, + sym_struct = 144, + sym_message = 145, + sym_message_value = 146, + sym_struct_body = 147, + sym_field = 148, + sym_storage_constant = 149, + sym_storage_variable = 150, + sym__field_after_id = 151, + sym_contract = 152, + sym_trait = 153, + sym_contract_attributes = 154, + sym_trait_list = 155, + sym_contract_body = 156, + sym_trait_body = 157, + sym__body_item_without_semicolon = 158, + sym_init_function = 159, + sym__receiver_function = 160, + sym_receive_function = 161, + sym_bounced_function = 162, + sym_external_function = 163, + sym__statement = 164, + sym__statement_with_brace = 165, + sym__statement_without_semicolon = 166, + sym_let_statement = 167, + sym_destruct_statement = 168, + sym_destruct_bind_list = 169, + sym_destruct_bind = 170, + sym_block_statement = 171, + sym_return_statement = 172, + sym_expression_statement = 173, + sym_assignment_statement = 174, + sym_augmented_assignment_statement = 175, + sym_if_statement = 176, + sym_else_clause = 177, + sym_while_statement = 178, + sym_repeat_statement = 179, + sym_do_until_statement = 180, + sym_try_statement = 181, + sym_catch_clause = 182, + sym_foreach_statement = 183, + sym__path_expression = 184, + sym__expression = 185, + sym_ternary_expression = 186, + sym_binary_expression = 187, + sym_unary_expression = 188, + sym_value_expression = 189, + sym_non_null_assert_expression = 190, + sym_method_call_expression = 191, + sym_field_access_expression = 192, + sym_static_call_expression = 193, + sym_argument_list = 194, + sym_argument = 195, + sym_parenthesized_expression = 196, + sym_instance_expression = 197, + sym_instance_argument_list = 198, + sym_instance_argument = 199, + sym_initOf = 200, + sym__type = 201, + sym_map_type = 202, + sym_bounced_type = 203, + sym_optional_type = 204, + sym_tlb_serialization = 205, + sym_func_identifier = 206, + sym_string = 207, + sym_boolean = 208, + aux_sym_source_file_repeat1 = 209, + aux_sym_source_file_repeat2 = 210, + aux_sym_constant_attributes_repeat1 = 211, + aux_sym_asm_arrangement_args_repeat1 = 212, + aux_sym_asm_arrangement_rets_repeat1 = 213, + aux_sym_asm_function_body_repeat1 = 214, + aux_sym_asm_argument_list_repeat1 = 215, + aux_sym_function_attributes_repeat1 = 216, + aux_sym_parameter_list_repeat1 = 217, + aux_sym_struct_body_repeat1 = 218, + aux_sym_contract_attributes_repeat1 = 219, + aux_sym_trait_list_repeat1 = 220, + aux_sym_contract_body_repeat1 = 221, + aux_sym_trait_body_repeat1 = 222, + aux_sym_destruct_bind_list_repeat1 = 223, + aux_sym_block_statement_repeat1 = 224, + aux_sym_argument_list_repeat1 = 225, + aux_sym_instance_argument_list_repeat1 = 226, + aux_sym_string_repeat1 = 227, + alias_sym_function_body = 228, + alias_sym_message_body = 229, + alias_sym_trait_attributes = 230, }; static const char * const ts_symbol_names[] = { @@ -255,16 +269,26 @@ static const char * const ts_symbol_names[] = { [anon_sym_DASH_GT] = "->", [anon_sym_LBRACE] = "{", [anon_sym_RBRACE] = "}", - [aux_sym_asm_list_token1] = "asm_list_token1", - [anon_sym_char] = "char", - [aux_sym__asm_instruction_token1] = "_asm_instruction_token1", - [aux_sym__asm_instruction_token2] = "_asm_instruction_token2", + [anon_sym_LT_LBRACE] = "<{", + [anon_sym_RBRACE_GTc] = "}>c", + [anon_sym_RBRACE_GTs] = "}>s", + [anon_sym_RBRACE_GTCONT] = "}>CONT", + [anon_sym_RBRACE_GT] = "}>", [anon_sym_abort_DQUOTE] = "abort\"", [anon_sym_DOT_DQUOTE] = ".\"", [anon_sym_PLUS_DQUOTE] = "+\"", [anon_sym_DQUOTE] = "\"", - [aux_sym__asm_string_token1] = "_asm_string_token1", + [aux_sym_asm_string_token1] = "asm_string_token1", [anon_sym_DQUOTE2] = "\"", + [sym_asm_hex_bitstring] = "asm_hex_bitstring", + [sym_asm_bin_bitstring] = "asm_bin_bitstring", + [aux_sym_asm_boc_hex_token1] = "asm_boc_hex_token1", + [aux_sym_asm_boc_hex_token2] = "asm_boc_hex_token2", + [sym_asm_control_register] = "asm_control_register", + [aux_sym_asm_stack_register_token1] = "asm_stack_register_token1", + [aux_sym_asm_stack_register_token2] = "asm_stack_register_token2", + [sym_asm_integer] = "asm_integer", + [sym_tvm_instruction] = "tvm_instruction", [anon_sym_mutates] = "mutates", [anon_sym_extends] = "extends", [anon_sym_inline] = "inline", @@ -355,9 +379,13 @@ static const char * const ts_symbol_names[] = { [sym_asm_arrangement_args] = "asm_arrangement_args", [sym_asm_arrangement_rets] = "asm_arrangement_rets", [sym_asm_function_body] = "asm_function_body", - [sym_asm_list] = "asm_list", - [sym__asm_instruction] = "_asm_instruction", - [sym__asm_string] = "_asm_string", + [sym_asm_expression] = "asm_expression", + [sym_asm_argument_list] = "asm_argument_list", + [sym__asm_primitive] = "_asm_primitive", + [sym_asm_sequence] = "asm_sequence", + [sym_asm_string] = "asm_string", + [sym_asm_boc_hex] = "asm_boc_hex", + [sym_asm_stack_register] = "asm_stack_register", [sym__function] = "global_function", [sym__function_declaration] = "storage_function", [sym__function_definition] = "storage_function", @@ -436,7 +464,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_asm_arrangement_args_repeat1] = "asm_arrangement_args_repeat1", [aux_sym_asm_arrangement_rets_repeat1] = "asm_arrangement_rets_repeat1", [aux_sym_asm_function_body_repeat1] = "asm_function_body_repeat1", - [aux_sym_asm_list_repeat1] = "asm_list_repeat1", + [aux_sym_asm_argument_list_repeat1] = "asm_argument_list_repeat1", [aux_sym_function_attributes_repeat1] = "function_attributes_repeat1", [aux_sym_parameter_list_repeat1] = "parameter_list_repeat1", [aux_sym_struct_body_repeat1] = "struct_body_repeat1", @@ -475,16 +503,26 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_DASH_GT] = anon_sym_DASH_GT, [anon_sym_LBRACE] = anon_sym_LBRACE, [anon_sym_RBRACE] = anon_sym_RBRACE, - [aux_sym_asm_list_token1] = aux_sym_asm_list_token1, - [anon_sym_char] = anon_sym_char, - [aux_sym__asm_instruction_token1] = aux_sym__asm_instruction_token1, - [aux_sym__asm_instruction_token2] = aux_sym__asm_instruction_token2, + [anon_sym_LT_LBRACE] = anon_sym_LT_LBRACE, + [anon_sym_RBRACE_GTc] = anon_sym_RBRACE_GTc, + [anon_sym_RBRACE_GTs] = anon_sym_RBRACE_GTs, + [anon_sym_RBRACE_GTCONT] = anon_sym_RBRACE_GTCONT, + [anon_sym_RBRACE_GT] = anon_sym_RBRACE_GT, [anon_sym_abort_DQUOTE] = anon_sym_abort_DQUOTE, [anon_sym_DOT_DQUOTE] = anon_sym_DOT_DQUOTE, [anon_sym_PLUS_DQUOTE] = anon_sym_PLUS_DQUOTE, [anon_sym_DQUOTE] = anon_sym_DQUOTE, - [aux_sym__asm_string_token1] = aux_sym__asm_string_token1, + [aux_sym_asm_string_token1] = aux_sym_asm_string_token1, [anon_sym_DQUOTE2] = anon_sym_DQUOTE, + [sym_asm_hex_bitstring] = sym_asm_hex_bitstring, + [sym_asm_bin_bitstring] = sym_asm_bin_bitstring, + [aux_sym_asm_boc_hex_token1] = aux_sym_asm_boc_hex_token1, + [aux_sym_asm_boc_hex_token2] = aux_sym_asm_boc_hex_token2, + [sym_asm_control_register] = sym_asm_control_register, + [aux_sym_asm_stack_register_token1] = aux_sym_asm_stack_register_token1, + [aux_sym_asm_stack_register_token2] = aux_sym_asm_stack_register_token2, + [sym_asm_integer] = sym_asm_integer, + [sym_tvm_instruction] = sym_tvm_instruction, [anon_sym_mutates] = anon_sym_mutates, [anon_sym_extends] = anon_sym_extends, [anon_sym_inline] = anon_sym_inline, @@ -575,9 +613,13 @@ static const TSSymbol ts_symbol_map[] = { [sym_asm_arrangement_args] = sym_asm_arrangement_args, [sym_asm_arrangement_rets] = sym_asm_arrangement_rets, [sym_asm_function_body] = sym_asm_function_body, - [sym_asm_list] = sym_asm_list, - [sym__asm_instruction] = sym__asm_instruction, - [sym__asm_string] = sym__asm_string, + [sym_asm_expression] = sym_asm_expression, + [sym_asm_argument_list] = sym_asm_argument_list, + [sym__asm_primitive] = sym__asm_primitive, + [sym_asm_sequence] = sym_asm_sequence, + [sym_asm_string] = sym_asm_string, + [sym_asm_boc_hex] = sym_asm_boc_hex, + [sym_asm_stack_register] = sym_asm_stack_register, [sym__function] = sym__function, [sym__function_declaration] = sym__function_declaration, [sym__function_definition] = sym__function_declaration, @@ -656,7 +698,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_asm_arrangement_args_repeat1] = aux_sym_asm_arrangement_args_repeat1, [aux_sym_asm_arrangement_rets_repeat1] = aux_sym_asm_arrangement_rets_repeat1, [aux_sym_asm_function_body_repeat1] = aux_sym_asm_function_body_repeat1, - [aux_sym_asm_list_repeat1] = aux_sym_asm_list_repeat1, + [aux_sym_asm_argument_list_repeat1] = aux_sym_asm_argument_list_repeat1, [aux_sym_function_attributes_repeat1] = aux_sym_function_attributes_repeat1, [aux_sym_parameter_list_repeat1] = aux_sym_parameter_list_repeat1, [aux_sym_struct_body_repeat1] = aux_sym_struct_body_repeat1, @@ -755,20 +797,24 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [aux_sym_asm_list_token1] = { - .visible = false, + [anon_sym_LT_LBRACE] = { + .visible = true, .named = false, }, - [anon_sym_char] = { + [anon_sym_RBRACE_GTc] = { .visible = true, .named = false, }, - [aux_sym__asm_instruction_token1] = { - .visible = false, + [anon_sym_RBRACE_GTs] = { + .visible = true, .named = false, }, - [aux_sym__asm_instruction_token2] = { - .visible = false, + [anon_sym_RBRACE_GTCONT] = { + .visible = true, + .named = false, + }, + [anon_sym_RBRACE_GT] = { + .visible = true, .named = false, }, [anon_sym_abort_DQUOTE] = { @@ -787,7 +833,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [aux_sym__asm_string_token1] = { + [aux_sym_asm_string_token1] = { .visible = false, .named = false, }, @@ -795,6 +841,42 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [sym_asm_hex_bitstring] = { + .visible = true, + .named = true, + }, + [sym_asm_bin_bitstring] = { + .visible = true, + .named = true, + }, + [aux_sym_asm_boc_hex_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_asm_boc_hex_token2] = { + .visible = false, + .named = false, + }, + [sym_asm_control_register] = { + .visible = true, + .named = true, + }, + [aux_sym_asm_stack_register_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_asm_stack_register_token2] = { + .visible = false, + .named = false, + }, + [sym_asm_integer] = { + .visible = true, + .named = true, + }, + [sym_tvm_instruction] = { + .visible = true, + .named = true, + }, [anon_sym_mutates] = { .visible = true, .named = false, @@ -1155,18 +1237,34 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_asm_list] = { + [sym_asm_expression] = { .visible = true, .named = true, }, - [sym__asm_instruction] = { - .visible = false, + [sym_asm_argument_list] = { + .visible = true, .named = true, }, - [sym__asm_string] = { + [sym__asm_primitive] = { .visible = false, .named = true, }, + [sym_asm_sequence] = { + .visible = true, + .named = true, + }, + [sym_asm_string] = { + .visible = true, + .named = true, + }, + [sym_asm_boc_hex] = { + .visible = true, + .named = true, + }, + [sym_asm_stack_register] = { + .visible = true, + .named = true, + }, [sym__function] = { .visible = true, .named = true, @@ -1480,7 +1578,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_asm_list_repeat1] = { + [aux_sym_asm_argument_list_repeat1] = { .visible = false, .named = false, }, @@ -1658,41 +1756,42 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [42] = {.index = 97, .length = 1}, [43] = {.index = 98, .length = 3}, [44] = {.index = 101, .length = 4}, - [45] = {.index = 105, .length = 5}, - [46] = {.index = 110, .length = 2}, + [45] = {.index = 105, .length = 2}, + [46] = {.index = 107, .length = 5}, [47] = {.index = 112, .length = 2}, [48] = {.index = 114, .length = 2}, - [49] = {.index = 116, .length = 3}, - [50] = {.index = 119, .length = 2}, - [51] = {.index = 121, .length = 1}, - [52] = {.index = 122, .length = 4}, - [53] = {.index = 126, .length = 5}, - [54] = {.index = 131, .length = 3}, - [55] = {.index = 134, .length = 5}, - [56] = {.index = 139, .length = 5}, - [57] = {.index = 144, .length = 2}, + [49] = {.index = 116, .length = 2}, + [50] = {.index = 118, .length = 3}, + [51] = {.index = 121, .length = 2}, + [52] = {.index = 123, .length = 1}, + [53] = {.index = 124, .length = 4}, + [54] = {.index = 128, .length = 5}, + [55] = {.index = 133, .length = 3}, + [56] = {.index = 136, .length = 5}, + [57] = {.index = 141, .length = 5}, [58] = {.index = 146, .length = 2}, [59] = {.index = 148, .length = 2}, - [60] = {.index = 150, .length = 4}, - [61] = {.index = 154, .length = 2}, - [62] = {.index = 156, .length = 4}, - [63] = {.index = 160, .length = 6}, - [64] = {.index = 166, .length = 3}, - [65] = {.index = 169, .length = 2}, + [60] = {.index = 150, .length = 2}, + [61] = {.index = 152, .length = 4}, + [62] = {.index = 156, .length = 2}, + [63] = {.index = 158, .length = 4}, + [64] = {.index = 162, .length = 6}, + [65] = {.index = 168, .length = 3}, [66] = {.index = 171, .length = 2}, - [67] = {.index = 173, .length = 3}, - [68] = {.index = 176, .length = 5}, - [69] = {.index = 181, .length = 3}, - [70] = {.index = 184, .length = 3}, - [71] = {.index = 187, .length = 4}, - [72] = {.index = 191, .length = 2}, - [73] = {.index = 193, .length = 3}, - [74] = {.index = 196, .length = 2}, - [75] = {.index = 198, .length = 6}, - [76] = {.index = 204, .length = 4}, - [77] = {.index = 208, .length = 5}, - [78] = {.index = 213, .length = 2}, - [79] = {.index = 215, .length = 4}, + [67] = {.index = 173, .length = 2}, + [68] = {.index = 175, .length = 3}, + [69] = {.index = 178, .length = 5}, + [70] = {.index = 183, .length = 3}, + [71] = {.index = 186, .length = 3}, + [72] = {.index = 189, .length = 4}, + [73] = {.index = 193, .length = 2}, + [74] = {.index = 195, .length = 3}, + [75] = {.index = 198, .length = 2}, + [76] = {.index = 200, .length = 6}, + [77] = {.index = 206, .length = 4}, + [78] = {.index = 210, .length = 5}, + [79] = {.index = 215, .length = 2}, + [80] = {.index = 217, .length = 4}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -1843,150 +1942,153 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_parameters, 3}, {field_result, 5}, [105] = + {field_arguments, 0}, + {field_name, 1}, + [107] = {field_arrangement, 1}, {field_attributes, 2}, {field_body, 6}, {field_name, 4}, {field_parameters, 5}, - [110] = + [112] = {field_body, 1}, {field_handler, 2}, - [112] = + [114] = {field_left, 0}, {field_right, 2}, - [114] = + [116] = {field_name, 0}, {field_value, 2}, - [116] = + [118] = {field_alternative, 4}, {field_condition, 0}, {field_consequence, 2}, - [119] = + [121] = {field_tlb, 2}, {field_type, 1}, - [121] = + [123] = {field_body, 3}, - [122] = + [124] = {field_attributes, 0}, {field_name, 2}, {field_parameters, 3}, {field_result, 5}, - [126] = + [128] = {field_attributes, 0}, {field_body, 6}, {field_name, 2}, {field_parameters, 3}, {field_result, 5}, - [131] = + [133] = {field_func_name, 2}, {field_name, 5}, {field_parameters, 6}, - [134] = + [136] = {field_arrangement, 1}, {field_body, 7}, {field_name, 3}, {field_parameters, 4}, {field_result, 6}, - [139] = + [141] = {field_attributes, 1}, {field_body, 7}, {field_name, 3}, {field_parameters, 4}, {field_result, 6}, - [144] = + [146] = {field_name, 1}, {field_value, 3}, - [146] = + [148] = {field_type, 1}, {field_value, 3}, - [148] = + [150] = {field_body, 4}, {field_parameter, 2}, - [150] = + [152] = {field_attributes, 0}, {field_name, 2}, {field_type, 4}, {field_value, 6}, - [154] = + [156] = {field_key, 2}, {field_value, 4}, - [156] = + [158] = {field_attributes, 4}, {field_func_name, 2}, {field_name, 6}, {field_parameters, 7}, - [160] = + [162] = {field_arrangement, 1}, {field_attributes, 2}, {field_body, 8}, {field_name, 4}, {field_parameters, 5}, {field_result, 7}, - [166] = + [168] = {field_binds, 2}, {field_name, 1}, {field_value, 4}, - [169] = + [171] = {field_condition, 2}, {field_consequence, 4}, - [171] = + [173] = {field_body, 4}, {field_condition, 2}, - [173] = + [175] = {field_tlb, 2}, {field_type, 1}, {field_value, 4}, - [176] = + [178] = {field_body, 5}, {field_name, 1}, {field_parameters, 2}, {field_result, 3}, {field_result, 4}, - [181] = + [183] = {field_key, 2}, {field_tlb_value, 5}, {field_value, 4}, - [184] = + [186] = {field_key, 2}, {field_tlb_key, 3}, {field_value, 5}, - [187] = + [189] = {field_func_name, 2}, {field_name, 5}, {field_parameters, 6}, {field_result, 8}, - [191] = + [193] = {field_bind, 2}, {field_name, 0}, - [193] = + [195] = {field_alternative, 5}, {field_condition, 2}, {field_consequence, 4}, - [196] = + [198] = {field_body, 1}, {field_condition, 4}, - [198] = + [200] = {field_attributes, 0}, {field_body, 6}, {field_name, 2}, {field_parameters, 3}, {field_result, 4}, {field_result, 5}, - [204] = + [206] = {field_key, 2}, {field_tlb_key, 3}, {field_tlb_value, 6}, {field_value, 5}, - [208] = + [210] = {field_attributes, 4}, {field_func_name, 2}, {field_name, 6}, {field_parameters, 7}, {field_result, 9}, - [213] = + [215] = {field_body, 4}, {field_name, 2}, - [215] = + [217] = {field_body, 8}, {field_key, 2}, {field_map, 6}, @@ -2019,19 +2121,19 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [40] = { [2] = alias_sym_function_body, }, - [51] = { + [52] = { [3] = alias_sym_function_body, }, - [53] = { + [54] = { [6] = alias_sym_function_body, }, - [59] = { + [60] = { [4] = alias_sym_function_body, }, - [68] = { + [69] = { [5] = alias_sym_function_body, }, - [75] = { + [76] = { [6] = alias_sym_function_body, }, }; @@ -2055,8 +2157,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2] = 2, [3] = 3, [4] = 4, - [5] = 2, - [6] = 3, + [5] = 3, + [6] = 2, [7] = 7, [8] = 8, [9] = 9, @@ -2148,7 +2250,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [95] = 95, [96] = 96, [97] = 97, - [98] = 98, + [98] = 61, [99] = 99, [100] = 100, [101] = 101, @@ -2178,17 +2280,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [125] = 125, [126] = 126, [127] = 127, - [128] = 10, - [129] = 11, - [130] = 12, + [128] = 128, + [129] = 129, + [130] = 130, [131] = 131, [132] = 132, [133] = 133, [134] = 134, [135] = 135, - [136] = 136, - [137] = 137, - [138] = 138, + [136] = 11, + [137] = 10, + [138] = 12, [139] = 139, [140] = 140, [141] = 141, @@ -2251,8 +2353,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [198] = 198, [199] = 199, [200] = 200, - [201] = 201, - [202] = 202, + [201] = 184, + [202] = 186, [203] = 203, [204] = 204, [205] = 205, @@ -2293,8 +2395,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [240] = 240, [241] = 241, [242] = 242, - [243] = 215, - [244] = 219, + [243] = 243, + [244] = 244, [245] = 245, [246] = 246, [247] = 247, @@ -2422,7 +2524,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [369] = 369, [370] = 370, [371] = 371, - [372] = 372, + [372] = 369, [373] = 373, [374] = 374, [375] = 375, @@ -2447,14 +2549,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [394] = 394, [395] = 395, [396] = 396, - [397] = 332, + [397] = 397, [398] = 398, - [399] = 343, + [399] = 399, [400] = 400, [401] = 401, [402] = 402, [403] = 403, - [404] = 404, + [404] = 383, [405] = 405, [406] = 406, [407] = 407, @@ -2545,19 +2647,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [492] = 492, [493] = 493, [494] = 494, - [495] = 471, - [496] = 473, - [497] = 477, + [495] = 495, + [496] = 496, + [497] = 497, [498] = 498, - [499] = 499, + [499] = 455, [500] = 500, [501] = 501, - [502] = 501, - [503] = 503, - [504] = 504, - [505] = 505, - [506] = 505, - [507] = 503, }; static TSCharacterRange sym__func_plain_id_character_set_1[] = { @@ -2570,1255 +2666,1049 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(57); + if (eof) ADVANCE(89); ADVANCE_MAP( - '\n', 150, - '!', 108, - '"', 151, - '%', 108, - '&', 96, - '(', 145, - ')', 145, - '*', 108, - '+', 108, - ',', 145, - '-', 106, - '.', 103, - '/', 97, - '0', 109, - ':', 145, - ';', 145, - '<', 104, - '=', 108, - '>', 105, - '?', 145, - '@', 123, - '\\', 132, - '^', 108, - 'a', 117, - 'c', 122, - '{', 145, - '|', 107, - '}', 145, - '~', 145, + '!', 181, + '"', 115, + '%', 179, + '&', 160, + '(', 95, + ')', 96, + '*', 177, + '+', 173, + ',', 140, + '-', 176, + '.', 186, + '/', 178, + '0', 213, + ':', 91, + ';', 90, + '<', 168, + '=', 93, + '>', 164, + '?', 155, + '@', 47, + 'B', 201, + '\\', 57, + '^', 159, + '`', 86, + 'a', 197, + 'b', 202, + 'c', 204, + 's', 205, + 'x', 203, + '{', 98, + '|', 158, + '}', 99, + '~', 183, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(145); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(110); + lookahead == ' ') SKIP(87); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(217); if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(144); - if (lookahead != 0) ADVANCE(145); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(206); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(70); - if (lookahead == '"') ADVANCE(151); - if (lookahead == '/') ADVANCE(202); - if (lookahead == '\\') ADVANCE(39); + if (lookahead == '\n') SKIP(18); + if (lookahead == '"') ADVANCE(115); + if (lookahead == '/') ADVANCE(207); + if (lookahead == '\\') ADVANCE(57); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(205); - if (lookahead != 0) ADVANCE(205); + lookahead == ' ') ADVANCE(210); + if (lookahead != 0) ADVANCE(211); END_STATE(); case 2: ADVANCE_MAP( - '!', 3, - '"', 151, - '%', 187, - '&', 172, - '(', 63, - ')', 64, - '*', 185, - '+', 183, - ',', 152, - '-', 184, - '.', 191, - '/', 186, - '0', 212, - ':', 59, - ';', 58, - '<', 178, - '=', 61, - '>', 175, - '?', 167, - '^', 171, - '{', 66, - '|', 170, - '}', 68, + '!', 4, + '"', 115, + '%', 179, + '&', 160, + '(', 95, + ')', 96, + '*', 177, + '+', 173, + ',', 140, + '-', 175, + '.', 185, + '/', 178, + '0', 222, + ':', 91, + ';', 90, + '<', 167, + '=', 93, + '>', 164, + '?', 155, + '^', 159, + '{', 98, + '|', 158, + '}', 99, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(70); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(212); + lookahead == ' ') SKIP(3); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(222); END_STATE(); case 3: - if (lookahead == '!') ADVANCE(190); - if (lookahead == '=') ADVANCE(173); - END_STATE(); - case 4: ADVANCE_MAP( - '"', 93, - '+', 74, - '.', 75, - '/', 77, - 'a', 81, - 'c', 82, - '{', 67, - '}', 69, + '!', 4, + '%', 179, + '&', 160, + '(', 95, + ')', 96, + '*', 177, + '+', 173, + ',', 140, + '-', 175, + '.', 185, + '/', 178, + '0', 222, + ':', 91, + ';', 90, + '<', 167, + '=', 93, + '>', 164, + '?', 155, + '^', 159, + '{', 98, + '|', 158, + '}', 99, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(70); - if (lookahead != 0) ADVANCE(88); + lookahead == ' ') SKIP(3); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(222); + END_STATE(); + case 4: + if (lookahead == '!') ADVANCE(184); + if (lookahead == '=') ADVANCE(161); END_STATE(); case 5: - if (lookahead == '"') ADVANCE(93); - if (lookahead == '+') ADVANCE(74); - if (lookahead == '.') ADVANCE(75); - if (lookahead == '/') ADVANCE(77); - if (lookahead == 'a') ADVANCE(81); - if (lookahead == 'c') ADVANCE(82); - if (lookahead == '}') ADVANCE(69); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(70); - if (lookahead != 0) ADVANCE(88); + if (lookahead == '"') ADVANCE(106); END_STATE(); case 6: - if (lookahead == '&') ADVANCE(20); - if (lookahead == '=') ADVANCE(160); + ADVANCE_MAP( + '"', 108, + ')', 96, + '+', 9, + '-', 21, + '.', 5, + '/', 13, + '0', 129, + '<', 38, + 'B', 138, + 'a', 39, + 'b', 58, + 'c', 77, + 's', 78, + 'x', 59, + '}', 25, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(6); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(133); + if (lookahead == '#' || + lookahead == ':' || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(139); END_STATE(); case 7: - if (lookahead == ')') ADVANCE(64); - if (lookahead == '-') ADVANCE(24); - if (lookahead == '/') ADVANCE(8); + ADVANCE_MAP( + '"', 108, + '+', 9, + '-', 22, + '.', 5, + '/', 13, + '0', 129, + '<', 38, + 'B', 138, + 'a', 39, + 'b', 58, + 'c', 77, + 's', 78, + 'x', 59, + '}', 99, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(70); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(201); + lookahead == ' ') SKIP(7); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(133); + if (lookahead == '#' || + lookahead == ':' || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(139); END_STATE(); case 8: - if (lookahead == '*') ADVANCE(11); - if (lookahead == '/') ADVANCE(214); + if (lookahead == '"') ADVANCE(105); END_STATE(); case 9: - if (lookahead == '*') ADVANCE(11); - if (lookahead == '/') ADVANCE(214); - if (lookahead == '=') ADVANCE(158); + if (lookahead == '"') ADVANCE(107); END_STATE(); case 10: - if (lookahead == '*') ADVANCE(10); - if (lookahead == '/') ADVANCE(213); - if (lookahead != 0) ADVANCE(11); + if (lookahead == '(') ADVANCE(12); END_STATE(); case 11: - if (lookahead == '*') ADVANCE(10); - if (lookahead != 0) ADVANCE(11); + if (lookahead == ')') ADVANCE(96); + if (lookahead == '-') ADVANCE(23); + if (lookahead == '/') ADVANCE(13); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(11); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(206); END_STATE(); case 12: - if (lookahead == '.') ADVANCE(154); + if (lookahead == ')') ADVANCE(128); END_STATE(); case 13: - if (lookahead == '/') ADVANCE(194); - if (lookahead == '`') ADVANCE(197); - if (lookahead == '.' || - lookahead == '~') ADVANCE(25); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(70); - if (lookahead != 0 && - lookahead != '(' && - lookahead != ')' && - lookahead != ',' && - lookahead != ';' && - lookahead != '[' && - lookahead != ']') ADVANCE(200); + if (lookahead == '*') ADVANCE(15); + if (lookahead == '/') ADVANCE(224); END_STATE(); case 14: - if (lookahead == '/') ADVANCE(73); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(70); - if (lookahead != 0) ADVANCE(72); + if (lookahead == '*') ADVANCE(14); + if (lookahead == '/') ADVANCE(223); + if (lookahead != 0) ADVANCE(15); END_STATE(); case 15: - if (lookahead == '/') ADVANCE(100); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(150); - if (lookahead != 0 && - lookahead != '"') ADVANCE(150); + if (lookahead == '*') ADVANCE(14); + if (lookahead != 0) ADVANCE(15); END_STATE(); case 16: - if (lookahead == '=') ADVANCE(159); + if (lookahead == '-') ADVANCE(85); + if (lookahead == '/') ADVANCE(13); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(16); + if (lookahead == '#' || + ('0' <= lookahead && lookahead <= ':') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(139); END_STATE(); case 17: - if (lookahead == '=') ADVANCE(157); + if (lookahead == '.') ADVANCE(142); END_STATE(); case 18: - if (lookahead == '=') ADVANCE(162); + if (lookahead == '/') ADVANCE(13); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(18); END_STATE(); case 19: - if (lookahead == '=') ADVANCE(161); - if (lookahead == '|') ADVANCE(23); + if (lookahead == '/') ADVANCE(189); + if (lookahead == '`') ADVANCE(192); + if (lookahead == '.' || + lookahead == '~') ADVANCE(34); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(19); + if (lookahead != 0 && + lookahead != '(' && + lookahead != ')' && + lookahead != ',' && + lookahead != ';' && + lookahead != '[' && + lookahead != ']') ADVANCE(195); END_STATE(); case 20: - if (lookahead == '=') ADVANCE(164); + if (lookahead == '/') ADVANCE(110); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(113); + if (lookahead != 0 && + lookahead != '"') ADVANCE(114); END_STATE(); case 21: - if (lookahead == '=') ADVANCE(166); + if (lookahead == '0') ADVANCE(130); + if (lookahead == '>') ADVANCE(97); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(134); + if (lookahead == '#' || + lookahead == ':' || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(139); END_STATE(); case 22: - if (lookahead == '=') ADVANCE(165); + if (lookahead == '0') ADVANCE(130); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(134); + if (lookahead == '#' || + lookahead == ':' || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(139); END_STATE(); case 23: - if (lookahead == '=') ADVANCE(163); + if (lookahead == '>') ADVANCE(97); END_STATE(); case 24: - if (lookahead == '>') ADVANCE(65); + if (lookahead == '>') ADVANCE(37); END_STATE(); case 25: - if (lookahead == '`') ADVANCE(197); - if ((!eof && set_contains(sym__func_plain_id_character_set_1, 10, lookahead))) ADVANCE(200); + if (lookahead == '>') ADVANCE(104); END_STATE(); case 26: - if (lookahead == '`') ADVANCE(192); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(26); + if (lookahead == '>') ADVANCE(119); END_STATE(); case 27: - if (lookahead == 'a') ADVANCE(35); + if (lookahead == 'B') ADVANCE(24); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(27); END_STATE(); case 28: - if (lookahead == 'a') ADVANCE(29); + if (lookahead == 'N') ADVANCE(30); END_STATE(); case 29: - if (lookahead == 'c') ADVANCE(32); + if (lookahead == 'O') ADVANCE(28); END_STATE(); case 30: - if (lookahead == 'e') ADVANCE(37); + if (lookahead == 'T') ADVANCE(103); END_STATE(); case 31: - if (lookahead == 'e') ADVANCE(62); + if (lookahead == '_') ADVANCE(67); + if (lookahead == '}') ADVANCE(72); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(31); END_STATE(); case 32: - if (lookahead == 'e') ADVANCE(153); + if (lookahead == '_') ADVANCE(69); + if (lookahead == '}') ADVANCE(116); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(32); END_STATE(); case 33: - if (lookahead == 'f') ADVANCE(28); + if (lookahead == '`') ADVANCE(187); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(33); END_STATE(); case 34: - if (lookahead == 'i') ADVANCE(36); - if (lookahead == 'n') ADVANCE(27); + if (lookahead == '`') ADVANCE(192); + if ((!eof && set_contains(sym__func_plain_id_character_set_1, 10, lookahead))) ADVANCE(195); END_STATE(); case 35: - if (lookahead == 'm') ADVANCE(31); + if (lookahead == 'a') ADVANCE(48); END_STATE(); case 36: - if (lookahead == 'n') ADVANCE(38); + if (lookahead == 'a') ADVANCE(42); END_STATE(); case 37: - if (lookahead == 'r') ADVANCE(33); + if (lookahead == 'b') ADVANCE(51); END_STATE(); case 38: - if (lookahead == 't') ADVANCE(30); + if (lookahead == 'b') ADVANCE(73); + if (lookahead == '{') ADVANCE(100); END_STATE(); case 39: - ADVANCE_MAP( - 'u', 40, - 'x', 55, - '"', 206, - '\\', 206, - 'b', 206, - 'f', 206, - 'n', 206, - 'r', 206, - 't', 206, - 'v', 206, - ); + if (lookahead == 'b') ADVANCE(50); END_STATE(); case 40: - if (lookahead == '{') ADVANCE(53); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(54); + if (lookahead == 'b') ADVANCE(26); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(40); END_STATE(); case 41: - if (lookahead == '}') ADVANCE(206); + if (lookahead == 'c') ADVANCE(118); END_STATE(); case 42: - if (lookahead == '}') ADVANCE(206); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(41); + if (lookahead == 'c') ADVANCE(45); END_STATE(); case 43: - if (lookahead == '}') ADVANCE(206); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(42); + if (lookahead == 'e') ADVANCE(52); END_STATE(); case 44: - if (lookahead == '}') ADVANCE(206); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(43); + if (lookahead == 'e') ADVANCE(94); END_STATE(); case 45: - if (lookahead == '}') ADVANCE(206); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(44); + if (lookahead == 'e') ADVANCE(141); END_STATE(); case 46: - if (lookahead == '}') ADVANCE(206); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(45); + if (lookahead == 'f') ADVANCE(36); END_STATE(); case 47: - if (lookahead == '0' || - lookahead == '1') ADVANCE(209); + if (lookahead == 'i') ADVANCE(49); + if (lookahead == 'n') ADVANCE(35); END_STATE(); case 48: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(210); + if (lookahead == 'm') ADVANCE(44); END_STATE(); case 49: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(208); + if (lookahead == 'n') ADVANCE(55); END_STATE(); case 50: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(212); + if (lookahead == 'o') ADVANCE(53); END_STATE(); case 51: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(211); + if (lookahead == 'o') ADVANCE(41); END_STATE(); case 52: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(206); + if (lookahead == 'r') ADVANCE(46); END_STATE(); case 53: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(46); + if (lookahead == 'r') ADVANCE(56); END_STATE(); case 54: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(55); + if (lookahead == 's') ADVANCE(10); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(54); END_STATE(); case 55: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(52); + if (lookahead == 't') ADVANCE(43); END_STATE(); case 56: - if (eof) ADVANCE(57); - ADVANCE_MAP( - '!', 188, - '"', 92, - '%', 16, - '&', 6, - '(', 63, - ')', 64, - '*', 17, - '+', 183, - ',', 152, - '-', 184, - '.', 12, - '/', 9, - '0', 207, - ':', 59, - ';', 58, - '<', 179, - '=', 60, - '>', 176, - '?', 167, - '@', 34, - '^', 18, - '{', 66, - '|', 19, - '}', 68, - '~', 189, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(70); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(208); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(201); + if (lookahead == 't') ADVANCE(8); END_STATE(); case 57: - ACCEPT_TOKEN(ts_builtin_sym_end); + ADVANCE_MAP( + 'u', 60, + 'x', 84, + '"', 212, + '\\', 212, + 'b', 212, + 'f', 212, + 'n', 212, + 'r', 212, + 't', 212, + 'v', 212, + ); END_STATE(); case 58: - ACCEPT_TOKEN(anon_sym_SEMI); + if (lookahead == '{') ADVANCE(68); END_STATE(); case 59: - ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == '{') ADVANCE(32); END_STATE(); case 60: - ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '{') ADVANCE(81); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(83); END_STATE(); case 61: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(174); + if (lookahead == '}') ADVANCE(212); END_STATE(); case 62: - ACCEPT_TOKEN(anon_sym_ATname); + if (lookahead == '}') ADVANCE(212); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(63); END_STATE(); case 63: - ACCEPT_TOKEN(anon_sym_LPAREN); + if (lookahead == '}') ADVANCE(212); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(61); END_STATE(); case 64: - ACCEPT_TOKEN(anon_sym_RPAREN); + if (lookahead == '}') ADVANCE(212); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(62); END_STATE(); case 65: - ACCEPT_TOKEN(anon_sym_DASH_GT); + if (lookahead == '}') ADVANCE(212); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(64); END_STATE(); case 66: - ACCEPT_TOKEN(anon_sym_LBRACE); + if (lookahead == '}') ADVANCE(212); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(65); END_STATE(); case 67: - ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(88); + if (lookahead == '}') ADVANCE(72); END_STATE(); case 68: - ACCEPT_TOKEN(anon_sym_RBRACE); + if (lookahead == '}') ADVANCE(117); + if (lookahead == '0' || + lookahead == '1') ADVANCE(68); END_STATE(); case 69: - ACCEPT_TOKEN(anon_sym_RBRACE); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(88); + if (lookahead == '}') ADVANCE(116); END_STATE(); case 70: - ACCEPT_TOKEN(aux_sym_asm_list_token1); + if (lookahead == '0' || + lookahead == '1') ADVANCE(219); END_STATE(); case 71: - ACCEPT_TOKEN(anon_sym_char); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(88); + if (lookahead == '0' || + lookahead == '1') ADVANCE(135); END_STATE(); case 72: - ACCEPT_TOKEN(aux_sym__asm_instruction_token1); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(27); END_STATE(); case 73: - ACCEPT_TOKEN(aux_sym__asm_instruction_token1); - if (lookahead == '*') ADVANCE(11); - if (lookahead == '/') ADVANCE(214); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(40); END_STATE(); case 74: - ACCEPT_TOKEN(aux_sym__asm_instruction_token2); - if (lookahead == '"') ADVANCE(91); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(88); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(220); END_STATE(); case 75: - ACCEPT_TOKEN(aux_sym__asm_instruction_token2); - if (lookahead == '"') ADVANCE(90); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(88); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(218); END_STATE(); case 76: - ACCEPT_TOKEN(aux_sym__asm_instruction_token2); - if (lookahead == '"') ADVANCE(89); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(88); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(222); END_STATE(); case 77: - ACCEPT_TOKEN(aux_sym__asm_instruction_token2); - if (lookahead == '*') ADVANCE(79); - if (lookahead == '/') ADVANCE(87); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(88); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(122); END_STATE(); case 78: - ACCEPT_TOKEN(aux_sym__asm_instruction_token2); - if (lookahead == '*') ADVANCE(78); - if (lookahead == '/') ADVANCE(88); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(11); - if (lookahead != 0) ADVANCE(79); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(126); END_STATE(); case 79: - ACCEPT_TOKEN(aux_sym__asm_instruction_token2); - if (lookahead == '*') ADVANCE(78); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(11); - if (lookahead != 0) ADVANCE(79); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(212); END_STATE(); case 80: - ACCEPT_TOKEN(aux_sym__asm_instruction_token2); - if (lookahead == 'a') ADVANCE(85); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(88); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(221); END_STATE(); case 81: - ACCEPT_TOKEN(aux_sym__asm_instruction_token2); - if (lookahead == 'b') ADVANCE(83); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(88); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(66); END_STATE(); case 82: - ACCEPT_TOKEN(aux_sym__asm_instruction_token2); - if (lookahead == 'h') ADVANCE(80); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(88); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(136); END_STATE(); case 83: - ACCEPT_TOKEN(aux_sym__asm_instruction_token2); - if (lookahead == 'o') ADVANCE(84); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(88); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(84); END_STATE(); case 84: - ACCEPT_TOKEN(aux_sym__asm_instruction_token2); - if (lookahead == 'r') ADVANCE(86); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(88); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(79); END_STATE(); case 85: - ACCEPT_TOKEN(aux_sym__asm_instruction_token2); - if (lookahead == 'r') ADVANCE(71); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(88); + if (lookahead == '#' || + ('0' <= lookahead && lookahead <= ':') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(139); END_STATE(); case 86: - ACCEPT_TOKEN(aux_sym__asm_instruction_token2); - if (lookahead == 't') ADVANCE(76); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(88); + lookahead != '\n' && + lookahead != '`') ADVANCE(33); END_STATE(); case 87: - ACCEPT_TOKEN(aux_sym__asm_instruction_token2); - if (lookahead == '\t' || - (0x0b <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(214); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(87); - END_STATE(); - case 88: - ACCEPT_TOKEN(aux_sym__asm_instruction_token2); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(88); + if (eof) ADVANCE(89); + ADVANCE_MAP( + '!', 181, + '"', 108, + '%', 179, + '&', 160, + '(', 95, + ')', 96, + '*', 177, + '+', 173, + ',', 140, + '-', 176, + '.', 186, + '/', 178, + '0', 213, + ':', 91, + ';', 90, + '<', 168, + '=', 93, + '>', 164, + '?', 155, + '@', 47, + 'B', 201, + '^', 159, + '`', 86, + 'a', 197, + 'b', 202, + 'c', 204, + 's', 205, + 'x', 203, + '{', 98, + '|', 158, + '}', 99, + '~', 183, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(87); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(217); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(206); + END_STATE(); + case 88: + if (eof) ADVANCE(89); + ADVANCE_MAP( + '!', 180, + '"', 108, + '(', 95, + ')', 96, + '+', 172, + ',', 140, + '-', 174, + '.', 17, + '/', 13, + '0', 214, + ';', 90, + '<', 166, + '=', 92, + '>', 163, + '?', 155, + '@', 47, + '{', 98, + '}', 99, + '~', 182, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(88); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(218); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(206); END_STATE(); case 89: - ACCEPT_TOKEN(anon_sym_abort_DQUOTE); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(88); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 90: - ACCEPT_TOKEN(anon_sym_DOT_DQUOTE); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(88); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 91: - ACCEPT_TOKEN(anon_sym_PLUS_DQUOTE); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(88); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 92: - ACCEPT_TOKEN(anon_sym_DQUOTE); + ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); case 93: - ACCEPT_TOKEN(anon_sym_DQUOTE); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(88); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(162); END_STATE(); case 94: - ACCEPT_TOKEN(aux_sym__asm_string_token1); - if (lookahead == '\n') ADVANCE(150); - if (lookahead == '\\') ADVANCE(95); - if (lookahead != 0 && - lookahead != '"') ADVANCE(94); + ACCEPT_TOKEN(anon_sym_ATname); END_STATE(); case 95: - ACCEPT_TOKEN(aux_sym__asm_string_token1); - if (lookahead == '\n') ADVANCE(150); - if (lookahead != 0 && - lookahead != '"') ADVANCE(95); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 96: - ACCEPT_TOKEN(aux_sym__asm_string_token1); - if (lookahead == '&') ADVANCE(108); - if (lookahead == '=') ADVANCE(145); - if (lookahead == '\n' || - lookahead == '\\') ADVANCE(150); - if (lookahead != 0 && - lookahead != '"') ADVANCE(145); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 97: - ACCEPT_TOKEN(aux_sym__asm_string_token1); - if (lookahead == '*') ADVANCE(99); - if (lookahead == '/') ADVANCE(94); - if (lookahead == '=') ADVANCE(145); - if (lookahead == '\n' || - lookahead == '\\') ADVANCE(150); - if (lookahead != 0 && - lookahead != '"') ADVANCE(145); + ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); case 98: - ACCEPT_TOKEN(aux_sym__asm_string_token1); - if (lookahead == '*') ADVANCE(98); - if (lookahead == '/') ADVANCE(145); - if (lookahead == '\n' || - lookahead == '\\') ADVANCE(102); - if (lookahead != 0 && - lookahead != '"') ADVANCE(99); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 99: - ACCEPT_TOKEN(aux_sym__asm_string_token1); - if (lookahead == '*') ADVANCE(98); - if (lookahead == '\n' || - lookahead == '\\') ADVANCE(102); - if (lookahead != 0 && - lookahead != '"') ADVANCE(99); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 100: - ACCEPT_TOKEN(aux_sym__asm_string_token1); - if (lookahead == '*') ADVANCE(102); - if (lookahead == '/') ADVANCE(95); - if (lookahead != 0 && - lookahead != '"') ADVANCE(150); + ACCEPT_TOKEN(anon_sym_LT_LBRACE); END_STATE(); case 101: - ACCEPT_TOKEN(aux_sym__asm_string_token1); - if (lookahead == '*') ADVANCE(101); - if (lookahead == '/') ADVANCE(150); - if (lookahead != 0 && - lookahead != '"') ADVANCE(102); + ACCEPT_TOKEN(anon_sym_RBRACE_GTc); END_STATE(); case 102: - ACCEPT_TOKEN(aux_sym__asm_string_token1); - if (lookahead == '*') ADVANCE(101); - if (lookahead != 0 && - lookahead != '"') ADVANCE(102); + ACCEPT_TOKEN(anon_sym_RBRACE_GTs); END_STATE(); case 103: - ACCEPT_TOKEN(aux_sym__asm_string_token1); - if (lookahead == '.') ADVANCE(145); - if (lookahead == '\n' || - lookahead == '\\') ADVANCE(150); - if (lookahead != 0 && - lookahead != '"') ADVANCE(145); + ACCEPT_TOKEN(anon_sym_RBRACE_GTCONT); END_STATE(); case 104: - ACCEPT_TOKEN(aux_sym__asm_string_token1); - if (lookahead == '<') ADVANCE(108); - if (lookahead == '=') ADVANCE(145); - if (lookahead == '\n' || - lookahead == '\\') ADVANCE(150); - if (lookahead != 0 && - lookahead != '"') ADVANCE(145); + ACCEPT_TOKEN(anon_sym_RBRACE_GT); + if (lookahead == 'C') ADVANCE(29); + if (lookahead == 'c') ADVANCE(101); + if (lookahead == 's') ADVANCE(102); END_STATE(); case 105: - ACCEPT_TOKEN(aux_sym__asm_string_token1); - if (lookahead == '=') ADVANCE(145); - if (lookahead == '>') ADVANCE(108); - if (lookahead == '\n' || - lookahead == '\\') ADVANCE(150); - if (lookahead != 0 && - lookahead != '"') ADVANCE(145); + ACCEPT_TOKEN(anon_sym_abort_DQUOTE); END_STATE(); case 106: - ACCEPT_TOKEN(aux_sym__asm_string_token1); - if (lookahead == '=') ADVANCE(145); - if (lookahead == '>') ADVANCE(145); - if (lookahead == '\n' || - lookahead == '\\') ADVANCE(150); - if (lookahead != 0 && - lookahead != '"') ADVANCE(145); + ACCEPT_TOKEN(anon_sym_DOT_DQUOTE); END_STATE(); case 107: - ACCEPT_TOKEN(aux_sym__asm_string_token1); - if (lookahead == '=') ADVANCE(145); - if (lookahead == '|') ADVANCE(108); - if (lookahead == '\n' || - lookahead == '\\') ADVANCE(150); - if (lookahead != 0 && - lookahead != '"') ADVANCE(145); + ACCEPT_TOKEN(anon_sym_PLUS_DQUOTE); END_STATE(); case 108: - ACCEPT_TOKEN(aux_sym__asm_string_token1); - if (lookahead == '=') ADVANCE(145); - if (lookahead == '\n' || - lookahead == '\\') ADVANCE(150); - if (lookahead != 0 && - lookahead != '"') ADVANCE(145); + ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); case 109: - ACCEPT_TOKEN(aux_sym__asm_string_token1); - ADVANCE_MAP( - '_', 142, - '\n', 150, - '\\', 150, - 'B', 140, - 'b', 140, - 'O', 141, - 'o', 141, - 'X', 143, - 'x', 143, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(110); + ACCEPT_TOKEN(aux_sym_asm_string_token1); + if (lookahead == '\n') ADVANCE(114); if (lookahead != 0 && - lookahead != '"') ADVANCE(145); + lookahead != '"') ADVANCE(109); END_STATE(); case 110: - ACCEPT_TOKEN(aux_sym__asm_string_token1); - if (lookahead == '_') ADVANCE(142); - if (lookahead == '\n' || - lookahead == '\\') ADVANCE(150); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(110); + ACCEPT_TOKEN(aux_sym_asm_string_token1); + if (lookahead == '*') ADVANCE(112); + if (lookahead == '/') ADVANCE(109); if (lookahead != 0 && - lookahead != '"') ADVANCE(145); + lookahead != '"') ADVANCE(114); END_STATE(); case 111: - ACCEPT_TOKEN(aux_sym__asm_string_token1); - if (lookahead == '_') ADVANCE(140); - if (lookahead == '\n' || - lookahead == '\\') ADVANCE(150); - if (lookahead == '0' || - lookahead == '1') ADVANCE(111); + ACCEPT_TOKEN(aux_sym_asm_string_token1); + if (lookahead == '*') ADVANCE(111); + if (lookahead == '/') ADVANCE(114); if (lookahead != 0 && - lookahead != '"') ADVANCE(145); + lookahead != '"') ADVANCE(112); END_STATE(); case 112: - ACCEPT_TOKEN(aux_sym__asm_string_token1); - if (lookahead == '_') ADVANCE(141); - if (lookahead == '\n' || - lookahead == '\\') ADVANCE(150); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(112); + ACCEPT_TOKEN(aux_sym_asm_string_token1); + if (lookahead == '*') ADVANCE(111); if (lookahead != 0 && - lookahead != '"') ADVANCE(145); + lookahead != '"') ADVANCE(112); END_STATE(); case 113: - ACCEPT_TOKEN(aux_sym__asm_string_token1); - if (lookahead == '_') ADVANCE(143); - if (lookahead == '\n' || - lookahead == '\\') ADVANCE(150); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(113); + ACCEPT_TOKEN(aux_sym_asm_string_token1); + if (lookahead == '/') ADVANCE(110); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(113); if (lookahead != 0 && - lookahead != '"') ADVANCE(145); + lookahead != '"') ADVANCE(114); END_STATE(); case 114: - ACCEPT_TOKEN(aux_sym__asm_string_token1); - if (lookahead == 'a') ADVANCE(124); - if (lookahead == '\n' || - lookahead == '\\') ADVANCE(150); + ACCEPT_TOKEN(aux_sym_asm_string_token1); if (lookahead != 0 && - lookahead != '"') ADVANCE(145); + lookahead != '"') ADVANCE(114); END_STATE(); case 115: - ACCEPT_TOKEN(aux_sym__asm_string_token1); - if (lookahead == 'a') ADVANCE(118); - if (lookahead == '\n' || - lookahead == '\\') ADVANCE(150); - if (lookahead != 0 && - lookahead != '"') ADVANCE(145); + ACCEPT_TOKEN(anon_sym_DQUOTE2); END_STATE(); case 116: - ACCEPT_TOKEN(aux_sym__asm_string_token1); - if (lookahead == 'a') ADVANCE(127); - if (lookahead == '\n' || - lookahead == '\\') ADVANCE(150); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(144); - if (lookahead != 0 && - lookahead != '"') ADVANCE(145); + ACCEPT_TOKEN(sym_asm_hex_bitstring); END_STATE(); case 117: - ACCEPT_TOKEN(aux_sym__asm_string_token1); - if (lookahead == 'b') ADVANCE(126); - if (lookahead == '\n' || - lookahead == '\\') ADVANCE(150); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); - if (lookahead != 0 && - lookahead != '"') ADVANCE(145); + ACCEPT_TOKEN(sym_asm_bin_bitstring); END_STATE(); case 118: - ACCEPT_TOKEN(aux_sym__asm_string_token1); - if (lookahead == 'c') ADVANCE(119); - if (lookahead == '\n' || - lookahead == '\\') ADVANCE(150); - if (lookahead != 0 && - lookahead != '"') ADVANCE(145); + ACCEPT_TOKEN(aux_sym_asm_boc_hex_token1); END_STATE(); case 119: - ACCEPT_TOKEN(aux_sym__asm_string_token1); - if (lookahead == 'e') ADVANCE(145); - if (lookahead == '\n' || - lookahead == '\\') ADVANCE(150); - if (lookahead != 0 && - lookahead != '"') ADVANCE(145); + ACCEPT_TOKEN(aux_sym_asm_boc_hex_token2); END_STATE(); case 120: - ACCEPT_TOKEN(aux_sym__asm_string_token1); - if (lookahead == 'e') ADVANCE(129); - if (lookahead == '\n' || - lookahead == '\\') ADVANCE(150); - if (lookahead != 0 && - lookahead != '"') ADVANCE(145); + ACCEPT_TOKEN(sym_asm_control_register); END_STATE(); case 121: - ACCEPT_TOKEN(aux_sym__asm_string_token1); - if (lookahead == 'f') ADVANCE(115); - if (lookahead == '\n' || - lookahead == '\\') ADVANCE(150); - if (lookahead != 0 && - lookahead != '"') ADVANCE(145); + ACCEPT_TOKEN(sym_asm_control_register); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(123); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(206); END_STATE(); case 122: - ACCEPT_TOKEN(aux_sym__asm_string_token1); - if (lookahead == 'h') ADVANCE(116); - if (lookahead == '\n' || - lookahead == '\\') ADVANCE(150); + ACCEPT_TOKEN(sym_asm_control_register); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(120); + END_STATE(); + case 123: + ACCEPT_TOKEN(sym_asm_control_register); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); - if (lookahead != 0 && - lookahead != '"') ADVANCE(145); - END_STATE(); - case 123: - ACCEPT_TOKEN(aux_sym__asm_string_token1); - if (lookahead == 'i') ADVANCE(125); - if (lookahead == 'n') ADVANCE(114); - if (lookahead == '\n' || - lookahead == '\\') ADVANCE(150); - if (lookahead != 0 && - lookahead != '"') ADVANCE(145); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(206); END_STATE(); case 124: - ACCEPT_TOKEN(aux_sym__asm_string_token1); - if (lookahead == 'm') ADVANCE(119); - if (lookahead == '\n' || - lookahead == '\\') ADVANCE(150); - if (lookahead != 0 && - lookahead != '"') ADVANCE(145); + ACCEPT_TOKEN(aux_sym_asm_stack_register_token1); END_STATE(); case 125: - ACCEPT_TOKEN(aux_sym__asm_string_token1); - if (lookahead == 'n') ADVANCE(131); - if (lookahead == '\n' || - lookahead == '\\') ADVANCE(150); - if (lookahead != 0 && - lookahead != '"') ADVANCE(145); + ACCEPT_TOKEN(aux_sym_asm_stack_register_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(127); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(206); END_STATE(); case 126: - ACCEPT_TOKEN(aux_sym__asm_string_token1); - if (lookahead == 'o') ADVANCE(128); - if (lookahead == '\n' || - lookahead == '\\') ADVANCE(150); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); - if (lookahead != 0 && - lookahead != '"') ADVANCE(145); + ACCEPT_TOKEN(aux_sym_asm_stack_register_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(124); END_STATE(); case 127: - ACCEPT_TOKEN(aux_sym__asm_string_token1); - if (lookahead == 'r') ADVANCE(144); - if (lookahead == '\n' || - lookahead == '\\') ADVANCE(150); + ACCEPT_TOKEN(aux_sym_asm_stack_register_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); - if (lookahead != 0 && - lookahead != '"') ADVANCE(145); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(206); END_STATE(); case 128: - ACCEPT_TOKEN(aux_sym__asm_string_token1); - if (lookahead == 'r') ADVANCE(130); - if (lookahead == '\n' || - lookahead == '\\') ADVANCE(150); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); - if (lookahead != 0 && - lookahead != '"') ADVANCE(145); + ACCEPT_TOKEN(aux_sym_asm_stack_register_token2); END_STATE(); case 129: - ACCEPT_TOKEN(aux_sym__asm_string_token1); - if (lookahead == 'r') ADVANCE(121); - if (lookahead == '\n' || - lookahead == '\\') ADVANCE(150); - if (lookahead != 0 && - lookahead != '"') ADVANCE(145); + ACCEPT_TOKEN(sym_asm_integer); + if (lookahead == 'b') ADVANCE(71); + if (lookahead == 'l') ADVANCE(137); + if (lookahead == 'x') ADVANCE(82); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(54); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(132); + if (lookahead == '#' || + lookahead == ':' || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(139); END_STATE(); case 130: - ACCEPT_TOKEN(aux_sym__asm_string_token1); - if (lookahead == 't') ADVANCE(144); - if (lookahead == '\n' || - lookahead == '\\') ADVANCE(150); - if (('0' <= lookahead && lookahead <= '9') || + ACCEPT_TOKEN(sym_asm_integer); + if (lookahead == 'b') ADVANCE(71); + if (lookahead == 'l') ADVANCE(137); + if (lookahead == 'x') ADVANCE(82); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(134); + if (lookahead == '#' || + lookahead == ':' || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); - if (lookahead != 0 && - lookahead != '"') ADVANCE(145); + lookahead == '_') ADVANCE(139); END_STATE(); case 131: - ACCEPT_TOKEN(aux_sym__asm_string_token1); - if (lookahead == 't') ADVANCE(120); - if (lookahead == '\n' || - lookahead == '\\') ADVANCE(150); - if (lookahead != 0 && - lookahead != '"') ADVANCE(145); + ACCEPT_TOKEN(sym_asm_integer); + if (lookahead == 'l') ADVANCE(137); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(54); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(134); + if (lookahead == '#' || + lookahead == ':' || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(139); END_STATE(); case 132: - ACCEPT_TOKEN(aux_sym__asm_string_token1); - ADVANCE_MAP( - 'u', 133, - 'x', 149, - '\\', 150, - 'b', 150, - 'f', 150, - 'n', 150, - 'r', 150, - 't', 150, - 'v', 150, - ); - if (lookahead != 0 && - lookahead != '"') ADVANCE(150); + ACCEPT_TOKEN(sym_asm_integer); + if (lookahead == 'l') ADVANCE(137); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(54); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(131); + if (lookahead == '#' || + lookahead == ':' || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(139); END_STATE(); case 133: - ACCEPT_TOKEN(aux_sym__asm_string_token1); - if (lookahead == '{') ADVANCE(148); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(147); - if (lookahead != 0 && - lookahead != '"') ADVANCE(150); + ACCEPT_TOKEN(sym_asm_integer); + if (lookahead == 'l') ADVANCE(137); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(54); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(132); + if (lookahead == '#' || + lookahead == ':' || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(139); END_STATE(); case 134: - ACCEPT_TOKEN(aux_sym__asm_string_token1); - if (lookahead == '}') ADVANCE(150); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(139); - if (lookahead != 0 && - lookahead != '"') ADVANCE(150); + ACCEPT_TOKEN(sym_asm_integer); + if (lookahead == 'l') ADVANCE(137); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(134); + if (lookahead == '#' || + lookahead == ':' || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(139); END_STATE(); case 135: - ACCEPT_TOKEN(aux_sym__asm_string_token1); - if (lookahead == '}') ADVANCE(150); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(134); - if (lookahead != 0 && - lookahead != '"') ADVANCE(150); + ACCEPT_TOKEN(sym_asm_integer); + if (lookahead == '0' || + lookahead == '1') ADVANCE(135); END_STATE(); case 136: - ACCEPT_TOKEN(aux_sym__asm_string_token1); - if (lookahead == '}') ADVANCE(150); + ACCEPT_TOKEN(sym_asm_integer); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(135); - if (lookahead != 0 && - lookahead != '"') ADVANCE(150); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(136); END_STATE(); case 137: - ACCEPT_TOKEN(aux_sym__asm_string_token1); - if (lookahead == '}') ADVANCE(150); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(136); - if (lookahead != 0 && - lookahead != '"') ADVANCE(150); + ACCEPT_TOKEN(sym_tvm_instruction); END_STATE(); case 138: - ACCEPT_TOKEN(aux_sym__asm_string_token1); - if (lookahead == '}') ADVANCE(150); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(137); - if (lookahead != 0 && - lookahead != '"') ADVANCE(150); + ACCEPT_TOKEN(sym_tvm_instruction); + if (lookahead == 'l') ADVANCE(137); + if (lookahead == '{') ADVANCE(31); + if (lookahead == '#' || + ('0' <= lookahead && lookahead <= ':') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(139); END_STATE(); case 139: - ACCEPT_TOKEN(aux_sym__asm_string_token1); - if (lookahead == '}') ADVANCE(150); - if (lookahead != 0 && - lookahead != '"') ADVANCE(150); + ACCEPT_TOKEN(sym_tvm_instruction); + if (lookahead == 'l') ADVANCE(137); + if (lookahead == '#' || + ('0' <= lookahead && lookahead <= ':') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(139); END_STATE(); case 140: - ACCEPT_TOKEN(aux_sym__asm_string_token1); - if (lookahead == '\n' || - lookahead == '\\') ADVANCE(150); - if (lookahead == '0' || - lookahead == '1') ADVANCE(111); - if (lookahead != 0 && - lookahead != '"') ADVANCE(145); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 141: - ACCEPT_TOKEN(aux_sym__asm_string_token1); - if (lookahead == '\n' || - lookahead == '\\') ADVANCE(150); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(112); - if (lookahead != 0 && - lookahead != '"') ADVANCE(145); + ACCEPT_TOKEN(anon_sym_ATinterface); END_STATE(); case 142: - ACCEPT_TOKEN(aux_sym__asm_string_token1); - if (lookahead == '\n' || - lookahead == '\\') ADVANCE(150); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(110); - if (lookahead != 0 && - lookahead != '"') ADVANCE(145); + ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); case 143: - ACCEPT_TOKEN(aux_sym__asm_string_token1); - if (lookahead == '\n' || - lookahead == '\\') ADVANCE(150); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(113); - if (lookahead != 0 && - lookahead != '"') ADVANCE(145); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 144: - ACCEPT_TOKEN(aux_sym__asm_string_token1); - if (lookahead == '\n' || - lookahead == '\\') ADVANCE(150); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); - if (lookahead != 0 && - lookahead != '"') ADVANCE(145); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 145: - ACCEPT_TOKEN(aux_sym__asm_string_token1); - if (lookahead == '\n' || - lookahead == '\\') ADVANCE(150); - if (lookahead != 0 && - lookahead != '"') ADVANCE(145); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 146: - ACCEPT_TOKEN(aux_sym__asm_string_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(150); - if (lookahead != 0 && - lookahead != '"') ADVANCE(150); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 147: - ACCEPT_TOKEN(aux_sym__asm_string_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(149); - if (lookahead != 0 && - lookahead != '"') ADVANCE(150); + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); case 148: - ACCEPT_TOKEN(aux_sym__asm_string_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(138); - if (lookahead != 0 && - lookahead != '"') ADVANCE(150); + ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); case 149: - ACCEPT_TOKEN(aux_sym__asm_string_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(146); - if (lookahead != 0 && - lookahead != '"') ADVANCE(150); + ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); case 150: - ACCEPT_TOKEN(aux_sym__asm_string_token1); - if (lookahead != 0 && - lookahead != '"') ADVANCE(150); + ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); case 151: - ACCEPT_TOKEN(anon_sym_DQUOTE2); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE_EQ); END_STATE(); case 152: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_AMP_AMP_EQ); END_STATE(); case 153: - ACCEPT_TOKEN(anon_sym_ATinterface); + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); case 154: - ACCEPT_TOKEN(anon_sym_DOT_DOT); + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); case 155: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); case 156: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + if (lookahead == '=') ADVANCE(151); END_STATE(); case 157: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(anon_sym_AMP_AMP); + if (lookahead == '=') ADVANCE(152); END_STATE(); case 158: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(149); + if (lookahead == '|') ADVANCE(156); END_STATE(); case 159: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(150); END_STATE(); case 160: - ACCEPT_TOKEN(anon_sym_AMP_EQ); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(157); + if (lookahead == '=') ADVANCE(148); END_STATE(); case 161: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 162: - ACCEPT_TOKEN(anon_sym_CARET_EQ); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 163: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE_EQ); + ACCEPT_TOKEN(anon_sym_GT); END_STATE(); case 164: - ACCEPT_TOKEN(anon_sym_AMP_AMP_EQ); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(165); + if (lookahead == '>') ADVANCE(170); END_STATE(); case 165: - ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 166: - ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + ACCEPT_TOKEN(anon_sym_LT); END_STATE(); case 167: - ACCEPT_TOKEN(anon_sym_QMARK); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(171); + if (lookahead == '=') ADVANCE(169); END_STATE(); case 168: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); - if (lookahead == '=') ADVANCE(163); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(171); + if (lookahead == '=') ADVANCE(169); + if (lookahead == '{') ADVANCE(100); END_STATE(); case 169: - ACCEPT_TOKEN(anon_sym_AMP_AMP); - if (lookahead == '=') ADVANCE(164); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 170: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(161); - if (lookahead == '|') ADVANCE(168); + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(153); END_STATE(); case 171: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(162); + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(154); END_STATE(); case 172: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(169); - if (lookahead == '=') ADVANCE(160); + ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); case 173: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '=') ADVANCE(143); END_STATE(); case 174: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); case 175: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(177); - if (lookahead == '>') ADVANCE(181); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(144); END_STATE(); case 176: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '>') ADVANCE(22); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(144); + if (lookahead == '>') ADVANCE(97); END_STATE(); case 177: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '=') ADVANCE(145); END_STATE(); case 178: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(182); - if (lookahead == '=') ADVANCE(180); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(15); + if (lookahead == '/') ADVANCE(224); + if (lookahead == '=') ADVANCE(146); END_STATE(); case 179: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(21); + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(147); END_STATE(); case 180: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); case 181: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(165); + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(161); END_STATE(); case 182: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(166); + ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); case 183: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '=') ADVANCE(155); + ACCEPT_TOKEN(anon_sym_TILDE); + if (lookahead == '`') ADVANCE(86); END_STATE(); case 184: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(156); + ACCEPT_TOKEN(anon_sym_BANG_BANG); END_STATE(); case 185: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '=') ADVANCE(157); + ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); case 186: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(11); - if (lookahead == '/') ADVANCE(214); - if (lookahead == '=') ADVANCE(158); - END_STATE(); - case 187: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(159); - END_STATE(); - case 188: - ACCEPT_TOKEN(anon_sym_BANG); - END_STATE(); - case 189: - ACCEPT_TOKEN(anon_sym_TILDE); - END_STATE(); - case 190: - ACCEPT_TOKEN(anon_sym_BANG_BANG); - END_STATE(); - case 191: ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '"') ADVANCE(106); + if (lookahead == '.') ADVANCE(142); + if (lookahead == '`') ADVANCE(86); END_STATE(); - case 192: + case 187: ACCEPT_TOKEN(sym__func_quoted_id); END_STATE(); - case 193: + case 188: ACCEPT_TOKEN(sym__func_quoted_id); - if ((!eof && set_contains(sym__func_plain_id_character_set_1, 10, lookahead))) ADVANCE(200); + if ((!eof && set_contains(sym__func_plain_id_character_set_1, 10, lookahead))) ADVANCE(195); END_STATE(); - case 194: + case 189: ACCEPT_TOKEN(sym__func_plain_id); - if (lookahead == '*') ADVANCE(196); - if (lookahead == '/') ADVANCE(199); - if ((!eof && set_contains(sym__func_plain_id_character_set_1, 10, lookahead))) ADVANCE(200); + if (lookahead == '*') ADVANCE(191); + if (lookahead == '/') ADVANCE(194); + if ((!eof && set_contains(sym__func_plain_id_character_set_1, 10, lookahead))) ADVANCE(195); END_STATE(); - case 195: + case 190: ACCEPT_TOKEN(sym__func_plain_id); - if (lookahead == '*') ADVANCE(195); - if (lookahead == '/') ADVANCE(200); + if (lookahead == '*') ADVANCE(190); + if (lookahead == '/') ADVANCE(195); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == '(' || @@ -3828,12 +3718,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ';' || lookahead == '[' || lookahead == ']' || - lookahead == '~') ADVANCE(11); - if (lookahead != 0) ADVANCE(196); + lookahead == '~') ADVANCE(15); + if (lookahead != 0) ADVANCE(191); END_STATE(); - case 196: + case 191: ACCEPT_TOKEN(sym__func_plain_id); - if (lookahead == '*') ADVANCE(195); + if (lookahead == '*') ADVANCE(190); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == '(' || @@ -3843,12 +3733,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ';' || lookahead == '[' || lookahead == ']' || - lookahead == '~') ADVANCE(11); - if (lookahead != 0) ADVANCE(196); + lookahead == '~') ADVANCE(15); + if (lookahead != 0) ADVANCE(191); END_STATE(); - case 197: + case 192: ACCEPT_TOKEN(sym__func_plain_id); - if (lookahead == '`') ADVANCE(200); + if (lookahead == '`') ADVANCE(195); if (lookahead == '\t' || (0x0b <= lookahead && lookahead <= '\r') || lookahead == ' ' || @@ -3859,13 +3749,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ';' || lookahead == '[' || lookahead == ']' || - lookahead == '~') ADVANCE(26); + lookahead == '~') ADVANCE(33); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(198); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(193); END_STATE(); - case 198: + case 193: ACCEPT_TOKEN(sym__func_plain_id); - if (lookahead == '`') ADVANCE(193); + if (lookahead == '`') ADVANCE(188); if (lookahead == '\t' || (0x0b <= lookahead && lookahead <= '\r') || lookahead == ' ' || @@ -3876,11 +3766,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ';' || lookahead == '[' || lookahead == ']' || - lookahead == '~') ADVANCE(26); + lookahead == '~') ADVANCE(33); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(198); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(193); END_STATE(); - case 199: + case 194: ACCEPT_TOKEN(sym__func_plain_id); if (lookahead == '\t' || (0x0b <= lookahead && lookahead <= '\r') || @@ -3892,103 +3782,226 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ';' || lookahead == '[' || lookahead == ']' || - lookahead == '~') ADVANCE(214); + lookahead == '~') ADVANCE(224); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(199); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(194); END_STATE(); - case 200: + case 195: ACCEPT_TOKEN(sym__func_plain_id); - if ((!eof && set_contains(sym__func_plain_id_character_set_1, 10, lookahead))) ADVANCE(200); + if ((!eof && set_contains(sym__func_plain_id_character_set_1, 10, lookahead))) ADVANCE(195); + END_STATE(); + case 196: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(105); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(206); + END_STATE(); + case 197: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'b') ADVANCE(198); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(206); + END_STATE(); + case 198: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(199); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(206); + END_STATE(); + case 199: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(200); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(206); + END_STATE(); + case 200: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(196); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(206); END_STATE(); case 201: ACCEPT_TOKEN(sym_identifier); + if (lookahead == '{') ADVANCE(31); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(201); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(206); END_STATE(); case 202: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '{') ADVANCE(68); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(206); + END_STATE(); + case 203: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '{') ADVANCE(32); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(206); + END_STATE(); + case 204: + ACCEPT_TOKEN(sym_identifier); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(121); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(206); + END_STATE(); + case 205: + ACCEPT_TOKEN(sym_identifier); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(125); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(206); + END_STATE(); + case 206: + ACCEPT_TOKEN(sym_identifier); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(206); + END_STATE(); + case 207: ACCEPT_TOKEN(sym__non_quote_or_backslash_char); - if (lookahead == '*') ADVANCE(204); - if (lookahead == '/') ADVANCE(205); + if (lookahead == '*') ADVANCE(209); + if (lookahead == '/') ADVANCE(211); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(205); + lookahead != '\\') ADVANCE(211); END_STATE(); - case 203: + case 208: ACCEPT_TOKEN(sym__non_quote_or_backslash_char); - if (lookahead == '*') ADVANCE(203); - if (lookahead == '/') ADVANCE(205); + if (lookahead == '*') ADVANCE(208); + if (lookahead == '/') ADVANCE(211); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(204); + lookahead != '\\') ADVANCE(209); END_STATE(); - case 204: + case 209: ACCEPT_TOKEN(sym__non_quote_or_backslash_char); - if (lookahead == '*') ADVANCE(203); + if (lookahead == '*') ADVANCE(208); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(204); + lookahead != '\\') ADVANCE(209); END_STATE(); - case 205: + case 210: + ACCEPT_TOKEN(sym__non_quote_or_backslash_char); + if (lookahead == '/') ADVANCE(207); + if (lookahead == '\t' || + (0x0b <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(210); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != '"' && + lookahead != '\\') ADVANCE(211); + END_STATE(); + case 211: ACCEPT_TOKEN(sym__non_quote_or_backslash_char); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(205); + lookahead != '\\') ADVANCE(211); END_STATE(); - case 206: + case 212: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 207: + case 213: ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(49); + if (lookahead == '_') ADVANCE(75); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(47); + lookahead == 'b') ADVANCE(70); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(48); + lookahead == 'o') ADVANCE(74); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(51); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(208); + lookahead == 'x') ADVANCE(80); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(54); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(216); END_STATE(); - case 208: + case 214: ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(49); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(208); + if (lookahead == '_') ADVANCE(75); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(70); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(74); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(80); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(218); END_STATE(); - case 209: + case 215: + ACCEPT_TOKEN(sym_integer); + if (lookahead == '_') ADVANCE(75); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(54); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(218); + END_STATE(); + case 216: + ACCEPT_TOKEN(sym_integer); + if (lookahead == '_') ADVANCE(75); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(54); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(215); + END_STATE(); + case 217: + ACCEPT_TOKEN(sym_integer); + if (lookahead == '_') ADVANCE(75); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(54); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(216); + END_STATE(); + case 218: ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(47); + if (lookahead == '_') ADVANCE(75); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(218); + END_STATE(); + case 219: + ACCEPT_TOKEN(sym_integer); + if (lookahead == '_') ADVANCE(70); if (lookahead == '0' || - lookahead == '1') ADVANCE(209); + lookahead == '1') ADVANCE(219); END_STATE(); - case 210: + case 220: ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(48); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(210); + if (lookahead == '_') ADVANCE(74); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(220); END_STATE(); - case 211: + case 221: ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(51); + if (lookahead == '_') ADVANCE(80); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(211); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(221); END_STATE(); - case 212: + case 222: ACCEPT_TOKEN(sym__decimal_integer); - if (lookahead == '_') ADVANCE(50); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(212); + if (lookahead == '_') ADVANCE(76); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(222); END_STATE(); - case 213: + case 223: ACCEPT_TOKEN(sym_comment); END_STATE(); - case 214: + case 224: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(214); + lookahead != '\n') ADVANCE(224); END_STATE(); default: return false; @@ -4021,6 +4034,8 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { 'v', 18, 'w', 19, ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(0); if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(20); END_STATE(); case 1: @@ -4584,70 +4599,70 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, - [1] = {.lex_state = 56}, - [2] = {.lex_state = 56}, - [3] = {.lex_state = 56}, - [4] = {.lex_state = 56}, - [5] = {.lex_state = 56}, - [6] = {.lex_state = 56}, + [1] = {.lex_state = 88}, + [2] = {.lex_state = 88}, + [3] = {.lex_state = 88}, + [4] = {.lex_state = 88}, + [5] = {.lex_state = 88}, + [6] = {.lex_state = 88}, [7] = {.lex_state = 2}, [8] = {.lex_state = 2}, - [9] = {.lex_state = 56}, - [10] = {.lex_state = 56}, - [11] = {.lex_state = 56}, - [12] = {.lex_state = 56}, - [13] = {.lex_state = 56}, - [14] = {.lex_state = 56}, - [15] = {.lex_state = 56}, + [9] = {.lex_state = 88}, + [10] = {.lex_state = 88}, + [11] = {.lex_state = 88}, + [12] = {.lex_state = 88}, + [13] = {.lex_state = 88}, + [14] = {.lex_state = 88}, + [15] = {.lex_state = 88}, [16] = {.lex_state = 2}, - [17] = {.lex_state = 56}, - [18] = {.lex_state = 56}, - [19] = {.lex_state = 56}, + [17] = {.lex_state = 88}, + [18] = {.lex_state = 88}, + [19] = {.lex_state = 88}, [20] = {.lex_state = 2}, - [21] = {.lex_state = 56}, - [22] = {.lex_state = 56}, - [23] = {.lex_state = 56}, - [24] = {.lex_state = 56}, - [25] = {.lex_state = 56}, - [26] = {.lex_state = 56}, - [27] = {.lex_state = 56}, - [28] = {.lex_state = 56}, - [29] = {.lex_state = 56}, - [30] = {.lex_state = 56}, - [31] = {.lex_state = 56}, - [32] = {.lex_state = 56}, - [33] = {.lex_state = 56}, - [34] = {.lex_state = 56}, - [35] = {.lex_state = 56}, - [36] = {.lex_state = 56}, - [37] = {.lex_state = 56}, - [38] = {.lex_state = 56}, - [39] = {.lex_state = 56}, - [40] = {.lex_state = 56}, - [41] = {.lex_state = 56}, - [42] = {.lex_state = 56}, - [43] = {.lex_state = 56}, - [44] = {.lex_state = 56}, - [45] = {.lex_state = 56}, - [46] = {.lex_state = 56}, - [47] = {.lex_state = 56}, - [48] = {.lex_state = 56}, - [49] = {.lex_state = 56}, - [50] = {.lex_state = 56}, - [51] = {.lex_state = 56}, - [52] = {.lex_state = 56}, - [53] = {.lex_state = 56}, - [54] = {.lex_state = 56}, - [55] = {.lex_state = 56}, - [56] = {.lex_state = 56}, - [57] = {.lex_state = 56}, - [58] = {.lex_state = 56}, - [59] = {.lex_state = 56}, - [60] = {.lex_state = 56}, - [61] = {.lex_state = 56}, - [62] = {.lex_state = 2}, - [63] = {.lex_state = 2}, - [64] = {.lex_state = 2}, + [21] = {.lex_state = 88}, + [22] = {.lex_state = 88}, + [23] = {.lex_state = 88}, + [24] = {.lex_state = 88}, + [25] = {.lex_state = 88}, + [26] = {.lex_state = 88}, + [27] = {.lex_state = 88}, + [28] = {.lex_state = 88}, + [29] = {.lex_state = 6}, + [30] = {.lex_state = 88}, + [31] = {.lex_state = 88}, + [32] = {.lex_state = 88}, + [33] = {.lex_state = 88}, + [34] = {.lex_state = 88}, + [35] = {.lex_state = 88}, + [36] = {.lex_state = 88}, + [37] = {.lex_state = 88}, + [38] = {.lex_state = 88}, + [39] = {.lex_state = 88}, + [40] = {.lex_state = 88}, + [41] = {.lex_state = 88}, + [42] = {.lex_state = 88}, + [43] = {.lex_state = 88}, + [44] = {.lex_state = 88}, + [45] = {.lex_state = 88}, + [46] = {.lex_state = 6}, + [47] = {.lex_state = 88}, + [48] = {.lex_state = 88}, + [49] = {.lex_state = 88}, + [50] = {.lex_state = 88}, + [51] = {.lex_state = 88}, + [52] = {.lex_state = 88}, + [53] = {.lex_state = 88}, + [54] = {.lex_state = 88}, + [55] = {.lex_state = 88}, + [56] = {.lex_state = 88}, + [57] = {.lex_state = 88}, + [58] = {.lex_state = 88}, + [59] = {.lex_state = 88}, + [60] = {.lex_state = 88}, + [61] = {.lex_state = 6}, + [62] = {.lex_state = 88}, + [63] = {.lex_state = 88}, + [64] = {.lex_state = 88}, [65] = {.lex_state = 2}, [66] = {.lex_state = 2}, [67] = {.lex_state = 2}, @@ -4667,31 +4682,31 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [81] = {.lex_state = 2}, [82] = {.lex_state = 2}, [83] = {.lex_state = 2}, - [84] = {.lex_state = 2}, + [84] = {.lex_state = 88}, [85] = {.lex_state = 2}, [86] = {.lex_state = 2}, [87] = {.lex_state = 2}, [88] = {.lex_state = 2}, - [89] = {.lex_state = 56}, + [89] = {.lex_state = 2}, [90] = {.lex_state = 2}, [91] = {.lex_state = 2}, - [92] = {.lex_state = 2}, + [92] = {.lex_state = 88}, [93] = {.lex_state = 2}, - [94] = {.lex_state = 56}, - [95] = {.lex_state = 56}, - [96] = {.lex_state = 56}, - [97] = {.lex_state = 56}, - [98] = {.lex_state = 56}, - [99] = {.lex_state = 56}, - [100] = {.lex_state = 56}, - [101] = {.lex_state = 56}, - [102] = {.lex_state = 56}, - [103] = {.lex_state = 2}, - [104] = {.lex_state = 2}, - [105] = {.lex_state = 2}, - [106] = {.lex_state = 2}, - [107] = {.lex_state = 2}, - [108] = {.lex_state = 2}, + [94] = {.lex_state = 2}, + [95] = {.lex_state = 2}, + [96] = {.lex_state = 2}, + [97] = {.lex_state = 2}, + [98] = {.lex_state = 7}, + [99] = {.lex_state = 7}, + [100] = {.lex_state = 7}, + [101] = {.lex_state = 88}, + [102] = {.lex_state = 88}, + [103] = {.lex_state = 88}, + [104] = {.lex_state = 88}, + [105] = {.lex_state = 88}, + [106] = {.lex_state = 88}, + [107] = {.lex_state = 88}, + [108] = {.lex_state = 88}, [109] = {.lex_state = 2}, [110] = {.lex_state = 2}, [111] = {.lex_state = 2}, @@ -4702,7 +4717,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [116] = {.lex_state = 2}, [117] = {.lex_state = 2}, [118] = {.lex_state = 2}, - [119] = {.lex_state = 56}, + [119] = {.lex_state = 2}, [120] = {.lex_state = 2}, [121] = {.lex_state = 2}, [122] = {.lex_state = 2}, @@ -4711,386 +4726,380 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [125] = {.lex_state = 2}, [126] = {.lex_state = 2}, [127] = {.lex_state = 2}, - [128] = {.lex_state = 56}, - [129] = {.lex_state = 56}, - [130] = {.lex_state = 56}, - [131] = {.lex_state = 56}, - [132] = {.lex_state = 56}, - [133] = {.lex_state = 56}, - [134] = {.lex_state = 56}, - [135] = {.lex_state = 56}, - [136] = {.lex_state = 56}, - [137] = {.lex_state = 56}, - [138] = {.lex_state = 56}, - [139] = {.lex_state = 56}, - [140] = {.lex_state = 56}, - [141] = {.lex_state = 56}, - [142] = {.lex_state = 56}, - [143] = {.lex_state = 56}, - [144] = {.lex_state = 56}, - [145] = {.lex_state = 56}, - [146] = {.lex_state = 56}, - [147] = {.lex_state = 56}, - [148] = {.lex_state = 56}, - [149] = {.lex_state = 56}, - [150] = {.lex_state = 56}, - [151] = {.lex_state = 56}, - [152] = {.lex_state = 56}, - [153] = {.lex_state = 56}, - [154] = {.lex_state = 56}, - [155] = {.lex_state = 56}, - [156] = {.lex_state = 56}, - [157] = {.lex_state = 56}, - [158] = {.lex_state = 56}, - [159] = {.lex_state = 56}, - [160] = {.lex_state = 56}, - [161] = {.lex_state = 56}, - [162] = {.lex_state = 56}, - [163] = {.lex_state = 56}, - [164] = {.lex_state = 56}, - [165] = {.lex_state = 56}, - [166] = {.lex_state = 56}, - [167] = {.lex_state = 56}, - [168] = {.lex_state = 56}, - [169] = {.lex_state = 56}, - [170] = {.lex_state = 56}, - [171] = {.lex_state = 56}, - [172] = {.lex_state = 56}, - [173] = {.lex_state = 56}, - [174] = {.lex_state = 56}, - [175] = {.lex_state = 56}, - [176] = {.lex_state = 56}, - [177] = {.lex_state = 56}, - [178] = {.lex_state = 56}, - [179] = {.lex_state = 56}, - [180] = {.lex_state = 56}, - [181] = {.lex_state = 56}, - [182] = {.lex_state = 56}, - [183] = {.lex_state = 56}, - [184] = {.lex_state = 56}, - [185] = {.lex_state = 56}, - [186] = {.lex_state = 56}, - [187] = {.lex_state = 56}, - [188] = {.lex_state = 56}, - [189] = {.lex_state = 56}, - [190] = {.lex_state = 56}, - [191] = {.lex_state = 56}, - [192] = {.lex_state = 56}, - [193] = {.lex_state = 56}, - [194] = {.lex_state = 56}, - [195] = {.lex_state = 56}, - [196] = {.lex_state = 56}, - [197] = {.lex_state = 56}, - [198] = {.lex_state = 4}, - [199] = {.lex_state = 4}, - [200] = {.lex_state = 4}, - [201] = {.lex_state = 56}, - [202] = {.lex_state = 56}, - [203] = {.lex_state = 56}, - [204] = {.lex_state = 56}, - [205] = {.lex_state = 5}, - [206] = {.lex_state = 5}, - [207] = {.lex_state = 56}, - [208] = {.lex_state = 5}, - [209] = {.lex_state = 56}, - [210] = {.lex_state = 56}, - [211] = {.lex_state = 56}, - [212] = {.lex_state = 56}, - [213] = {.lex_state = 56}, - [214] = {.lex_state = 4}, - [215] = {.lex_state = 4}, - [216] = {.lex_state = 56}, - [217] = {.lex_state = 4}, - [218] = {.lex_state = 56}, - [219] = {.lex_state = 4}, - [220] = {.lex_state = 56}, - [221] = {.lex_state = 56}, - [222] = {.lex_state = 56}, - [223] = {.lex_state = 56}, - [224] = {.lex_state = 56}, - [225] = {.lex_state = 56}, - [226] = {.lex_state = 56}, - [227] = {.lex_state = 56}, - [228] = {.lex_state = 56}, - [229] = {.lex_state = 56}, - [230] = {.lex_state = 56}, - [231] = {.lex_state = 56}, - [232] = {.lex_state = 56}, - [233] = {.lex_state = 56}, - [234] = {.lex_state = 56}, - [235] = {.lex_state = 56}, - [236] = {.lex_state = 56}, - [237] = {.lex_state = 56}, - [238] = {.lex_state = 56}, - [239] = {.lex_state = 56}, - [240] = {.lex_state = 56}, - [241] = {.lex_state = 56}, - [242] = {.lex_state = 56}, - [243] = {.lex_state = 5}, - [244] = {.lex_state = 5}, - [245] = {.lex_state = 7}, - [246] = {.lex_state = 56}, - [247] = {.lex_state = 56}, - [248] = {.lex_state = 56}, - [249] = {.lex_state = 56}, - [250] = {.lex_state = 56}, - [251] = {.lex_state = 56}, - [252] = {.lex_state = 56}, - [253] = {.lex_state = 56}, - [254] = {.lex_state = 7}, - [255] = {.lex_state = 56}, - [256] = {.lex_state = 56}, - [257] = {.lex_state = 56}, - [258] = {.lex_state = 56}, - [259] = {.lex_state = 56}, - [260] = {.lex_state = 56}, - [261] = {.lex_state = 56}, - [262] = {.lex_state = 56}, - [263] = {.lex_state = 56}, - [264] = {.lex_state = 56}, - [265] = {.lex_state = 7}, - [266] = {.lex_state = 56}, - [267] = {.lex_state = 1}, - [268] = {.lex_state = 56}, - [269] = {.lex_state = 56}, - [270] = {.lex_state = 1}, - [271] = {.lex_state = 56}, - [272] = {.lex_state = 56}, - [273] = {.lex_state = 56}, - [274] = {.lex_state = 56}, - [275] = {.lex_state = 1}, - [276] = {.lex_state = 56}, - [277] = {.lex_state = 56}, - [278] = {.lex_state = 56}, - [279] = {.lex_state = 56}, - [280] = {.lex_state = 56}, - [281] = {.lex_state = 56}, - [282] = {.lex_state = 56}, - [283] = {.lex_state = 56}, - [284] = {.lex_state = 56}, - [285] = {.lex_state = 56}, - [286] = {.lex_state = 7}, - [287] = {.lex_state = 2}, - [288] = {.lex_state = 56}, - [289] = {.lex_state = 56}, - [290] = {.lex_state = 56}, - [291] = {.lex_state = 56}, - [292] = {.lex_state = 56}, - [293] = {.lex_state = 56}, - [294] = {.lex_state = 56}, - [295] = {.lex_state = 56}, - [296] = {.lex_state = 13}, - [297] = {.lex_state = 56}, - [298] = {.lex_state = 56}, - [299] = {.lex_state = 56}, - [300] = {.lex_state = 56}, - [301] = {.lex_state = 56}, - [302] = {.lex_state = 56}, - [303] = {.lex_state = 56}, - [304] = {.lex_state = 56}, - [305] = {.lex_state = 56}, - [306] = {.lex_state = 56}, - [307] = {.lex_state = 56}, - [308] = {.lex_state = 56}, - [309] = {.lex_state = 56}, - [310] = {.lex_state = 56}, - [311] = {.lex_state = 56}, - [312] = {.lex_state = 56}, - [313] = {.lex_state = 56}, - [314] = {.lex_state = 56}, - [315] = {.lex_state = 56}, - [316] = {.lex_state = 56}, - [317] = {.lex_state = 56}, - [318] = {.lex_state = 2}, - [319] = {.lex_state = 56}, - [320] = {.lex_state = 56}, - [321] = {.lex_state = 56}, - [322] = {.lex_state = 56}, - [323] = {.lex_state = 56}, - [324] = {.lex_state = 56}, - [325] = {.lex_state = 56}, - [326] = {.lex_state = 56}, - [327] = {.lex_state = 56}, - [328] = {.lex_state = 56}, - [329] = {.lex_state = 56}, - [330] = {.lex_state = 56}, - [331] = {.lex_state = 56}, - [332] = {.lex_state = 56}, - [333] = {.lex_state = 56}, - [334] = {.lex_state = 56}, - [335] = {.lex_state = 56}, - [336] = {.lex_state = 56}, - [337] = {.lex_state = 56}, - [338] = {.lex_state = 56}, - [339] = {.lex_state = 56}, - [340] = {.lex_state = 56}, - [341] = {.lex_state = 56}, - [342] = {.lex_state = 56}, - [343] = {.lex_state = 56}, - [344] = {.lex_state = 56}, - [345] = {.lex_state = 56}, - [346] = {.lex_state = 56}, - [347] = {.lex_state = 56}, - [348] = {.lex_state = 56}, - [349] = {.lex_state = 56}, - [350] = {.lex_state = 56}, - [351] = {.lex_state = 56}, - [352] = {.lex_state = 56}, - [353] = {.lex_state = 56}, - [354] = {.lex_state = 56}, - [355] = {.lex_state = 56}, - [356] = {.lex_state = 56}, - [357] = {.lex_state = 56}, - [358] = {.lex_state = 56}, - [359] = {.lex_state = 56}, - [360] = {.lex_state = 56}, - [361] = {.lex_state = 56}, - [362] = {.lex_state = 56}, - [363] = {.lex_state = 56}, - [364] = {.lex_state = 56}, - [365] = {.lex_state = 56}, - [366] = {.lex_state = 56}, - [367] = {.lex_state = 56}, - [368] = {.lex_state = 56}, - [369] = {.lex_state = 56}, - [370] = {.lex_state = 56}, - [371] = {.lex_state = 56}, - [372] = {.lex_state = 56}, - [373] = {.lex_state = 56}, - [374] = {.lex_state = 56}, - [375] = {.lex_state = 56}, - [376] = {.lex_state = 56}, - [377] = {.lex_state = 56}, - [378] = {.lex_state = 56}, - [379] = {.lex_state = 56}, - [380] = {.lex_state = 56}, - [381] = {.lex_state = 56}, - [382] = {.lex_state = 56}, - [383] = {.lex_state = 56}, - [384] = {.lex_state = 56}, - [385] = {.lex_state = 56}, - [386] = {.lex_state = 56}, - [387] = {.lex_state = 56}, - [388] = {.lex_state = 56}, - [389] = {.lex_state = 56}, - [390] = {.lex_state = 56}, - [391] = {.lex_state = 56}, - [392] = {.lex_state = 56}, - [393] = {.lex_state = 56}, - [394] = {.lex_state = 56}, - [395] = {.lex_state = 56}, - [396] = {.lex_state = 56}, - [397] = {.lex_state = 56}, - [398] = {.lex_state = 2}, - [399] = {.lex_state = 56}, - [400] = {.lex_state = 56}, - [401] = {.lex_state = 56}, - [402] = {.lex_state = 56}, - [403] = {.lex_state = 56}, - [404] = {.lex_state = 56}, - [405] = {.lex_state = 56}, - [406] = {.lex_state = 56}, - [407] = {.lex_state = 56}, - [408] = {.lex_state = 56}, - [409] = {.lex_state = 56}, - [410] = {.lex_state = 56}, - [411] = {.lex_state = 56}, - [412] = {.lex_state = 56}, - [413] = {.lex_state = 56}, - [414] = {.lex_state = 56}, - [415] = {.lex_state = 56}, - [416] = {.lex_state = 56}, - [417] = {.lex_state = 56}, - [418] = {.lex_state = 56}, - [419] = {.lex_state = 56}, - [420] = {.lex_state = 56}, - [421] = {.lex_state = 56}, - [422] = {.lex_state = 56}, - [423] = {.lex_state = 56}, - [424] = {.lex_state = 56}, - [425] = {.lex_state = 56}, - [426] = {.lex_state = 56}, - [427] = {.lex_state = 56}, - [428] = {.lex_state = 56}, - [429] = {.lex_state = 56}, - [430] = {.lex_state = 56}, - [431] = {.lex_state = 56}, - [432] = {.lex_state = 56}, - [433] = {.lex_state = 56}, - [434] = {.lex_state = 56}, - [435] = {.lex_state = 56}, - [436] = {.lex_state = 56}, - [437] = {.lex_state = 56}, - [438] = {.lex_state = 56}, - [439] = {.lex_state = 56}, - [440] = {.lex_state = 56}, - [441] = {.lex_state = 56}, - [442] = {.lex_state = 56}, - [443] = {.lex_state = 56}, - [444] = {.lex_state = 56}, - [445] = {.lex_state = 56}, - [446] = {.lex_state = 56}, - [447] = {.lex_state = 56}, - [448] = {.lex_state = 56}, - [449] = {.lex_state = 56}, - [450] = {.lex_state = 56}, - [451] = {.lex_state = 56}, - [452] = {.lex_state = 56}, - [453] = {.lex_state = 56}, - [454] = {.lex_state = 56}, - [455] = {.lex_state = 56}, - [456] = {.lex_state = 56}, - [457] = {.lex_state = 56}, - [458] = {.lex_state = 56}, - [459] = {.lex_state = 56}, - [460] = {.lex_state = 56}, - [461] = {.lex_state = 56}, - [462] = {.lex_state = 56}, - [463] = {.lex_state = 56}, - [464] = {.lex_state = 56}, - [465] = {.lex_state = 56}, - [466] = {.lex_state = 56}, - [467] = {.lex_state = 56}, - [468] = {.lex_state = 56}, - [469] = {.lex_state = 56}, - [470] = {.lex_state = 56}, - [471] = {.lex_state = 14}, - [472] = {.lex_state = 56}, - [473] = {.lex_state = 2}, - [474] = {.lex_state = 56}, - [475] = {.lex_state = 56}, - [476] = {.lex_state = 56}, - [477] = {.lex_state = 15}, - [478] = {.lex_state = 56}, - [479] = {.lex_state = 56}, - [480] = {.lex_state = 56}, - [481] = {.lex_state = 56}, - [482] = {.lex_state = 56}, - [483] = {.lex_state = 56}, - [484] = {.lex_state = 56}, - [485] = {.lex_state = 56}, - [486] = {.lex_state = 56}, - [487] = {.lex_state = 56}, - [488] = {.lex_state = 56}, - [489] = {.lex_state = 56}, - [490] = {.lex_state = 56}, - [491] = {.lex_state = 56}, - [492] = {.lex_state = 56}, - [493] = {.lex_state = 56}, - [494] = {.lex_state = 56}, - [495] = {.lex_state = 14}, - [496] = {.lex_state = 2}, - [497] = {.lex_state = 15}, - [498] = {.lex_state = 56}, - [499] = {.lex_state = 56}, - [500] = {.lex_state = 56}, - [501] = {.lex_state = 56}, - [502] = {.lex_state = 56}, - [503] = {.lex_state = 56}, - [504] = {.lex_state = 56}, - [505] = {.lex_state = 56}, - [506] = {.lex_state = 56}, - [507] = {.lex_state = 56}, + [128] = {.lex_state = 88}, + [129] = {.lex_state = 2}, + [130] = {.lex_state = 2}, + [131] = {.lex_state = 2}, + [132] = {.lex_state = 2}, + [133] = {.lex_state = 2}, + [134] = {.lex_state = 6}, + [135] = {.lex_state = 6}, + [136] = {.lex_state = 88}, + [137] = {.lex_state = 88}, + [138] = {.lex_state = 88}, + [139] = {.lex_state = 88}, + [140] = {.lex_state = 88}, + [141] = {.lex_state = 88}, + [142] = {.lex_state = 88}, + [143] = {.lex_state = 88}, + [144] = {.lex_state = 88}, + [145] = {.lex_state = 88}, + [146] = {.lex_state = 88}, + [147] = {.lex_state = 88}, + [148] = {.lex_state = 88}, + [149] = {.lex_state = 88}, + [150] = {.lex_state = 88}, + [151] = {.lex_state = 88}, + [152] = {.lex_state = 88}, + [153] = {.lex_state = 88}, + [154] = {.lex_state = 88}, + [155] = {.lex_state = 88}, + [156] = {.lex_state = 88}, + [157] = {.lex_state = 88}, + [158] = {.lex_state = 88}, + [159] = {.lex_state = 88}, + [160] = {.lex_state = 88}, + [161] = {.lex_state = 88}, + [162] = {.lex_state = 88}, + [163] = {.lex_state = 88}, + [164] = {.lex_state = 88}, + [165] = {.lex_state = 88}, + [166] = {.lex_state = 88}, + [167] = {.lex_state = 88}, + [168] = {.lex_state = 88}, + [169] = {.lex_state = 88}, + [170] = {.lex_state = 88}, + [171] = {.lex_state = 88}, + [172] = {.lex_state = 88}, + [173] = {.lex_state = 88}, + [174] = {.lex_state = 88}, + [175] = {.lex_state = 88}, + [176] = {.lex_state = 88}, + [177] = {.lex_state = 88}, + [178] = {.lex_state = 88}, + [179] = {.lex_state = 88}, + [180] = {.lex_state = 88}, + [181] = {.lex_state = 88}, + [182] = {.lex_state = 88}, + [183] = {.lex_state = 88}, + [184] = {.lex_state = 6}, + [185] = {.lex_state = 88}, + [186] = {.lex_state = 6}, + [187] = {.lex_state = 88}, + [188] = {.lex_state = 88}, + [189] = {.lex_state = 88}, + [190] = {.lex_state = 88}, + [191] = {.lex_state = 88}, + [192] = {.lex_state = 88}, + [193] = {.lex_state = 88}, + [194] = {.lex_state = 88}, + [195] = {.lex_state = 88}, + [196] = {.lex_state = 88}, + [197] = {.lex_state = 88}, + [198] = {.lex_state = 88}, + [199] = {.lex_state = 88}, + [200] = {.lex_state = 88}, + [201] = {.lex_state = 7}, + [202] = {.lex_state = 7}, + [203] = {.lex_state = 88}, + [204] = {.lex_state = 88}, + [205] = {.lex_state = 88}, + [206] = {.lex_state = 6}, + [207] = {.lex_state = 88}, + [208] = {.lex_state = 6}, + [209] = {.lex_state = 6}, + [210] = {.lex_state = 6}, + [211] = {.lex_state = 88}, + [212] = {.lex_state = 6}, + [213] = {.lex_state = 88}, + [214] = {.lex_state = 0}, + [215] = {.lex_state = 88}, + [216] = {.lex_state = 88}, + [217] = {.lex_state = 88}, + [218] = {.lex_state = 88}, + [219] = {.lex_state = 88}, + [220] = {.lex_state = 88}, + [221] = {.lex_state = 88}, + [222] = {.lex_state = 88}, + [223] = {.lex_state = 88}, + [224] = {.lex_state = 88}, + [225] = {.lex_state = 88}, + [226] = {.lex_state = 88}, + [227] = {.lex_state = 88}, + [228] = {.lex_state = 88}, + [229] = {.lex_state = 88}, + [230] = {.lex_state = 88}, + [231] = {.lex_state = 88}, + [232] = {.lex_state = 88}, + [233] = {.lex_state = 88}, + [234] = {.lex_state = 88}, + [235] = {.lex_state = 88}, + [236] = {.lex_state = 88}, + [237] = {.lex_state = 88}, + [238] = {.lex_state = 88}, + [239] = {.lex_state = 88}, + [240] = {.lex_state = 88}, + [241] = {.lex_state = 88}, + [242] = {.lex_state = 88}, + [243] = {.lex_state = 88}, + [244] = {.lex_state = 88}, + [245] = {.lex_state = 88}, + [246] = {.lex_state = 88}, + [247] = {.lex_state = 88}, + [248] = {.lex_state = 88}, + [249] = {.lex_state = 88}, + [250] = {.lex_state = 11}, + [251] = {.lex_state = 88}, + [252] = {.lex_state = 88}, + [253] = {.lex_state = 88}, + [254] = {.lex_state = 88}, + [255] = {.lex_state = 0}, + [256] = {.lex_state = 88}, + [257] = {.lex_state = 0}, + [258] = {.lex_state = 88}, + [259] = {.lex_state = 88}, + [260] = {.lex_state = 0}, + [261] = {.lex_state = 88}, + [262] = {.lex_state = 0}, + [263] = {.lex_state = 88}, + [264] = {.lex_state = 11}, + [265] = {.lex_state = 0}, + [266] = {.lex_state = 0}, + [267] = {.lex_state = 11}, + [268] = {.lex_state = 0}, + [269] = {.lex_state = 88}, + [270] = {.lex_state = 88}, + [271] = {.lex_state = 1}, + [272] = {.lex_state = 0}, + [273] = {.lex_state = 0}, + [274] = {.lex_state = 1}, + [275] = {.lex_state = 88}, + [276] = {.lex_state = 0}, + [277] = {.lex_state = 88}, + [278] = {.lex_state = 88}, + [279] = {.lex_state = 88}, + [280] = {.lex_state = 1}, + [281] = {.lex_state = 0}, + [282] = {.lex_state = 0}, + [283] = {.lex_state = 6}, + [284] = {.lex_state = 0}, + [285] = {.lex_state = 0}, + [286] = {.lex_state = 88}, + [287] = {.lex_state = 88}, + [288] = {.lex_state = 0}, + [289] = {.lex_state = 88}, + [290] = {.lex_state = 2}, + [291] = {.lex_state = 0}, + [292] = {.lex_state = 0}, + [293] = {.lex_state = 0}, + [294] = {.lex_state = 88}, + [295] = {.lex_state = 0}, + [296] = {.lex_state = 0}, + [297] = {.lex_state = 0}, + [298] = {.lex_state = 0}, + [299] = {.lex_state = 0}, + [300] = {.lex_state = 0}, + [301] = {.lex_state = 0}, + [302] = {.lex_state = 0}, + [303] = {.lex_state = 0}, + [304] = {.lex_state = 0}, + [305] = {.lex_state = 88}, + [306] = {.lex_state = 0}, + [307] = {.lex_state = 88}, + [308] = {.lex_state = 0}, + [309] = {.lex_state = 88}, + [310] = {.lex_state = 0}, + [311] = {.lex_state = 88}, + [312] = {.lex_state = 19}, + [313] = {.lex_state = 88}, + [314] = {.lex_state = 88}, + [315] = {.lex_state = 0}, + [316] = {.lex_state = 88}, + [317] = {.lex_state = 88}, + [318] = {.lex_state = 88}, + [319] = {.lex_state = 88}, + [320] = {.lex_state = 0}, + [321] = {.lex_state = 0}, + [322] = {.lex_state = 0}, + [323] = {.lex_state = 0}, + [324] = {.lex_state = 0}, + [325] = {.lex_state = 0}, + [326] = {.lex_state = 2}, + [327] = {.lex_state = 0}, + [328] = {.lex_state = 88}, + [329] = {.lex_state = 0}, + [330] = {.lex_state = 2}, + [331] = {.lex_state = 0}, + [332] = {.lex_state = 0}, + [333] = {.lex_state = 0}, + [334] = {.lex_state = 0}, + [335] = {.lex_state = 0}, + [336] = {.lex_state = 0}, + [337] = {.lex_state = 0}, + [338] = {.lex_state = 0}, + [339] = {.lex_state = 88}, + [340] = {.lex_state = 0}, + [341] = {.lex_state = 88}, + [342] = {.lex_state = 0}, + [343] = {.lex_state = 0}, + [344] = {.lex_state = 0}, + [345] = {.lex_state = 0}, + [346] = {.lex_state = 88}, + [347] = {.lex_state = 0}, + [348] = {.lex_state = 0}, + [349] = {.lex_state = 0}, + [350] = {.lex_state = 0}, + [351] = {.lex_state = 0}, + [352] = {.lex_state = 0}, + [353] = {.lex_state = 88}, + [354] = {.lex_state = 0}, + [355] = {.lex_state = 0}, + [356] = {.lex_state = 0}, + [357] = {.lex_state = 0}, + [358] = {.lex_state = 0}, + [359] = {.lex_state = 0}, + [360] = {.lex_state = 0}, + [361] = {.lex_state = 0}, + [362] = {.lex_state = 0}, + [363] = {.lex_state = 0}, + [364] = {.lex_state = 0}, + [365] = {.lex_state = 88}, + [366] = {.lex_state = 0}, + [367] = {.lex_state = 0}, + [368] = {.lex_state = 0}, + [369] = {.lex_state = 0}, + [370] = {.lex_state = 0}, + [371] = {.lex_state = 88}, + [372] = {.lex_state = 0}, + [373] = {.lex_state = 0}, + [374] = {.lex_state = 88}, + [375] = {.lex_state = 0}, + [376] = {.lex_state = 0}, + [377] = {.lex_state = 88}, + [378] = {.lex_state = 88}, + [379] = {.lex_state = 0}, + [380] = {.lex_state = 0}, + [381] = {.lex_state = 0}, + [382] = {.lex_state = 0}, + [383] = {.lex_state = 0}, + [384] = {.lex_state = 0}, + [385] = {.lex_state = 0}, + [386] = {.lex_state = 0}, + [387] = {.lex_state = 0}, + [388] = {.lex_state = 0}, + [389] = {.lex_state = 0}, + [390] = {.lex_state = 0}, + [391] = {.lex_state = 88}, + [392] = {.lex_state = 0}, + [393] = {.lex_state = 0}, + [394] = {.lex_state = 0}, + [395] = {.lex_state = 0}, + [396] = {.lex_state = 0}, + [397] = {.lex_state = 88}, + [398] = {.lex_state = 0}, + [399] = {.lex_state = 0}, + [400] = {.lex_state = 0}, + [401] = {.lex_state = 0}, + [402] = {.lex_state = 88}, + [403] = {.lex_state = 0}, + [404] = {.lex_state = 0}, + [405] = {.lex_state = 0}, + [406] = {.lex_state = 0}, + [407] = {.lex_state = 0}, + [408] = {.lex_state = 88}, + [409] = {.lex_state = 0}, + [410] = {.lex_state = 0}, + [411] = {.lex_state = 88}, + [412] = {.lex_state = 0}, + [413] = {.lex_state = 0}, + [414] = {.lex_state = 2}, + [415] = {.lex_state = 88}, + [416] = {.lex_state = 88}, + [417] = {.lex_state = 0}, + [418] = {.lex_state = 88}, + [419] = {.lex_state = 88}, + [420] = {.lex_state = 88}, + [421] = {.lex_state = 0}, + [422] = {.lex_state = 88}, + [423] = {.lex_state = 0}, + [424] = {.lex_state = 88}, + [425] = {.lex_state = 88}, + [426] = {.lex_state = 88}, + [427] = {.lex_state = 88}, + [428] = {.lex_state = 88}, + [429] = {.lex_state = 88}, + [430] = {.lex_state = 88}, + [431] = {.lex_state = 0}, + [432] = {.lex_state = 88}, + [433] = {.lex_state = 88}, + [434] = {.lex_state = 88}, + [435] = {.lex_state = 0}, + [436] = {.lex_state = 0}, + [437] = {.lex_state = 88}, + [438] = {.lex_state = 88}, + [439] = {.lex_state = 0}, + [440] = {.lex_state = 0}, + [441] = {.lex_state = 88}, + [442] = {.lex_state = 0}, + [443] = {.lex_state = 88}, + [444] = {.lex_state = 0}, + [445] = {.lex_state = 0}, + [446] = {.lex_state = 88}, + [447] = {.lex_state = 0}, + [448] = {.lex_state = 0}, + [449] = {.lex_state = 88}, + [450] = {.lex_state = 0}, + [451] = {.lex_state = 88}, + [452] = {.lex_state = 0}, + [453] = {.lex_state = 0}, + [454] = {.lex_state = 0}, + [455] = {.lex_state = 16}, + [456] = {.lex_state = 0}, + [457] = {.lex_state = 88}, + [458] = {.lex_state = 0}, + [459] = {.lex_state = 0}, + [460] = {.lex_state = 88}, + [461] = {.lex_state = 0}, + [462] = {.lex_state = 88}, + [463] = {.lex_state = 88}, + [464] = {.lex_state = 0}, + [465] = {.lex_state = 0}, + [466] = {.lex_state = 0}, + [467] = {.lex_state = 0}, + [468] = {.lex_state = 88}, + [469] = {.lex_state = 0}, + [470] = {.lex_state = 88}, + [471] = {.lex_state = 20}, + [472] = {.lex_state = 0}, + [473] = {.lex_state = 0}, + [474] = {.lex_state = 88}, + [475] = {.lex_state = 88}, + [476] = {.lex_state = 88}, + [477] = {.lex_state = 0}, + [478] = {.lex_state = 88}, + [479] = {.lex_state = 88}, + [480] = {.lex_state = 88}, + [481] = {.lex_state = 0}, + [482] = {.lex_state = 0}, + [483] = {.lex_state = 88}, + [484] = {.lex_state = 0}, + [485] = {.lex_state = 88}, + [486] = {.lex_state = 88}, + [487] = {.lex_state = 0}, + [488] = {.lex_state = 88}, + [489] = {.lex_state = 0}, + [490] = {.lex_state = 0}, + [491] = {.lex_state = 88}, + [492] = {.lex_state = 0}, + [493] = {.lex_state = 0}, + [494] = {.lex_state = 88}, + [495] = {.lex_state = 0}, + [496] = {.lex_state = 88}, + [497] = {.lex_state = 88}, + [498] = {.lex_state = 88}, + [499] = {.lex_state = 16}, + [500] = {.lex_state = 88}, + [501] = {.lex_state = 88}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -5115,14 +5124,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(1), [anon_sym_LBRACE] = ACTIONS(1), [anon_sym_RBRACE] = ACTIONS(1), - [aux_sym_asm_list_token1] = ACTIONS(3), - [anon_sym_char] = ACTIONS(1), - [aux_sym__asm_instruction_token1] = ACTIONS(1), + [anon_sym_LT_LBRACE] = ACTIONS(1), [anon_sym_abort_DQUOTE] = ACTIONS(1), [anon_sym_DOT_DQUOTE] = ACTIONS(1), [anon_sym_DQUOTE] = ACTIONS(1), - [aux_sym__asm_string_token1] = ACTIONS(1), [anon_sym_DQUOTE2] = ACTIONS(1), + [sym_asm_hex_bitstring] = ACTIONS(1), + [sym_asm_bin_bitstring] = ACTIONS(1), + [aux_sym_asm_boc_hex_token1] = ACTIONS(1), + [sym_asm_control_register] = ACTIONS(1), + [aux_sym_asm_stack_register_token1] = ACTIONS(1), + [aux_sym_asm_stack_register_token2] = ACTIONS(1), [anon_sym_mutates] = ACTIONS(1), [anon_sym_extends] = ACTIONS(1), [anon_sym_inline] = ACTIONS(1), @@ -5189,8 +5201,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_map] = ACTIONS(1), [sym__type_identifier] = ACTIONS(1), [anon_sym_as] = ACTIONS(1), + [sym__func_quoted_id] = ACTIONS(1), [sym_self] = ACTIONS(1), - [sym__non_quote_or_backslash_char] = ACTIONS(1), [sym_escape_sequence] = ACTIONS(1), [anon_sym_true] = ACTIONS(1), [anon_sym_false] = ACTIONS(1), @@ -5200,27 +5212,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [1] = { - [sym_source_file] = STATE(474), + [sym_source_file] = STATE(410), [sym_import] = STATE(9), - [sym__module_item] = STATE(14), - [sym_primitive] = STATE(14), - [sym__constant] = STATE(181), - [sym_constant_attributes] = STATE(483), - [sym_native_function] = STATE(14), - [sym_asm_function] = STATE(14), - [sym__function] = STATE(159), - [sym_function_attributes] = STATE(494), - [sym_get_attribute] = STATE(204), - [sym_struct] = STATE(14), - [sym_message] = STATE(14), - [sym_contract] = STATE(14), - [sym_trait] = STATE(14), - [sym_contract_attributes] = STATE(346), + [sym__module_item] = STATE(13), + [sym_primitive] = STATE(13), + [sym__constant] = STATE(150), + [sym_constant_attributes] = STATE(422), + [sym_native_function] = STATE(13), + [sym_asm_function] = STATE(13), + [sym__function] = STATE(160), + [sym_function_attributes] = STATE(428), + [sym_get_attribute] = STATE(218), + [sym_struct] = STATE(13), + [sym_message] = STATE(13), + [sym_contract] = STATE(13), + [sym_trait] = STATE(13), + [sym_contract_attributes] = STATE(378), [aux_sym_source_file_repeat1] = STATE(9), - [aux_sym_source_file_repeat2] = STATE(14), - [aux_sym_constant_attributes_repeat1] = STATE(251), - [aux_sym_function_attributes_repeat1] = STATE(204), - [aux_sym_contract_attributes_repeat1] = STATE(260), + [aux_sym_source_file_repeat2] = STATE(13), + [aux_sym_constant_attributes_repeat1] = STATE(256), + [aux_sym_function_attributes_repeat1] = STATE(218), + [aux_sym_contract_attributes_repeat1] = STATE(270), [ts_builtin_sym_end] = ACTIONS(5), [anon_sym_import] = ACTIONS(7), [anon_sym_primitive] = ACTIONS(9), @@ -5231,69 +5243,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATname] = ACTIONS(15), [anon_sym_asm] = ACTIONS(17), [anon_sym_fun] = ACTIONS(19), - [aux_sym_asm_list_token1] = ACTIONS(21), - [anon_sym_mutates] = ACTIONS(23), - [anon_sym_extends] = ACTIONS(23), - [anon_sym_inline] = ACTIONS(23), - [anon_sym_get] = ACTIONS(25), - [anon_sym_struct] = ACTIONS(27), - [anon_sym_message] = ACTIONS(29), - [anon_sym_contract] = ACTIONS(31), - [anon_sym_trait] = ACTIONS(33), - [anon_sym_ATinterface] = ACTIONS(35), - [sym_comment] = ACTIONS(21), + [anon_sym_mutates] = ACTIONS(21), + [anon_sym_extends] = ACTIONS(21), + [anon_sym_inline] = ACTIONS(21), + [anon_sym_get] = ACTIONS(23), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_message] = ACTIONS(27), + [anon_sym_contract] = ACTIONS(29), + [anon_sym_trait] = ACTIONS(31), + [anon_sym_ATinterface] = ACTIONS(33), + [sym_comment] = ACTIONS(3), }, }; static const uint16_t ts_small_parse_table[] = { [0] = 27, - ACTIONS(37), 1, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, sym_identifier, - ACTIONS(39), 1, + ACTIONS(37), 1, anon_sym_LPAREN, - ACTIONS(41), 1, + ACTIONS(39), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(41), 1, anon_sym_RBRACE, - ACTIONS(45), 1, + ACTIONS(43), 1, anon_sym_DQUOTE, - ACTIONS(47), 1, + ACTIONS(45), 1, anon_sym_let, - ACTIONS(49), 1, + ACTIONS(47), 1, anon_sym_return, - ACTIONS(51), 1, + ACTIONS(49), 1, anon_sym_if, - ACTIONS(53), 1, + ACTIONS(51), 1, anon_sym_while, - ACTIONS(55), 1, + ACTIONS(53), 1, anon_sym_repeat, - ACTIONS(57), 1, + ACTIONS(55), 1, anon_sym_do, - ACTIONS(59), 1, + ACTIONS(57), 1, anon_sym_try, - ACTIONS(61), 1, + ACTIONS(59), 1, anon_sym_foreach, - ACTIONS(65), 1, + ACTIONS(63), 1, anon_sym_initOf, - ACTIONS(67), 1, + ACTIONS(65), 1, sym_self, - ACTIONS(71), 1, + ACTIONS(69), 1, sym_null, - ACTIONS(73), 1, + ACTIONS(71), 1, sym_integer, STATE(16), 1, sym_field_access_expression, - STATE(65), 1, + STATE(83), 1, sym_value_expression, - STATE(197), 1, + STATE(214), 1, sym__path_expression, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(69), 2, + ACTIONS(67), 2, anon_sym_true, anon_sym_false, - ACTIONS(63), 4, + ACTIONS(61), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, @@ -5303,7 +5313,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 8, + STATE(65), 8, sym_non_null_assert_expression, sym_method_call_expression, sym_static_call_expression, @@ -5312,7 +5322,7 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - STATE(332), 8, + STATE(383), 8, sym__statement_without_semicolon, sym_let_statement, sym_destruct_statement, @@ -5331,54 +5341,53 @@ static const uint16_t ts_small_parse_table[] = { sym_try_statement, sym_foreach_statement, aux_sym_block_statement_repeat1, - [112] = 27, - ACTIONS(37), 1, + [111] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, sym_identifier, - ACTIONS(39), 1, + ACTIONS(37), 1, anon_sym_LPAREN, - ACTIONS(41), 1, + ACTIONS(39), 1, anon_sym_LBRACE, - ACTIONS(45), 1, + ACTIONS(43), 1, anon_sym_DQUOTE, - ACTIONS(47), 1, + ACTIONS(45), 1, anon_sym_let, - ACTIONS(49), 1, + ACTIONS(47), 1, anon_sym_return, - ACTIONS(51), 1, + ACTIONS(49), 1, anon_sym_if, - ACTIONS(53), 1, + ACTIONS(51), 1, anon_sym_while, - ACTIONS(55), 1, + ACTIONS(53), 1, anon_sym_repeat, - ACTIONS(57), 1, + ACTIONS(55), 1, anon_sym_do, - ACTIONS(59), 1, + ACTIONS(57), 1, anon_sym_try, - ACTIONS(61), 1, + ACTIONS(59), 1, anon_sym_foreach, - ACTIONS(65), 1, + ACTIONS(63), 1, anon_sym_initOf, - ACTIONS(67), 1, + ACTIONS(65), 1, sym_self, - ACTIONS(71), 1, + ACTIONS(69), 1, sym_null, - ACTIONS(73), 1, + ACTIONS(71), 1, sym_integer, - ACTIONS(75), 1, + ACTIONS(73), 1, anon_sym_RBRACE, STATE(16), 1, sym_field_access_expression, - STATE(65), 1, + STATE(83), 1, sym_value_expression, - STATE(197), 1, + STATE(214), 1, sym__path_expression, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(69), 2, + ACTIONS(67), 2, anon_sym_true, anon_sym_false, - ACTIONS(63), 4, + ACTIONS(61), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, @@ -5388,7 +5397,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 8, + STATE(65), 8, sym_non_null_assert_expression, sym_method_call_expression, sym_static_call_expression, @@ -5397,7 +5406,7 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - STATE(343), 8, + STATE(372), 8, sym__statement_without_semicolon, sym_let_statement, sym_destruct_statement, @@ -5416,54 +5425,53 @@ static const uint16_t ts_small_parse_table[] = { sym_try_statement, sym_foreach_statement, aux_sym_block_statement_repeat1, - [224] = 27, - ACTIONS(77), 1, + [222] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(75), 1, sym_identifier, - ACTIONS(80), 1, + ACTIONS(78), 1, anon_sym_LPAREN, - ACTIONS(83), 1, + ACTIONS(81), 1, anon_sym_LBRACE, - ACTIONS(86), 1, + ACTIONS(84), 1, anon_sym_RBRACE, - ACTIONS(88), 1, + ACTIONS(86), 1, anon_sym_DQUOTE, - ACTIONS(91), 1, + ACTIONS(89), 1, anon_sym_let, - ACTIONS(94), 1, + ACTIONS(92), 1, anon_sym_return, - ACTIONS(97), 1, + ACTIONS(95), 1, anon_sym_if, - ACTIONS(100), 1, + ACTIONS(98), 1, anon_sym_while, - ACTIONS(103), 1, + ACTIONS(101), 1, anon_sym_repeat, - ACTIONS(106), 1, + ACTIONS(104), 1, anon_sym_do, - ACTIONS(109), 1, + ACTIONS(107), 1, anon_sym_try, - ACTIONS(112), 1, + ACTIONS(110), 1, anon_sym_foreach, - ACTIONS(118), 1, + ACTIONS(116), 1, anon_sym_initOf, - ACTIONS(121), 1, + ACTIONS(119), 1, sym_self, - ACTIONS(127), 1, + ACTIONS(125), 1, sym_null, - ACTIONS(130), 1, + ACTIONS(128), 1, sym_integer, STATE(16), 1, sym_field_access_expression, - STATE(65), 1, + STATE(83), 1, sym_value_expression, - STATE(197), 1, + STATE(214), 1, sym__path_expression, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(124), 2, + ACTIONS(122), 2, anon_sym_true, anon_sym_false, - ACTIONS(115), 4, + ACTIONS(113), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, @@ -5473,7 +5481,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 8, + STATE(65), 8, sym_non_null_assert_expression, sym_method_call_expression, sym_static_call_expression, @@ -5482,7 +5490,7 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - STATE(428), 8, + STATE(417), 8, sym__statement_without_semicolon, sym_let_statement, sym_destruct_statement, @@ -5501,54 +5509,53 @@ static const uint16_t ts_small_parse_table[] = { sym_try_statement, sym_foreach_statement, aux_sym_block_statement_repeat1, - [336] = 27, - ACTIONS(37), 1, + [333] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, sym_identifier, - ACTIONS(39), 1, + ACTIONS(37), 1, anon_sym_LPAREN, - ACTIONS(41), 1, + ACTIONS(39), 1, anon_sym_LBRACE, - ACTIONS(45), 1, + ACTIONS(43), 1, anon_sym_DQUOTE, - ACTIONS(47), 1, + ACTIONS(45), 1, anon_sym_let, - ACTIONS(49), 1, + ACTIONS(47), 1, anon_sym_return, - ACTIONS(51), 1, + ACTIONS(49), 1, anon_sym_if, - ACTIONS(53), 1, + ACTIONS(51), 1, anon_sym_while, - ACTIONS(55), 1, + ACTIONS(53), 1, anon_sym_repeat, - ACTIONS(57), 1, + ACTIONS(55), 1, anon_sym_do, - ACTIONS(59), 1, + ACTIONS(57), 1, anon_sym_try, - ACTIONS(61), 1, + ACTIONS(59), 1, anon_sym_foreach, - ACTIONS(65), 1, + ACTIONS(63), 1, anon_sym_initOf, - ACTIONS(67), 1, + ACTIONS(65), 1, sym_self, - ACTIONS(71), 1, + ACTIONS(69), 1, sym_null, - ACTIONS(73), 1, + ACTIONS(71), 1, sym_integer, - ACTIONS(133), 1, + ACTIONS(131), 1, anon_sym_RBRACE, STATE(16), 1, sym_field_access_expression, - STATE(65), 1, + STATE(83), 1, sym_value_expression, - STATE(197), 1, + STATE(214), 1, sym__path_expression, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(69), 2, + ACTIONS(67), 2, anon_sym_true, anon_sym_false, - ACTIONS(63), 4, + ACTIONS(61), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, @@ -5558,7 +5565,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 8, + STATE(65), 8, sym_non_null_assert_expression, sym_method_call_expression, sym_static_call_expression, @@ -5567,7 +5574,7 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - STATE(397), 8, + STATE(369), 8, sym__statement_without_semicolon, sym_let_statement, sym_destruct_statement, @@ -5576,7 +5583,7 @@ static const uint16_t ts_small_parse_table[] = { sym_assignment_statement, sym_augmented_assignment_statement, sym_do_until_statement, - STATE(6), 9, + STATE(4), 9, sym__statement, sym__statement_with_brace, sym_block_statement, @@ -5586,54 +5593,53 @@ static const uint16_t ts_small_parse_table[] = { sym_try_statement, sym_foreach_statement, aux_sym_block_statement_repeat1, - [448] = 27, - ACTIONS(37), 1, + [444] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, sym_identifier, - ACTIONS(39), 1, + ACTIONS(37), 1, anon_sym_LPAREN, - ACTIONS(41), 1, + ACTIONS(39), 1, anon_sym_LBRACE, - ACTIONS(45), 1, + ACTIONS(43), 1, anon_sym_DQUOTE, - ACTIONS(47), 1, + ACTIONS(45), 1, anon_sym_let, - ACTIONS(49), 1, + ACTIONS(47), 1, anon_sym_return, - ACTIONS(51), 1, + ACTIONS(49), 1, anon_sym_if, - ACTIONS(53), 1, + ACTIONS(51), 1, anon_sym_while, - ACTIONS(55), 1, + ACTIONS(53), 1, anon_sym_repeat, - ACTIONS(57), 1, + ACTIONS(55), 1, anon_sym_do, - ACTIONS(59), 1, + ACTIONS(57), 1, anon_sym_try, - ACTIONS(61), 1, + ACTIONS(59), 1, anon_sym_foreach, - ACTIONS(65), 1, + ACTIONS(63), 1, anon_sym_initOf, - ACTIONS(67), 1, + ACTIONS(65), 1, sym_self, - ACTIONS(71), 1, + ACTIONS(69), 1, sym_null, - ACTIONS(73), 1, + ACTIONS(71), 1, sym_integer, - ACTIONS(135), 1, + ACTIONS(133), 1, anon_sym_RBRACE, STATE(16), 1, sym_field_access_expression, - STATE(65), 1, + STATE(83), 1, sym_value_expression, - STATE(197), 1, + STATE(214), 1, sym__path_expression, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(69), 2, + ACTIONS(67), 2, anon_sym_true, anon_sym_false, - ACTIONS(63), 4, + ACTIONS(61), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, @@ -5643,7 +5649,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 8, + STATE(65), 8, sym_non_null_assert_expression, sym_method_call_expression, sym_static_call_expression, @@ -5652,7 +5658,7 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - STATE(399), 8, + STATE(404), 8, sym__statement_without_semicolon, sym_let_statement, sym_destruct_statement, @@ -5661,7 +5667,7 @@ static const uint16_t ts_small_parse_table[] = { sym_assignment_statement, sym_augmented_assignment_statement, sym_do_until_statement, - STATE(4), 9, + STATE(5), 9, sym__statement, sym__statement_with_brace, sym_block_statement, @@ -5671,15 +5677,14 @@ static const uint16_t ts_small_parse_table[] = { sym_try_statement, sym_foreach_statement, aux_sym_block_statement_repeat1, - [560] = 5, - ACTIONS(141), 1, + [555] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(139), 1, anon_sym_LPAREN, - STATE(78), 1, + STATE(74), 1, sym_argument_list, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(139), 15, + ACTIONS(137), 15, anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -5695,7 +5700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(137), 24, + ACTIONS(135), 24, anon_sym_SEMI, anon_sym_COLON, anon_sym_RPAREN, @@ -5720,21 +5725,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_BANG_BANG, anon_sym_DOT, - [614] = 9, - ACTIONS(141), 1, + [608] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(139), 1, anon_sym_LPAREN, - ACTIONS(145), 1, + ACTIONS(143), 1, anon_sym_EQ, - ACTIONS(147), 1, + ACTIONS(145), 1, anon_sym_LBRACE, STATE(68), 1, - sym_argument_list, - STATE(69), 1, sym_instance_argument_list, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(143), 9, + STATE(81), 1, + sym_argument_list, + ACTIONS(141), 9, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_QMARK, @@ -5744,7 +5748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_BANG_BANG, anon_sym_DOT, - ACTIONS(149), 12, + ACTIONS(147), 12, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -5757,7 +5761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_GT_GT_EQ, anon_sym_LT_LT_EQ, - ACTIONS(151), 14, + ACTIONS(149), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -5772,7 +5776,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [675] = 26, + [668] = 26, + ACTIONS(3), 1, + sym_comment, ACTIONS(7), 1, anon_sym_import, ACTIONS(9), 1, @@ -5785,48 +5791,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, ACTIONS(19), 1, anon_sym_fun, - ACTIONS(25), 1, + ACTIONS(23), 1, anon_sym_get, - ACTIONS(27), 1, + ACTIONS(25), 1, anon_sym_struct, - ACTIONS(29), 1, + ACTIONS(27), 1, anon_sym_message, - ACTIONS(31), 1, + ACTIONS(29), 1, anon_sym_contract, - ACTIONS(33), 1, + ACTIONS(31), 1, anon_sym_trait, - ACTIONS(35), 1, + ACTIONS(33), 1, anon_sym_ATinterface, - ACTIONS(153), 1, + ACTIONS(151), 1, ts_builtin_sym_end, - STATE(159), 1, - sym__function, - STATE(181), 1, + STATE(150), 1, sym__constant, - STATE(251), 1, + STATE(160), 1, + sym__function, + STATE(256), 1, aux_sym_constant_attributes_repeat1, - STATE(260), 1, + STATE(270), 1, aux_sym_contract_attributes_repeat1, - STATE(346), 1, + STATE(378), 1, sym_contract_attributes, - STATE(483), 1, + STATE(422), 1, sym_constant_attributes, - STATE(494), 1, + STATE(428), 1, sym_function_attributes, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - STATE(119), 2, + STATE(128), 2, sym_import, aux_sym_source_file_repeat1, - STATE(204), 2, + STATE(218), 2, sym_get_attribute, aux_sym_function_attributes_repeat1, ACTIONS(13), 3, anon_sym_virtual, anon_sym_override, anon_sym_abstract, - ACTIONS(23), 3, + ACTIONS(21), 3, anon_sym_mutates, anon_sym_extends, anon_sym_inline, @@ -5840,11 +5843,10 @@ static const uint16_t ts_small_parse_table[] = { sym_contract, sym_trait, aux_sym_source_file_repeat2, - [769] = 3, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [761] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(157), 9, + ACTIONS(155), 9, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -5854,7 +5856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, sym_integer, - ACTIONS(155), 29, + ACTIONS(153), 29, anon_sym_const, anon_sym_virtual, anon_sym_override, @@ -5884,11 +5886,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_null, - [816] = 3, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [807] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(161), 9, + ACTIONS(159), 9, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -5898,7 +5899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, sym_integer, - ACTIONS(159), 29, + ACTIONS(157), 29, anon_sym_const, anon_sym_virtual, anon_sym_override, @@ -5928,11 +5929,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_null, - [863] = 3, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [853] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(165), 9, + ACTIONS(163), 9, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -5942,7 +5942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, sym_integer, - ACTIONS(163), 29, + ACTIONS(161), 29, anon_sym_const, anon_sym_virtual, anon_sym_override, @@ -5972,60 +5972,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_null, - [910] = 24, - ACTIONS(167), 1, - ts_builtin_sym_end, - ACTIONS(169), 1, + [899] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, anon_sym_primitive, - ACTIONS(172), 1, + ACTIONS(11), 1, anon_sym_const, - ACTIONS(178), 1, + ACTIONS(15), 1, anon_sym_ATname, - ACTIONS(181), 1, + ACTIONS(17), 1, anon_sym_asm, - ACTIONS(184), 1, + ACTIONS(19), 1, anon_sym_fun, - ACTIONS(190), 1, + ACTIONS(23), 1, anon_sym_get, - ACTIONS(193), 1, + ACTIONS(25), 1, anon_sym_struct, - ACTIONS(196), 1, + ACTIONS(27), 1, anon_sym_message, - ACTIONS(199), 1, + ACTIONS(29), 1, anon_sym_contract, - ACTIONS(202), 1, + ACTIONS(31), 1, anon_sym_trait, - ACTIONS(205), 1, + ACTIONS(33), 1, anon_sym_ATinterface, - STATE(159), 1, - sym__function, - STATE(181), 1, + ACTIONS(151), 1, + ts_builtin_sym_end, + STATE(150), 1, sym__constant, - STATE(251), 1, + STATE(160), 1, + sym__function, + STATE(256), 1, aux_sym_constant_attributes_repeat1, - STATE(260), 1, + STATE(270), 1, aux_sym_contract_attributes_repeat1, - STATE(346), 1, + STATE(378), 1, sym_contract_attributes, - STATE(483), 1, + STATE(422), 1, sym_constant_attributes, - STATE(494), 1, + STATE(428), 1, sym_function_attributes, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - STATE(204), 2, + STATE(218), 2, sym_get_attribute, aux_sym_function_attributes_repeat1, - ACTIONS(175), 3, + ACTIONS(13), 3, anon_sym_virtual, anon_sym_override, anon_sym_abstract, - ACTIONS(187), 3, + ACTIONS(21), 3, anon_sym_mutates, anon_sym_extends, anon_sym_inline, - STATE(13), 9, + STATE(14), 9, sym__module_item, sym_primitive, sym_native_function, @@ -6035,60 +6034,59 @@ static const uint16_t ts_small_parse_table[] = { sym_contract, sym_trait, aux_sym_source_file_repeat2, - [997] = 24, - ACTIONS(9), 1, + [985] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(165), 1, + ts_builtin_sym_end, + ACTIONS(167), 1, anon_sym_primitive, - ACTIONS(11), 1, + ACTIONS(170), 1, anon_sym_const, - ACTIONS(15), 1, + ACTIONS(176), 1, anon_sym_ATname, - ACTIONS(17), 1, + ACTIONS(179), 1, anon_sym_asm, - ACTIONS(19), 1, + ACTIONS(182), 1, anon_sym_fun, - ACTIONS(25), 1, + ACTIONS(188), 1, anon_sym_get, - ACTIONS(27), 1, + ACTIONS(191), 1, anon_sym_struct, - ACTIONS(29), 1, + ACTIONS(194), 1, anon_sym_message, - ACTIONS(31), 1, + ACTIONS(197), 1, anon_sym_contract, - ACTIONS(33), 1, + ACTIONS(200), 1, anon_sym_trait, - ACTIONS(35), 1, + ACTIONS(203), 1, anon_sym_ATinterface, - ACTIONS(153), 1, - ts_builtin_sym_end, - STATE(159), 1, - sym__function, - STATE(181), 1, + STATE(150), 1, sym__constant, - STATE(251), 1, + STATE(160), 1, + sym__function, + STATE(256), 1, aux_sym_constant_attributes_repeat1, - STATE(260), 1, + STATE(270), 1, aux_sym_contract_attributes_repeat1, - STATE(346), 1, + STATE(378), 1, sym_contract_attributes, - STATE(483), 1, + STATE(422), 1, sym_constant_attributes, - STATE(494), 1, + STATE(428), 1, sym_function_attributes, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - STATE(204), 2, + STATE(218), 2, sym_get_attribute, aux_sym_function_attributes_repeat1, - ACTIONS(13), 3, + ACTIONS(173), 3, anon_sym_virtual, anon_sym_override, anon_sym_abstract, - ACTIONS(23), 3, + ACTIONS(185), 3, anon_sym_mutates, anon_sym_extends, anon_sym_inline, - STATE(13), 9, + STATE(14), 9, sym__module_item, sym_primitive, sym_native_function, @@ -6098,7 +6096,9 @@ static const uint16_t ts_small_parse_table[] = { sym_contract, sym_trait, aux_sym_source_file_repeat2, - [1084] = 24, + [1071] = 24, + ACTIONS(3), 1, + sym_comment, ACTIONS(9), 1, anon_sym_primitive, ACTIONS(11), 1, @@ -6109,49 +6109,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, ACTIONS(19), 1, anon_sym_fun, - ACTIONS(25), 1, + ACTIONS(23), 1, anon_sym_get, - ACTIONS(27), 1, + ACTIONS(25), 1, anon_sym_struct, - ACTIONS(29), 1, + ACTIONS(27), 1, anon_sym_message, - ACTIONS(31), 1, + ACTIONS(29), 1, anon_sym_contract, - ACTIONS(33), 1, + ACTIONS(31), 1, anon_sym_trait, - ACTIONS(35), 1, + ACTIONS(33), 1, anon_sym_ATinterface, - ACTIONS(208), 1, + ACTIONS(206), 1, ts_builtin_sym_end, - STATE(159), 1, - sym__function, - STATE(181), 1, + STATE(150), 1, sym__constant, - STATE(251), 1, + STATE(160), 1, + sym__function, + STATE(256), 1, aux_sym_constant_attributes_repeat1, - STATE(260), 1, + STATE(270), 1, aux_sym_contract_attributes_repeat1, - STATE(346), 1, + STATE(378), 1, sym_contract_attributes, - STATE(483), 1, + STATE(422), 1, sym_constant_attributes, - STATE(494), 1, + STATE(428), 1, sym_function_attributes, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - STATE(204), 2, + STATE(218), 2, sym_get_attribute, aux_sym_function_attributes_repeat1, ACTIONS(13), 3, anon_sym_virtual, anon_sym_override, anon_sym_abstract, - ACTIONS(23), 3, + ACTIONS(21), 3, anon_sym_mutates, anon_sym_extends, anon_sym_inline, - STATE(13), 9, + STATE(14), 9, sym__module_item, sym_primitive, sym_native_function, @@ -6161,13 +6158,12 @@ static const uint16_t ts_small_parse_table[] = { sym_contract, sym_trait, aux_sym_source_file_repeat2, - [1171] = 5, - ACTIONS(145), 1, - anon_sym_EQ, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [1157] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(143), 9, + ACTIONS(143), 1, + anon_sym_EQ, + ACTIONS(141), 9, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_QMARK, @@ -6177,7 +6173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_BANG_BANG, anon_sym_DOT, - ACTIONS(149), 12, + ACTIONS(147), 12, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -6190,7 +6186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_GT_GT_EQ, anon_sym_LT_LT_EQ, - ACTIONS(151), 14, + ACTIONS(149), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -6205,158 +6201,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [1220] = 20, - ACTIONS(210), 1, + [1205] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(208), 1, sym_identifier, - ACTIONS(212), 1, + ACTIONS(210), 1, anon_sym_const, - ACTIONS(216), 1, + ACTIONS(214), 1, anon_sym_fun, - ACTIONS(218), 1, + ACTIONS(216), 1, anon_sym_RBRACE, - ACTIONS(222), 1, + ACTIONS(220), 1, anon_sym_get, - ACTIONS(224), 1, + ACTIONS(222), 1, anon_sym_init, - ACTIONS(226), 1, + ACTIONS(224), 1, anon_sym_receive, - ACTIONS(228), 1, + ACTIONS(226), 1, anon_sym_bounced, - ACTIONS(230), 1, + ACTIONS(228), 1, anon_sym_external, - STATE(183), 1, + STATE(195), 1, sym__function_definition, - STATE(251), 1, + STATE(256), 1, aux_sym_constant_attributes_repeat1, - STATE(378), 1, + STATE(336), 1, sym__function_declaration, - STATE(459), 1, + STATE(430), 1, sym_constant_attributes, - STATE(476), 1, + STATE(463), 1, sym_function_attributes, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - STATE(204), 2, + STATE(218), 2, sym_get_attribute, aux_sym_function_attributes_repeat1, - ACTIONS(214), 3, + ACTIONS(212), 3, anon_sym_virtual, anon_sym_override, anon_sym_abstract, - ACTIONS(220), 3, + ACTIONS(218), 3, anon_sym_mutates, anon_sym_extends, anon_sym_inline, - STATE(388), 3, + STATE(342), 3, sym_storage_constant, sym_storage_variable, sym__body_item_without_semicolon, - STATE(18), 6, + STATE(19), 6, sym_init_function, sym__receiver_function, sym_receive_function, sym_bounced_function, sym_external_function, aux_sym_contract_body_repeat1, - [1294] = 20, - ACTIONS(210), 1, + [1278] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(208), 1, sym_identifier, - ACTIONS(212), 1, + ACTIONS(210), 1, anon_sym_const, - ACTIONS(216), 1, + ACTIONS(214), 1, anon_sym_fun, - ACTIONS(222), 1, + ACTIONS(220), 1, anon_sym_get, - ACTIONS(224), 1, + ACTIONS(222), 1, anon_sym_init, - ACTIONS(226), 1, + ACTIONS(224), 1, anon_sym_receive, - ACTIONS(228), 1, + ACTIONS(226), 1, anon_sym_bounced, - ACTIONS(230), 1, + ACTIONS(228), 1, anon_sym_external, - ACTIONS(232), 1, + ACTIONS(230), 1, anon_sym_RBRACE, - STATE(183), 1, + STATE(195), 1, sym__function_definition, - STATE(251), 1, + STATE(256), 1, aux_sym_constant_attributes_repeat1, - STATE(378), 1, + STATE(336), 1, sym__function_declaration, - STATE(459), 1, + STATE(430), 1, sym_constant_attributes, - STATE(476), 1, + STATE(463), 1, sym_function_attributes, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - STATE(204), 2, + STATE(218), 2, sym_get_attribute, aux_sym_function_attributes_repeat1, - ACTIONS(214), 3, + ACTIONS(212), 3, anon_sym_virtual, anon_sym_override, anon_sym_abstract, - ACTIONS(220), 3, + ACTIONS(218), 3, anon_sym_mutates, anon_sym_extends, anon_sym_inline, - STATE(369), 3, + STATE(340), 3, sym_storage_constant, sym_storage_variable, sym__body_item_without_semicolon, - STATE(19), 6, + STATE(17), 6, sym_init_function, sym__receiver_function, sym_receive_function, sym_bounced_function, sym_external_function, aux_sym_contract_body_repeat1, - [1368] = 20, - ACTIONS(234), 1, + [1351] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(232), 1, sym_identifier, - ACTIONS(237), 1, + ACTIONS(235), 1, anon_sym_const, - ACTIONS(243), 1, + ACTIONS(241), 1, anon_sym_fun, - ACTIONS(246), 1, + ACTIONS(244), 1, anon_sym_RBRACE, - ACTIONS(251), 1, + ACTIONS(249), 1, anon_sym_get, - ACTIONS(254), 1, + ACTIONS(252), 1, anon_sym_init, - ACTIONS(257), 1, + ACTIONS(255), 1, anon_sym_receive, - ACTIONS(260), 1, + ACTIONS(258), 1, anon_sym_bounced, - ACTIONS(263), 1, + ACTIONS(261), 1, anon_sym_external, - STATE(183), 1, + STATE(195), 1, sym__function_definition, - STATE(251), 1, + STATE(256), 1, aux_sym_constant_attributes_repeat1, - STATE(378), 1, + STATE(336), 1, sym__function_declaration, - STATE(459), 1, + STATE(430), 1, sym_constant_attributes, - STATE(476), 1, + STATE(463), 1, sym_function_attributes, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - STATE(204), 2, + STATE(218), 2, sym_get_attribute, aux_sym_function_attributes_repeat1, - ACTIONS(240), 3, + ACTIONS(238), 3, anon_sym_virtual, anon_sym_override, anon_sym_abstract, - ACTIONS(248), 3, + ACTIONS(246), 3, anon_sym_mutates, anon_sym_extends, anon_sym_inline, - STATE(411), 3, + STATE(484), 3, sym_storage_constant, sym_storage_variable, sym__body_item_without_semicolon, @@ -6367,25 +6360,24 @@ static const uint16_t ts_small_parse_table[] = { sym_bounced_function, sym_external_function, aux_sym_contract_body_repeat1, - [1442] = 7, - ACTIONS(141), 1, + [1424] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(139), 1, anon_sym_LPAREN, - ACTIONS(147), 1, + ACTIONS(145), 1, anon_sym_LBRACE, STATE(68), 1, - sym_argument_list, - STATE(69), 1, sym_instance_argument_list, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(151), 5, + STATE(81), 1, + sym_argument_list, + ACTIONS(149), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, anon_sym_SLASH, - ACTIONS(143), 21, + ACTIONS(141), 21, anon_sym_SEMI, anon_sym_COLON, anon_sym_RPAREN, @@ -6407,190 +6399,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG_BANG, anon_sym_DOT, - [1489] = 13, - ACTIONS(39), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_DQUOTE, - ACTIONS(65), 1, - anon_sym_initOf, - ACTIONS(73), 1, - sym_integer, - ACTIONS(266), 1, - sym_identifier, - STATE(65), 1, - sym_value_expression, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [1470] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(69), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(71), 2, - sym_self, - sym_null, - ACTIONS(268), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - ACTIONS(63), 4, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_TILDE, - STATE(104), 4, - sym__expression, - sym_ternary_expression, - sym_binary_expression, - sym_unary_expression, - STATE(63), 9, - sym_non_null_assert_expression, - sym_method_call_expression, - sym_field_access_expression, - sym_static_call_expression, - sym_parenthesized_expression, - sym_instance_expression, - sym_initOf, - sym_string, - sym_boolean, - [1547] = 19, - ACTIONS(210), 1, + ACTIONS(208), 1, sym_identifier, - ACTIONS(212), 1, + ACTIONS(210), 1, anon_sym_const, - ACTIONS(216), 1, + ACTIONS(214), 1, anon_sym_fun, - ACTIONS(222), 1, + ACTIONS(220), 1, anon_sym_get, - ACTIONS(226), 1, + ACTIONS(224), 1, anon_sym_receive, - ACTIONS(228), 1, + ACTIONS(226), 1, anon_sym_bounced, - ACTIONS(230), 1, + ACTIONS(228), 1, anon_sym_external, - ACTIONS(270), 1, + ACTIONS(264), 1, anon_sym_RBRACE, - STATE(194), 1, + STATE(207), 1, sym__function_definition, - STATE(251), 1, + STATE(256), 1, aux_sym_constant_attributes_repeat1, - STATE(378), 1, + STATE(336), 1, sym__function_declaration, - STATE(459), 1, + STATE(430), 1, sym_constant_attributes, - STATE(476), 1, + STATE(463), 1, sym_function_attributes, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - STATE(204), 2, + STATE(218), 2, sym_get_attribute, aux_sym_function_attributes_repeat1, - ACTIONS(214), 3, + ACTIONS(212), 3, anon_sym_virtual, anon_sym_override, anon_sym_abstract, - ACTIONS(220), 3, + ACTIONS(218), 3, anon_sym_mutates, anon_sym_extends, anon_sym_inline, - STATE(374), 3, + STATE(344), 3, sym_storage_constant, sym_storage_variable, sym__body_item_without_semicolon, - STATE(25), 5, + STATE(22), 5, sym__receiver_function, sym_receive_function, sym_bounced_function, sym_external_function, aux_sym_trait_body_repeat1, - [1617] = 19, - ACTIONS(210), 1, + [1539] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(208), 1, sym_identifier, - ACTIONS(212), 1, + ACTIONS(210), 1, anon_sym_const, - ACTIONS(216), 1, + ACTIONS(214), 1, anon_sym_fun, - ACTIONS(222), 1, + ACTIONS(220), 1, anon_sym_get, - ACTIONS(226), 1, + ACTIONS(224), 1, anon_sym_receive, - ACTIONS(228), 1, + ACTIONS(226), 1, anon_sym_bounced, - ACTIONS(230), 1, + ACTIONS(228), 1, anon_sym_external, - ACTIONS(272), 1, + ACTIONS(266), 1, anon_sym_RBRACE, - STATE(194), 1, + STATE(207), 1, sym__function_definition, - STATE(251), 1, + STATE(256), 1, aux_sym_constant_attributes_repeat1, - STATE(378), 1, + STATE(336), 1, sym__function_declaration, - STATE(459), 1, + STATE(430), 1, sym_constant_attributes, - STATE(476), 1, + STATE(463), 1, sym_function_attributes, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - STATE(204), 2, + STATE(218), 2, sym_get_attribute, aux_sym_function_attributes_repeat1, - ACTIONS(214), 3, + ACTIONS(212), 3, anon_sym_virtual, anon_sym_override, anon_sym_abstract, - ACTIONS(220), 3, + ACTIONS(218), 3, anon_sym_mutates, anon_sym_extends, anon_sym_inline, - STATE(383), 3, + STATE(355), 3, sym_storage_constant, sym_storage_variable, sym__body_item_without_semicolon, - STATE(22), 5, + STATE(25), 5, sym__receiver_function, sym_receive_function, sym_bounced_function, sym_external_function, aux_sym_trait_body_repeat1, - [1687] = 14, - ACTIONS(39), 1, + [1608] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, anon_sym_LPAREN, - ACTIONS(45), 1, + ACTIONS(43), 1, anon_sym_DQUOTE, - ACTIONS(65), 1, + ACTIONS(63), 1, anon_sym_initOf, - ACTIONS(73), 1, + ACTIONS(71), 1, sym_integer, - ACTIONS(266), 1, + ACTIONS(268), 1, sym_identifier, - ACTIONS(274), 1, + ACTIONS(270), 1, anon_sym_RPAREN, - STATE(65), 1, + STATE(83), 1, sym_value_expression, - STATE(302), 1, + STATE(321), 1, sym_argument, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, + ACTIONS(67), 2, + anon_sym_true, + anon_sym_false, ACTIONS(69), 2, + sym_self, + sym_null, + ACTIONS(61), 4, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_TILDE, + STATE(114), 4, + sym__expression, + sym_ternary_expression, + sym_binary_expression, + sym_unary_expression, + STATE(65), 9, + sym_non_null_assert_expression, + sym_method_call_expression, + sym_field_access_expression, + sym_static_call_expression, + sym_parenthesized_expression, + sym_instance_expression, + sym_initOf, + sym_string, + sym_boolean, + [1667] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym_LPAREN, + ACTIONS(43), 1, + anon_sym_DQUOTE, + ACTIONS(63), 1, + anon_sym_initOf, + ACTIONS(71), 1, + sym_integer, + ACTIONS(268), 1, + sym_identifier, + STATE(83), 1, + sym_value_expression, + ACTIONS(67), 2, anon_sym_true, anon_sym_false, - ACTIONS(71), 2, + ACTIONS(69), 2, sym_self, sym_null, - ACTIONS(63), 4, + ACTIONS(272), 2, + anon_sym_SEMI, + anon_sym_RBRACE, + ACTIONS(61), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_TILDE, - STATE(103), 4, + STATE(109), 4, sym__expression, sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 9, + STATE(65), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -6600,48 +6588,47 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [1747] = 19, - ACTIONS(276), 1, + [1724] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 1, sym_identifier, - ACTIONS(279), 1, + ACTIONS(277), 1, anon_sym_const, - ACTIONS(285), 1, + ACTIONS(283), 1, anon_sym_fun, - ACTIONS(288), 1, + ACTIONS(286), 1, anon_sym_RBRACE, - ACTIONS(293), 1, + ACTIONS(291), 1, anon_sym_get, - ACTIONS(296), 1, + ACTIONS(294), 1, anon_sym_receive, - ACTIONS(299), 1, + ACTIONS(297), 1, anon_sym_bounced, - ACTIONS(302), 1, + ACTIONS(300), 1, anon_sym_external, - STATE(194), 1, + STATE(207), 1, sym__function_definition, - STATE(251), 1, + STATE(256), 1, aux_sym_constant_attributes_repeat1, - STATE(378), 1, + STATE(336), 1, sym__function_declaration, - STATE(459), 1, + STATE(430), 1, sym_constant_attributes, - STATE(476), 1, + STATE(463), 1, sym_function_attributes, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - STATE(204), 2, + STATE(218), 2, sym_get_attribute, aux_sym_function_attributes_repeat1, - ACTIONS(282), 3, + ACTIONS(280), 3, anon_sym_virtual, anon_sym_override, anon_sym_abstract, - ACTIONS(290), 3, + ACTIONS(288), 3, anon_sym_mutates, anon_sym_extends, anon_sym_inline, - STATE(432), 3, + STATE(454), 3, sym_storage_constant, sym_storage_variable, sym__body_item_without_semicolon, @@ -6651,43 +6638,42 @@ static const uint16_t ts_small_parse_table[] = { sym_bounced_function, sym_external_function, aux_sym_trait_body_repeat1, - [1817] = 14, - ACTIONS(39), 1, + [1793] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, anon_sym_LPAREN, - ACTIONS(45), 1, + ACTIONS(43), 1, anon_sym_DQUOTE, - ACTIONS(65), 1, + ACTIONS(63), 1, anon_sym_initOf, - ACTIONS(73), 1, + ACTIONS(71), 1, sym_integer, - ACTIONS(266), 1, + ACTIONS(268), 1, sym_identifier, - ACTIONS(305), 1, + ACTIONS(303), 1, anon_sym_RPAREN, - STATE(65), 1, + STATE(83), 1, sym_value_expression, - STATE(364), 1, + STATE(345), 1, sym_argument, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(69), 2, + ACTIONS(67), 2, anon_sym_true, anon_sym_false, - ACTIONS(71), 2, + ACTIONS(69), 2, sym_self, sym_null, - ACTIONS(63), 4, + ACTIONS(61), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_TILDE, - STATE(103), 4, + STATE(114), 4, sym__expression, sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 9, + STATE(65), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -6697,43 +6683,42 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [1877] = 14, - ACTIONS(39), 1, + [1852] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, anon_sym_LPAREN, - ACTIONS(45), 1, + ACTIONS(43), 1, anon_sym_DQUOTE, - ACTIONS(65), 1, + ACTIONS(63), 1, anon_sym_initOf, - ACTIONS(73), 1, + ACTIONS(71), 1, sym_integer, - ACTIONS(266), 1, + ACTIONS(268), 1, sym_identifier, - ACTIONS(307), 1, + ACTIONS(305), 1, anon_sym_RPAREN, - STATE(65), 1, + STATE(83), 1, sym_value_expression, - STATE(364), 1, + STATE(345), 1, sym_argument, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(69), 2, + ACTIONS(67), 2, anon_sym_true, anon_sym_false, - ACTIONS(71), 2, + ACTIONS(69), 2, sym_self, sym_null, - ACTIONS(63), 4, + ACTIONS(61), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_TILDE, - STATE(103), 4, + STATE(114), 4, sym__expression, sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 9, + STATE(65), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -6743,41 +6728,40 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [1937] = 13, - ACTIONS(39), 1, + [1911] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, anon_sym_LPAREN, - ACTIONS(45), 1, + ACTIONS(43), 1, anon_sym_DQUOTE, - ACTIONS(65), 1, + ACTIONS(63), 1, anon_sym_initOf, - ACTIONS(73), 1, + ACTIONS(71), 1, sym_integer, - ACTIONS(266), 1, + ACTIONS(268), 1, sym_identifier, - STATE(65), 1, + STATE(83), 1, sym_value_expression, - STATE(364), 1, + STATE(345), 1, sym_argument, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(69), 2, + ACTIONS(67), 2, anon_sym_true, anon_sym_false, - ACTIONS(71), 2, + ACTIONS(69), 2, sym_self, sym_null, - ACTIONS(63), 4, + ACTIONS(61), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_TILDE, - STATE(103), 4, + STATE(114), 4, sym__expression, sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 9, + STATE(65), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -6787,39 +6771,80 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [1994] = 12, - ACTIONS(39), 1, + [1967] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(307), 1, + anon_sym_LT_LBRACE, + ACTIONS(311), 1, + anon_sym_RBRACE_GT, + ACTIONS(321), 1, + sym_asm_integer, + ACTIONS(323), 1, + sym_tvm_instruction, + STATE(499), 1, + sym_asm_argument_list, + ACTIONS(317), 2, + aux_sym_asm_boc_hex_token1, + aux_sym_asm_boc_hex_token2, + ACTIONS(319), 2, + aux_sym_asm_stack_register_token1, + aux_sym_asm_stack_register_token2, + STATE(46), 2, + sym_asm_expression, + aux_sym_asm_function_body_repeat1, + ACTIONS(309), 3, + anon_sym_RBRACE_GTc, + anon_sym_RBRACE_GTs, + anon_sym_RBRACE_GTCONT, + ACTIONS(315), 3, + sym_asm_hex_bitstring, + sym_asm_bin_bitstring, + sym_asm_control_register, + ACTIONS(313), 4, + anon_sym_abort_DQUOTE, + anon_sym_DOT_DQUOTE, + anon_sym_PLUS_DQUOTE, + anon_sym_DQUOTE, + STATE(134), 6, + sym__asm_primitive, + sym_asm_sequence, + sym_asm_string, + sym_asm_boc_hex, + sym_asm_stack_register, + aux_sym_asm_argument_list_repeat1, + [2022] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, anon_sym_LPAREN, - ACTIONS(45), 1, + ACTIONS(43), 1, anon_sym_DQUOTE, - ACTIONS(65), 1, + ACTIONS(63), 1, anon_sym_initOf, - ACTIONS(73), 1, + ACTIONS(71), 1, sym_integer, - ACTIONS(266), 1, + ACTIONS(268), 1, sym_identifier, - STATE(65), 1, + STATE(83), 1, sym_value_expression, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(69), 2, + ACTIONS(67), 2, anon_sym_true, anon_sym_false, - ACTIONS(71), 2, + ACTIONS(69), 2, sym_self, sym_null, - ACTIONS(63), 4, + ACTIONS(61), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_TILDE, - STATE(107), 4, + STATE(88), 4, sym__expression, sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 9, + STATE(65), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -6829,39 +6854,38 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [2048] = 12, - ACTIONS(39), 1, + [2075] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, anon_sym_LPAREN, - ACTIONS(45), 1, + ACTIONS(43), 1, anon_sym_DQUOTE, - ACTIONS(65), 1, + ACTIONS(63), 1, anon_sym_initOf, - ACTIONS(73), 1, + ACTIONS(71), 1, sym_integer, - ACTIONS(266), 1, + ACTIONS(268), 1, sym_identifier, - STATE(65), 1, + STATE(83), 1, sym_value_expression, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(69), 2, + ACTIONS(67), 2, anon_sym_true, anon_sym_false, - ACTIONS(71), 2, + ACTIONS(69), 2, sym_self, sym_null, - ACTIONS(63), 4, + ACTIONS(61), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_TILDE, - STATE(87), 4, + STATE(85), 4, sym__expression, sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 9, + STATE(65), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -6871,39 +6895,38 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [2102] = 12, - ACTIONS(39), 1, + [2128] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, anon_sym_LPAREN, - ACTIONS(45), 1, + ACTIONS(43), 1, anon_sym_DQUOTE, - ACTIONS(65), 1, + ACTIONS(63), 1, anon_sym_initOf, - ACTIONS(73), 1, + ACTIONS(71), 1, sym_integer, - ACTIONS(266), 1, + ACTIONS(268), 1, sym_identifier, - STATE(65), 1, + STATE(83), 1, sym_value_expression, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(69), 2, + ACTIONS(67), 2, anon_sym_true, anon_sym_false, - ACTIONS(71), 2, + ACTIONS(69), 2, sym_self, sym_null, - ACTIONS(63), 4, + ACTIONS(61), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_TILDE, - STATE(123), 4, + STATE(132), 4, sym__expression, sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 9, + STATE(65), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -6913,39 +6936,38 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [2156] = 12, - ACTIONS(39), 1, + [2181] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, anon_sym_LPAREN, - ACTIONS(45), 1, + ACTIONS(43), 1, anon_sym_DQUOTE, - ACTIONS(65), 1, + ACTIONS(63), 1, anon_sym_initOf, - ACTIONS(73), 1, + ACTIONS(71), 1, sym_integer, - ACTIONS(266), 1, + ACTIONS(268), 1, sym_identifier, - STATE(65), 1, + STATE(83), 1, sym_value_expression, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(69), 2, + ACTIONS(67), 2, anon_sym_true, anon_sym_false, - ACTIONS(71), 2, + ACTIONS(69), 2, sym_self, sym_null, - ACTIONS(63), 4, + ACTIONS(61), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_TILDE, - STATE(86), 4, + STATE(124), 4, sym__expression, sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 9, + STATE(65), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -6955,39 +6977,38 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [2210] = 12, - ACTIONS(39), 1, + [2234] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, anon_sym_LPAREN, - ACTIONS(45), 1, + ACTIONS(43), 1, anon_sym_DQUOTE, - ACTIONS(65), 1, + ACTIONS(63), 1, anon_sym_initOf, - ACTIONS(73), 1, + ACTIONS(71), 1, sym_integer, - ACTIONS(266), 1, + ACTIONS(268), 1, sym_identifier, - STATE(65), 1, + STATE(83), 1, sym_value_expression, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(69), 2, + ACTIONS(67), 2, anon_sym_true, anon_sym_false, - ACTIONS(71), 2, + ACTIONS(69), 2, sym_self, sym_null, - ACTIONS(63), 4, + ACTIONS(61), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_TILDE, - STATE(116), 4, + STATE(131), 4, sym__expression, sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 9, + STATE(65), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -6997,39 +7018,38 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [2264] = 12, - ACTIONS(39), 1, + [2287] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, anon_sym_LPAREN, - ACTIONS(45), 1, + ACTIONS(43), 1, anon_sym_DQUOTE, - ACTIONS(65), 1, + ACTIONS(63), 1, anon_sym_initOf, - ACTIONS(73), 1, + ACTIONS(71), 1, sym_integer, - ACTIONS(266), 1, + ACTIONS(268), 1, sym_identifier, - STATE(65), 1, + STATE(83), 1, sym_value_expression, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(69), 2, + ACTIONS(67), 2, anon_sym_true, anon_sym_false, - ACTIONS(71), 2, + ACTIONS(69), 2, sym_self, sym_null, - ACTIONS(63), 4, + ACTIONS(61), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_TILDE, - STATE(117), 4, + STATE(125), 4, sym__expression, sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 9, + STATE(65), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -7039,39 +7059,38 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [2318] = 12, - ACTIONS(39), 1, + [2340] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, anon_sym_LPAREN, - ACTIONS(45), 1, + ACTIONS(43), 1, anon_sym_DQUOTE, - ACTIONS(65), 1, + ACTIONS(63), 1, anon_sym_initOf, - ACTIONS(73), 1, + ACTIONS(71), 1, sym_integer, - ACTIONS(266), 1, + ACTIONS(268), 1, sym_identifier, - STATE(65), 1, + STATE(83), 1, sym_value_expression, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(69), 2, + ACTIONS(67), 2, anon_sym_true, anon_sym_false, - ACTIONS(71), 2, + ACTIONS(69), 2, sym_self, sym_null, - ACTIONS(63), 4, + ACTIONS(61), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_TILDE, - STATE(120), 4, + STATE(94), 4, sym__expression, sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 9, + STATE(65), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -7081,39 +7100,38 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [2372] = 12, - ACTIONS(39), 1, + [2393] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, anon_sym_LPAREN, - ACTIONS(45), 1, + ACTIONS(43), 1, anon_sym_DQUOTE, - ACTIONS(65), 1, + ACTIONS(63), 1, anon_sym_initOf, - ACTIONS(73), 1, + ACTIONS(71), 1, sym_integer, - ACTIONS(266), 1, + ACTIONS(268), 1, sym_identifier, - STATE(65), 1, + STATE(83), 1, sym_value_expression, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(69), 2, + ACTIONS(67), 2, anon_sym_true, anon_sym_false, - ACTIONS(71), 2, + ACTIONS(69), 2, sym_self, sym_null, - ACTIONS(63), 4, + ACTIONS(61), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_TILDE, - STATE(121), 4, + STATE(123), 4, sym__expression, sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 9, + STATE(65), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -7123,39 +7141,38 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [2426] = 12, - ACTIONS(39), 1, + [2446] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, anon_sym_LPAREN, - ACTIONS(45), 1, + ACTIONS(43), 1, anon_sym_DQUOTE, - ACTIONS(65), 1, + ACTIONS(63), 1, anon_sym_initOf, - ACTIONS(73), 1, + ACTIONS(71), 1, sym_integer, - ACTIONS(266), 1, + ACTIONS(268), 1, sym_identifier, - STATE(65), 1, + STATE(83), 1, sym_value_expression, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(69), 2, + ACTIONS(67), 2, anon_sym_true, anon_sym_false, - ACTIONS(71), 2, + ACTIONS(69), 2, sym_self, sym_null, - ACTIONS(63), 4, + ACTIONS(61), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_TILDE, - STATE(122), 4, + STATE(126), 4, sym__expression, sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 9, + STATE(65), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -7165,39 +7182,38 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [2480] = 12, - ACTIONS(39), 1, + [2499] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, anon_sym_LPAREN, - ACTIONS(45), 1, + ACTIONS(43), 1, anon_sym_DQUOTE, - ACTIONS(65), 1, + ACTIONS(63), 1, anon_sym_initOf, - ACTIONS(73), 1, + ACTIONS(71), 1, sym_integer, - ACTIONS(266), 1, + ACTIONS(268), 1, sym_identifier, - STATE(65), 1, + STATE(83), 1, sym_value_expression, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(69), 2, + ACTIONS(67), 2, anon_sym_true, anon_sym_false, - ACTIONS(71), 2, + ACTIONS(69), 2, sym_self, sym_null, - ACTIONS(63), 4, + ACTIONS(61), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_TILDE, - STATE(105), 4, + STATE(122), 4, sym__expression, sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 9, + STATE(65), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -7207,39 +7223,38 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [2534] = 12, - ACTIONS(39), 1, + [2552] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, anon_sym_LPAREN, - ACTIONS(45), 1, + ACTIONS(43), 1, anon_sym_DQUOTE, - ACTIONS(65), 1, + ACTIONS(63), 1, anon_sym_initOf, - ACTIONS(73), 1, + ACTIONS(71), 1, sym_integer, - ACTIONS(266), 1, + ACTIONS(268), 1, sym_identifier, - STATE(65), 1, + STATE(83), 1, sym_value_expression, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(69), 2, + ACTIONS(67), 2, anon_sym_true, anon_sym_false, - ACTIONS(71), 2, + ACTIONS(69), 2, sym_self, sym_null, - ACTIONS(63), 4, + ACTIONS(61), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_TILDE, - STATE(106), 4, + STATE(111), 4, sym__expression, sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 9, + STATE(65), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -7249,39 +7264,38 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [2588] = 12, - ACTIONS(39), 1, + [2605] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, anon_sym_LPAREN, - ACTIONS(45), 1, + ACTIONS(43), 1, anon_sym_DQUOTE, - ACTIONS(65), 1, + ACTIONS(63), 1, anon_sym_initOf, - ACTIONS(73), 1, + ACTIONS(71), 1, sym_integer, - ACTIONS(266), 1, + ACTIONS(268), 1, sym_identifier, - STATE(65), 1, + STATE(83), 1, sym_value_expression, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(69), 2, + ACTIONS(67), 2, anon_sym_true, anon_sym_false, - ACTIONS(71), 2, + ACTIONS(69), 2, sym_self, sym_null, - ACTIONS(63), 4, + ACTIONS(61), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_TILDE, - STATE(82), 4, + STATE(112), 4, sym__expression, sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 9, + STATE(65), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -7291,39 +7305,38 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [2642] = 12, - ACTIONS(39), 1, + [2658] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, anon_sym_LPAREN, - ACTIONS(45), 1, + ACTIONS(43), 1, anon_sym_DQUOTE, - ACTIONS(65), 1, + ACTIONS(63), 1, anon_sym_initOf, - ACTIONS(73), 1, + ACTIONS(71), 1, sym_integer, - ACTIONS(266), 1, + ACTIONS(268), 1, sym_identifier, - STATE(65), 1, + STATE(83), 1, sym_value_expression, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(69), 2, + ACTIONS(67), 2, anon_sym_true, anon_sym_false, - ACTIONS(71), 2, + ACTIONS(69), 2, sym_self, sym_null, - ACTIONS(63), 4, + ACTIONS(61), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_TILDE, - STATE(118), 4, + STATE(129), 4, sym__expression, sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 9, + STATE(65), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -7333,39 +7346,38 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [2696] = 12, - ACTIONS(39), 1, + [2711] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, anon_sym_LPAREN, - ACTIONS(45), 1, + ACTIONS(43), 1, anon_sym_DQUOTE, - ACTIONS(65), 1, + ACTIONS(63), 1, anon_sym_initOf, - ACTIONS(73), 1, + ACTIONS(71), 1, sym_integer, - ACTIONS(266), 1, + ACTIONS(268), 1, sym_identifier, - STATE(65), 1, + STATE(83), 1, sym_value_expression, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(69), 2, + ACTIONS(67), 2, anon_sym_true, anon_sym_false, - ACTIONS(71), 2, + ACTIONS(69), 2, sym_self, sym_null, - ACTIONS(63), 4, + ACTIONS(61), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_TILDE, - STATE(88), 4, + STATE(113), 4, sym__expression, sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 9, + STATE(65), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -7375,39 +7387,38 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [2750] = 12, - ACTIONS(39), 1, + [2764] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, anon_sym_LPAREN, - ACTIONS(45), 1, + ACTIONS(43), 1, anon_sym_DQUOTE, - ACTIONS(65), 1, + ACTIONS(63), 1, anon_sym_initOf, - ACTIONS(73), 1, + ACTIONS(71), 1, sym_integer, - ACTIONS(266), 1, + ACTIONS(268), 1, sym_identifier, - STATE(65), 1, + STATE(83), 1, sym_value_expression, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(69), 2, + ACTIONS(67), 2, anon_sym_true, anon_sym_false, - ACTIONS(71), 2, + ACTIONS(69), 2, sym_self, sym_null, - ACTIONS(63), 4, + ACTIONS(61), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_TILDE, - STATE(83), 4, + STATE(96), 4, sym__expression, sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 9, + STATE(65), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -7417,39 +7428,38 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [2804] = 12, - ACTIONS(39), 1, + [2817] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, anon_sym_LPAREN, - ACTIONS(45), 1, + ACTIONS(43), 1, anon_sym_DQUOTE, - ACTIONS(65), 1, + ACTIONS(63), 1, anon_sym_initOf, - ACTIONS(73), 1, + ACTIONS(71), 1, sym_integer, - ACTIONS(266), 1, + ACTIONS(268), 1, sym_identifier, - STATE(65), 1, + STATE(83), 1, sym_value_expression, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(69), 2, + ACTIONS(67), 2, anon_sym_true, anon_sym_false, - ACTIONS(71), 2, + ACTIONS(69), 2, sym_self, sym_null, - ACTIONS(63), 4, + ACTIONS(61), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_TILDE, - STATE(92), 4, + STATE(127), 4, sym__expression, sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 9, + STATE(65), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -7459,39 +7469,80 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [2858] = 12, - ACTIONS(39), 1, + [2870] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(307), 1, + anon_sym_LT_LBRACE, + ACTIONS(321), 1, + sym_asm_integer, + ACTIONS(323), 1, + sym_tvm_instruction, + ACTIONS(327), 1, + anon_sym_RBRACE_GT, + STATE(499), 1, + sym_asm_argument_list, + ACTIONS(317), 2, + aux_sym_asm_boc_hex_token1, + aux_sym_asm_boc_hex_token2, + ACTIONS(319), 2, + aux_sym_asm_stack_register_token1, + aux_sym_asm_stack_register_token2, + STATE(61), 2, + sym_asm_expression, + aux_sym_asm_function_body_repeat1, + ACTIONS(315), 3, + sym_asm_hex_bitstring, + sym_asm_bin_bitstring, + sym_asm_control_register, + ACTIONS(325), 3, + anon_sym_RBRACE_GTc, + anon_sym_RBRACE_GTs, + anon_sym_RBRACE_GTCONT, + ACTIONS(313), 4, + anon_sym_abort_DQUOTE, + anon_sym_DOT_DQUOTE, + anon_sym_PLUS_DQUOTE, + anon_sym_DQUOTE, + STATE(134), 6, + sym__asm_primitive, + sym_asm_sequence, + sym_asm_string, + sym_asm_boc_hex, + sym_asm_stack_register, + aux_sym_asm_argument_list_repeat1, + [2925] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, anon_sym_LPAREN, - ACTIONS(45), 1, + ACTIONS(43), 1, anon_sym_DQUOTE, - ACTIONS(65), 1, + ACTIONS(63), 1, anon_sym_initOf, - ACTIONS(73), 1, + ACTIONS(71), 1, sym_integer, - ACTIONS(266), 1, + ACTIONS(268), 1, sym_identifier, - STATE(65), 1, + STATE(83), 1, sym_value_expression, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(69), 2, + ACTIONS(67), 2, anon_sym_true, anon_sym_false, - ACTIONS(71), 2, + ACTIONS(69), 2, sym_self, sym_null, - ACTIONS(63), 4, + ACTIONS(61), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_TILDE, - STATE(125), 4, + STATE(115), 4, sym__expression, sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 9, + STATE(65), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -7501,39 +7552,38 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [2912] = 12, - ACTIONS(39), 1, + [2978] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, anon_sym_LPAREN, - ACTIONS(45), 1, + ACTIONS(43), 1, anon_sym_DQUOTE, - ACTIONS(65), 1, + ACTIONS(63), 1, anon_sym_initOf, - ACTIONS(73), 1, + ACTIONS(71), 1, sym_integer, - ACTIONS(266), 1, + ACTIONS(268), 1, sym_identifier, - STATE(65), 1, + STATE(83), 1, sym_value_expression, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(69), 2, + ACTIONS(67), 2, anon_sym_true, anon_sym_false, - ACTIONS(71), 2, + ACTIONS(69), 2, sym_self, sym_null, - ACTIONS(63), 4, + ACTIONS(61), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_TILDE, - STATE(108), 4, + STATE(91), 4, sym__expression, sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 9, + STATE(65), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -7543,39 +7593,38 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [2966] = 12, - ACTIONS(39), 1, + [3031] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, anon_sym_LPAREN, - ACTIONS(45), 1, + ACTIONS(43), 1, anon_sym_DQUOTE, - ACTIONS(65), 1, + ACTIONS(63), 1, anon_sym_initOf, - ACTIONS(73), 1, + ACTIONS(71), 1, sym_integer, - ACTIONS(266), 1, + ACTIONS(268), 1, sym_identifier, - STATE(65), 1, + STATE(83), 1, sym_value_expression, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(69), 2, + ACTIONS(67), 2, anon_sym_true, anon_sym_false, - ACTIONS(71), 2, + ACTIONS(69), 2, sym_self, sym_null, - ACTIONS(63), 4, + ACTIONS(61), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_TILDE, - STATE(124), 4, + STATE(118), 4, sym__expression, sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 9, + STATE(65), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -7585,39 +7634,38 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [3020] = 12, - ACTIONS(39), 1, + [3084] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, anon_sym_LPAREN, - ACTIONS(45), 1, + ACTIONS(43), 1, anon_sym_DQUOTE, - ACTIONS(65), 1, + ACTIONS(63), 1, anon_sym_initOf, - ACTIONS(73), 1, + ACTIONS(71), 1, sym_integer, - ACTIONS(266), 1, + ACTIONS(268), 1, sym_identifier, - STATE(65), 1, + STATE(83), 1, sym_value_expression, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(69), 2, + ACTIONS(67), 2, anon_sym_true, anon_sym_false, - ACTIONS(71), 2, + ACTIONS(69), 2, sym_self, sym_null, - ACTIONS(63), 4, + ACTIONS(61), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_TILDE, - STATE(109), 4, + STATE(117), 4, sym__expression, sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 9, + STATE(65), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -7627,39 +7675,38 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [3074] = 12, - ACTIONS(39), 1, + [3137] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, anon_sym_LPAREN, - ACTIONS(45), 1, + ACTIONS(43), 1, anon_sym_DQUOTE, - ACTIONS(65), 1, + ACTIONS(63), 1, anon_sym_initOf, - ACTIONS(73), 1, + ACTIONS(71), 1, sym_integer, - ACTIONS(266), 1, + ACTIONS(268), 1, sym_identifier, - STATE(65), 1, + STATE(83), 1, sym_value_expression, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(69), 2, + ACTIONS(67), 2, anon_sym_true, anon_sym_false, - ACTIONS(71), 2, + ACTIONS(69), 2, sym_self, sym_null, - ACTIONS(63), 4, + ACTIONS(61), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_TILDE, - STATE(114), 4, + STATE(130), 4, sym__expression, sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 9, + STATE(65), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -7669,39 +7716,38 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [3128] = 12, - ACTIONS(39), 1, + [3190] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, anon_sym_LPAREN, - ACTIONS(45), 1, + ACTIONS(43), 1, anon_sym_DQUOTE, - ACTIONS(65), 1, + ACTIONS(63), 1, anon_sym_initOf, - ACTIONS(73), 1, + ACTIONS(71), 1, sym_integer, - ACTIONS(266), 1, + ACTIONS(268), 1, sym_identifier, - STATE(65), 1, + STATE(83), 1, sym_value_expression, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(69), 2, + ACTIONS(67), 2, anon_sym_true, anon_sym_false, - ACTIONS(71), 2, + ACTIONS(69), 2, sym_self, sym_null, - ACTIONS(63), 4, + ACTIONS(61), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_TILDE, - STATE(126), 4, + STATE(95), 4, sym__expression, sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 9, + STATE(65), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -7711,39 +7757,38 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [3182] = 12, - ACTIONS(39), 1, + [3243] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, anon_sym_LPAREN, - ACTIONS(45), 1, + ACTIONS(43), 1, anon_sym_DQUOTE, - ACTIONS(65), 1, + ACTIONS(63), 1, anon_sym_initOf, - ACTIONS(73), 1, + ACTIONS(71), 1, sym_integer, - ACTIONS(266), 1, + ACTIONS(268), 1, sym_identifier, - STATE(65), 1, + STATE(83), 1, sym_value_expression, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(69), 2, + ACTIONS(67), 2, anon_sym_true, anon_sym_false, - ACTIONS(71), 2, + ACTIONS(69), 2, sym_self, sym_null, - ACTIONS(63), 4, + ACTIONS(61), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_TILDE, - STATE(81), 4, + STATE(116), 4, sym__expression, sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 9, + STATE(65), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -7753,39 +7798,38 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [3236] = 12, - ACTIONS(39), 1, + [3296] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, anon_sym_LPAREN, - ACTIONS(45), 1, + ACTIONS(43), 1, anon_sym_DQUOTE, - ACTIONS(65), 1, + ACTIONS(63), 1, anon_sym_initOf, - ACTIONS(73), 1, + ACTIONS(71), 1, sym_integer, - ACTIONS(266), 1, + ACTIONS(268), 1, sym_identifier, - STATE(65), 1, + STATE(83), 1, sym_value_expression, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(69), 2, + ACTIONS(67), 2, anon_sym_true, anon_sym_false, - ACTIONS(71), 2, + ACTIONS(69), 2, sym_self, sym_null, - ACTIONS(63), 4, + ACTIONS(61), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_TILDE, - STATE(111), 4, + STATE(121), 4, sym__expression, sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 9, + STATE(65), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -7795,39 +7839,38 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [3290] = 12, - ACTIONS(39), 1, + [3349] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, anon_sym_LPAREN, - ACTIONS(45), 1, + ACTIONS(43), 1, anon_sym_DQUOTE, - ACTIONS(65), 1, + ACTIONS(63), 1, anon_sym_initOf, - ACTIONS(73), 1, + ACTIONS(71), 1, sym_integer, - ACTIONS(266), 1, + ACTIONS(268), 1, sym_identifier, - STATE(65), 1, + STATE(83), 1, sym_value_expression, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(69), 2, + ACTIONS(67), 2, anon_sym_true, anon_sym_false, - ACTIONS(71), 2, + ACTIONS(69), 2, sym_self, sym_null, - ACTIONS(63), 4, + ACTIONS(61), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_TILDE, - STATE(112), 4, + STATE(90), 4, sym__expression, sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 9, + STATE(65), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -7837,39 +7880,38 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [3344] = 12, - ACTIONS(39), 1, + [3402] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, anon_sym_LPAREN, - ACTIONS(45), 1, + ACTIONS(43), 1, anon_sym_DQUOTE, - ACTIONS(65), 1, + ACTIONS(63), 1, anon_sym_initOf, - ACTIONS(73), 1, + ACTIONS(71), 1, sym_integer, - ACTIONS(266), 1, + ACTIONS(268), 1, sym_identifier, - STATE(65), 1, + STATE(83), 1, sym_value_expression, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(69), 2, + ACTIONS(67), 2, anon_sym_true, anon_sym_false, - ACTIONS(71), 2, + ACTIONS(69), 2, sym_self, sym_null, - ACTIONS(63), 4, + ACTIONS(61), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_TILDE, - STATE(113), 4, + STATE(119), 4, sym__expression, sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 9, + STATE(65), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -7879,39 +7921,38 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [3398] = 12, - ACTIONS(39), 1, + [3455] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, anon_sym_LPAREN, - ACTIONS(45), 1, + ACTIONS(43), 1, anon_sym_DQUOTE, - ACTIONS(65), 1, + ACTIONS(63), 1, anon_sym_initOf, - ACTIONS(73), 1, + ACTIONS(71), 1, sym_integer, - ACTIONS(266), 1, + ACTIONS(268), 1, sym_identifier, - STATE(65), 1, + STATE(83), 1, sym_value_expression, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(69), 2, + ACTIONS(67), 2, anon_sym_true, anon_sym_false, - ACTIONS(71), 2, + ACTIONS(69), 2, sym_self, sym_null, - ACTIONS(63), 4, + ACTIONS(61), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_TILDE, - STATE(115), 4, + STATE(120), 4, sym__expression, sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 9, + STATE(65), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -7921,39 +7962,38 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [3452] = 12, - ACTIONS(39), 1, + [3508] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, anon_sym_LPAREN, - ACTIONS(45), 1, + ACTIONS(43), 1, anon_sym_DQUOTE, - ACTIONS(65), 1, + ACTIONS(63), 1, anon_sym_initOf, - ACTIONS(73), 1, + ACTIONS(71), 1, sym_integer, - ACTIONS(266), 1, + ACTIONS(268), 1, sym_identifier, - STATE(65), 1, + STATE(83), 1, sym_value_expression, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(69), 2, + ACTIONS(67), 2, anon_sym_true, anon_sym_false, - ACTIONS(71), 2, + ACTIONS(69), 2, sym_self, sym_null, - ACTIONS(63), 4, + ACTIONS(61), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_TILDE, - STATE(127), 4, + STATE(133), 4, sym__expression, sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 9, + STATE(65), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -7963,39 +8003,38 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [3506] = 12, - ACTIONS(39), 1, + [3561] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, anon_sym_LPAREN, - ACTIONS(45), 1, + ACTIONS(43), 1, anon_sym_DQUOTE, - ACTIONS(65), 1, + ACTIONS(63), 1, anon_sym_initOf, - ACTIONS(73), 1, + ACTIONS(71), 1, sym_integer, - ACTIONS(266), 1, + ACTIONS(268), 1, sym_identifier, - STATE(65), 1, + STATE(83), 1, sym_value_expression, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(69), 2, + ACTIONS(67), 2, anon_sym_true, anon_sym_false, - ACTIONS(71), 2, + ACTIONS(69), 2, sym_self, sym_null, - ACTIONS(63), 4, + ACTIONS(61), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_TILDE, - STATE(84), 4, + STATE(93), 4, sym__expression, sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 9, + STATE(65), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -8005,39 +8044,38 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [3560] = 12, - ACTIONS(39), 1, + [3614] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, anon_sym_LPAREN, - ACTIONS(45), 1, + ACTIONS(43), 1, anon_sym_DQUOTE, - ACTIONS(65), 1, + ACTIONS(63), 1, anon_sym_initOf, - ACTIONS(73), 1, + ACTIONS(71), 1, sym_integer, - ACTIONS(266), 1, + ACTIONS(268), 1, sym_identifier, - STATE(65), 1, + STATE(83), 1, sym_value_expression, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(69), 2, + ACTIONS(67), 2, anon_sym_true, anon_sym_false, - ACTIONS(71), 2, + ACTIONS(69), 2, sym_self, sym_null, - ACTIONS(63), 4, + ACTIONS(61), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_TILDE, - STATE(85), 4, + STATE(97), 4, sym__expression, sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 9, + STATE(65), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -8047,39 +8085,80 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [3614] = 12, - ACTIONS(39), 1, + [3667] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(329), 1, + anon_sym_LT_LBRACE, + ACTIONS(334), 1, + anon_sym_RBRACE_GT, + ACTIONS(348), 1, + sym_asm_integer, + ACTIONS(351), 1, + sym_tvm_instruction, + STATE(499), 1, + sym_asm_argument_list, + ACTIONS(342), 2, + aux_sym_asm_boc_hex_token1, + aux_sym_asm_boc_hex_token2, + ACTIONS(345), 2, + aux_sym_asm_stack_register_token1, + aux_sym_asm_stack_register_token2, + STATE(61), 2, + sym_asm_expression, + aux_sym_asm_function_body_repeat1, + ACTIONS(332), 3, + anon_sym_RBRACE_GTc, + anon_sym_RBRACE_GTs, + anon_sym_RBRACE_GTCONT, + ACTIONS(339), 3, + sym_asm_hex_bitstring, + sym_asm_bin_bitstring, + sym_asm_control_register, + ACTIONS(336), 4, + anon_sym_abort_DQUOTE, + anon_sym_DOT_DQUOTE, + anon_sym_PLUS_DQUOTE, + anon_sym_DQUOTE, + STATE(134), 6, + sym__asm_primitive, + sym_asm_sequence, + sym_asm_string, + sym_asm_boc_hex, + sym_asm_stack_register, + aux_sym_asm_argument_list_repeat1, + [3722] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, anon_sym_LPAREN, - ACTIONS(45), 1, + ACTIONS(43), 1, anon_sym_DQUOTE, - ACTIONS(65), 1, + ACTIONS(63), 1, anon_sym_initOf, - ACTIONS(73), 1, + ACTIONS(71), 1, sym_integer, - ACTIONS(266), 1, + ACTIONS(268), 1, sym_identifier, - STATE(65), 1, + STATE(83), 1, sym_value_expression, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(69), 2, + ACTIONS(67), 2, anon_sym_true, anon_sym_false, - ACTIONS(71), 2, + ACTIONS(69), 2, sym_self, sym_null, - ACTIONS(63), 4, + ACTIONS(61), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_TILDE, - STATE(93), 4, + STATE(86), 4, sym__expression, sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 9, + STATE(65), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -8089,39 +8168,38 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [3668] = 12, - ACTIONS(39), 1, + [3775] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, anon_sym_LPAREN, - ACTIONS(45), 1, + ACTIONS(43), 1, anon_sym_DQUOTE, - ACTIONS(65), 1, + ACTIONS(63), 1, anon_sym_initOf, - ACTIONS(73), 1, + ACTIONS(71), 1, sym_integer, - ACTIONS(266), 1, + ACTIONS(268), 1, sym_identifier, - STATE(65), 1, + STATE(83), 1, sym_value_expression, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(69), 2, + ACTIONS(67), 2, anon_sym_true, anon_sym_false, - ACTIONS(71), 2, + ACTIONS(69), 2, sym_self, sym_null, - ACTIONS(63), 4, + ACTIONS(61), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_TILDE, - STATE(91), 4, + STATE(87), 4, sym__expression, sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 9, + STATE(65), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -8131,39 +8209,38 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [3722] = 12, - ACTIONS(39), 1, + [3828] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, anon_sym_LPAREN, - ACTIONS(45), 1, + ACTIONS(43), 1, anon_sym_DQUOTE, - ACTIONS(65), 1, + ACTIONS(63), 1, anon_sym_initOf, - ACTIONS(73), 1, + ACTIONS(71), 1, sym_integer, - ACTIONS(266), 1, + ACTIONS(268), 1, sym_identifier, - STATE(65), 1, + STATE(83), 1, sym_value_expression, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(69), 2, + ACTIONS(67), 2, anon_sym_true, anon_sym_false, - ACTIONS(71), 2, + ACTIONS(69), 2, sym_self, sym_null, - ACTIONS(63), 4, + ACTIONS(61), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_TILDE, - STATE(90), 4, + STATE(89), 4, sym__expression, sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 9, + STATE(65), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -8173,17 +8250,16 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [3776] = 3, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [3881] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(311), 5, + ACTIONS(149), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, anon_sym_SLASH, - ACTIONS(309), 21, + ACTIONS(141), 21, anon_sym_SEMI, anon_sym_COLON, anon_sym_RPAREN, @@ -8205,17 +8281,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG_BANG, anon_sym_DOT, - [3811] = 3, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [3915] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(151), 5, + ACTIONS(356), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, anon_sym_SLASH, - ACTIONS(143), 21, + ACTIONS(354), 21, anon_sym_SEMI, anon_sym_COLON, anon_sym_RPAREN, @@ -8237,17 +8312,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG_BANG, anon_sym_DOT, - [3846] = 3, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [3949] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(315), 5, + ACTIONS(360), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, anon_sym_SLASH, - ACTIONS(313), 21, + ACTIONS(358), 21, anon_sym_SEMI, anon_sym_COLON, anon_sym_RPAREN, @@ -8269,19 +8343,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG_BANG, anon_sym_DOT, - [3881] = 4, - ACTIONS(321), 1, - anon_sym_DOT, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [3983] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(319), 5, + ACTIONS(364), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, anon_sym_SLASH, - ACTIONS(317), 20, + ACTIONS(362), 21, anon_sym_SEMI, anon_sym_COLON, anon_sym_RPAREN, @@ -8302,17 +8373,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PERCENT, anon_sym_BANG_BANG, - [3918] = 3, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + anon_sym_DOT, + [4017] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(325), 5, + ACTIONS(368), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, anon_sym_SLASH, - ACTIONS(323), 21, + ACTIONS(366), 21, anon_sym_SEMI, anon_sym_COLON, anon_sym_RPAREN, @@ -8334,17 +8405,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG_BANG, anon_sym_DOT, - [3953] = 3, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [4051] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(329), 5, + ACTIONS(372), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, anon_sym_SLASH, - ACTIONS(327), 21, + ACTIONS(370), 21, anon_sym_SEMI, anon_sym_COLON, anon_sym_RPAREN, @@ -8366,17 +8436,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG_BANG, anon_sym_DOT, - [3988] = 3, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [4085] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(333), 5, + ACTIONS(376), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, anon_sym_SLASH, - ACTIONS(331), 21, + ACTIONS(374), 21, anon_sym_SEMI, anon_sym_COLON, anon_sym_RPAREN, @@ -8398,17 +8467,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG_BANG, anon_sym_DOT, - [4023] = 3, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [4119] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(337), 5, + ACTIONS(380), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, anon_sym_SLASH, - ACTIONS(335), 21, + ACTIONS(378), 21, anon_sym_SEMI, anon_sym_COLON, anon_sym_RPAREN, @@ -8430,17 +8498,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG_BANG, anon_sym_DOT, - [4058] = 3, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [4153] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(341), 5, + ACTIONS(384), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, anon_sym_SLASH, - ACTIONS(339), 21, + ACTIONS(382), 21, anon_sym_SEMI, anon_sym_COLON, anon_sym_RPAREN, @@ -8462,17 +8529,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG_BANG, anon_sym_DOT, - [4093] = 3, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [4187] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(345), 5, + ACTIONS(388), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, anon_sym_SLASH, - ACTIONS(343), 21, + ACTIONS(386), 21, anon_sym_SEMI, anon_sym_COLON, anon_sym_RPAREN, @@ -8494,17 +8560,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG_BANG, anon_sym_DOT, - [4128] = 3, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [4221] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(349), 5, + ACTIONS(392), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, anon_sym_SLASH, - ACTIONS(347), 21, + ACTIONS(390), 21, anon_sym_SEMI, anon_sym_COLON, anon_sym_RPAREN, @@ -8526,17 +8591,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG_BANG, anon_sym_DOT, - [4163] = 3, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [4255] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(353), 5, + ACTIONS(396), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, anon_sym_SLASH, - ACTIONS(351), 21, + ACTIONS(394), 21, anon_sym_SEMI, anon_sym_COLON, anon_sym_RPAREN, @@ -8558,17 +8622,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG_BANG, anon_sym_DOT, - [4198] = 3, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [4289] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(357), 5, + ACTIONS(400), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, anon_sym_SLASH, - ACTIONS(355), 21, + ACTIONS(398), 21, anon_sym_SEMI, anon_sym_COLON, anon_sym_RPAREN, @@ -8590,17 +8653,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG_BANG, anon_sym_DOT, - [4233] = 3, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [4323] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(361), 5, + ACTIONS(404), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, anon_sym_SLASH, - ACTIONS(359), 21, + ACTIONS(402), 21, anon_sym_SEMI, anon_sym_COLON, anon_sym_RPAREN, @@ -8622,17 +8684,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG_BANG, anon_sym_DOT, - [4268] = 3, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [4357] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(365), 5, + ACTIONS(408), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, anon_sym_SLASH, - ACTIONS(363), 21, + ACTIONS(406), 21, anon_sym_SEMI, anon_sym_COLON, anon_sym_RPAREN, @@ -8654,17 +8715,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG_BANG, anon_sym_DOT, - [4303] = 3, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [4391] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(369), 5, + ACTIONS(412), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, anon_sym_SLASH, - ACTIONS(367), 21, + ACTIONS(410), 21, anon_sym_SEMI, anon_sym_COLON, anon_sym_RPAREN, @@ -8686,17 +8746,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG_BANG, anon_sym_DOT, - [4338] = 3, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [4425] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(373), 5, + ACTIONS(416), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, anon_sym_SLASH, - ACTIONS(371), 21, + ACTIONS(414), 21, anon_sym_SEMI, anon_sym_COLON, anon_sym_RPAREN, @@ -8718,17 +8777,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG_BANG, anon_sym_DOT, - [4373] = 3, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [4459] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(377), 5, + ACTIONS(420), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, anon_sym_SLASH, - ACTIONS(375), 21, + ACTIONS(418), 21, anon_sym_SEMI, anon_sym_COLON, anon_sym_RPAREN, @@ -8750,17 +8808,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG_BANG, anon_sym_DOT, - [4408] = 3, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [4493] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(381), 5, + ACTIONS(426), 1, + anon_sym_DOT, + ACTIONS(424), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, anon_sym_SLASH, - ACTIONS(379), 21, + ACTIONS(422), 20, anon_sym_SEMI, anon_sym_COLON, anon_sym_RPAREN, @@ -8781,20 +8840,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PERCENT, anon_sym_BANG_BANG, - anon_sym_DOT, - [4443] = 4, - ACTIONS(387), 1, - anon_sym_BANG_BANG, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [4529] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(432), 1, + anon_sym_catch, + STATE(102), 1, + sym_catch_clause, + ACTIONS(430), 9, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_TILDE, + sym_integer, + ACTIONS(428), 14, + anon_sym_let, + anon_sym_return, + anon_sym_if, + anon_sym_while, + anon_sym_repeat, + anon_sym_do, + anon_sym_try, + anon_sym_foreach, + anon_sym_initOf, + sym_identifier, + sym_self, + anon_sym_true, + anon_sym_false, + sym_null, + [4566] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(385), 5, + ACTIONS(438), 1, + anon_sym_BANG_BANG, + ACTIONS(436), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, anon_sym_SLASH, - ACTIONS(383), 19, + ACTIONS(434), 19, anon_sym_SEMI, anon_sym_COLON, anon_sym_RPAREN, @@ -8814,81 +8903,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, - [4479] = 14, - ACTIONS(387), 1, - anon_sym_BANG_BANG, - ACTIONS(391), 1, - anon_sym_AMP_AMP, - ACTIONS(393), 1, - anon_sym_PIPE, - ACTIONS(395), 1, - anon_sym_CARET, - ACTIONS(397), 1, - anon_sym_AMP, - ACTIONS(411), 1, - anon_sym_SLASH, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [4601] = 10, + ACTIONS(3), 1, sym_comment, - ACTIONS(399), 2, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - ACTIONS(401), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(403), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(405), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(407), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(409), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(389), 7, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, - [4535] = 13, - ACTIONS(387), 1, + ACTIONS(438), 1, anon_sym_BANG_BANG, - ACTIONS(393), 1, + ACTIONS(450), 1, + anon_sym_SLASH, + ACTIONS(436), 2, anon_sym_PIPE, - ACTIONS(395), 1, - anon_sym_CARET, - ACTIONS(397), 1, anon_sym_AMP, - ACTIONS(411), 1, - anon_sym_SLASH, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(399), 2, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - ACTIONS(401), 2, + ACTIONS(440), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(403), 2, + ACTIONS(442), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(405), 2, + ACTIONS(444), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(407), 2, + ACTIONS(446), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(409), 2, + ACTIONS(448), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(389), 8, + ACTIONS(434), 11, anon_sym_SEMI, anon_sym_COLON, anon_sym_RPAREN, @@ -8897,100 +8937,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - [4589] = 13, - ACTIONS(387), 1, - anon_sym_BANG_BANG, - ACTIONS(395), 1, anon_sym_CARET, - ACTIONS(397), 1, - anon_sym_AMP, - ACTIONS(411), 1, - anon_sym_SLASH, - ACTIONS(413), 1, - anon_sym_PIPE, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(399), 2, anon_sym_BANG_EQ, anon_sym_EQ_EQ, - ACTIONS(401), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(403), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(405), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(407), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(409), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(389), 8, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [4643] = 12, - ACTIONS(387), 1, + [4648] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(438), 1, anon_sym_BANG_BANG, - ACTIONS(397), 1, - anon_sym_AMP, - ACTIONS(411), 1, + ACTIONS(450), 1, anon_sym_SLASH, - ACTIONS(413), 1, - anon_sym_PIPE, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(399), 2, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - ACTIONS(401), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(403), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(405), 2, + ACTIONS(444), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(407), 2, + ACTIONS(446), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(409), 2, + ACTIONS(448), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(389), 9, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [4695] = 4, - ACTIONS(387), 1, - anon_sym_BANG_BANG, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(413), 5, + ACTIONS(436), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - anon_sym_SLASH, - ACTIONS(389), 19, + ACTIONS(434), 13, anon_sym_SEMI, anon_sym_COLON, anon_sym_RPAREN, @@ -9004,29 +8975,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - [4731] = 6, - ACTIONS(387), 1, + [4691] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(438), 1, anon_sym_BANG_BANG, - ACTIONS(411), 1, + ACTIONS(450), 1, anon_sym_SLASH, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(409), 2, + ACTIONS(448), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(413), 4, + ACTIONS(436), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(389), 17, + ACTIONS(434), 17, anon_sym_SEMI, anon_sym_COLON, anon_sym_RPAREN, @@ -9044,26 +9008,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_PLUS, anon_sym_DASH, - [4771] = 7, - ACTIONS(387), 1, + [4730] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(438), 1, anon_sym_BANG_BANG, - ACTIONS(411), 1, + ACTIONS(450), 1, anon_sym_SLASH, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(407), 2, + ACTIONS(446), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(409), 2, + ACTIONS(448), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(413), 4, + ACTIONS(436), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(389), 15, + ACTIONS(434), 15, anon_sym_SEMI, anon_sym_COLON, anon_sym_RPAREN, @@ -9079,25 +9042,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_GT, anon_sym_LT_LT, - [4813] = 5, - ACTIONS(419), 1, - anon_sym_catch, - STATE(98), 1, - sym_catch_clause, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [4771] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(417), 9, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(436), 1, + anon_sym_PIPE, + ACTIONS(438), 1, + anon_sym_BANG_BANG, + ACTIONS(450), 1, + anon_sym_SLASH, + ACTIONS(452), 1, + anon_sym_CARET, + ACTIONS(454), 1, + anon_sym_AMP, + ACTIONS(440), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(442), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(444), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(446), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(448), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(456), 2, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + ACTIONS(434), 8, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [4824] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(438), 1, + anon_sym_BANG_BANG, + ACTIONS(450), 1, + anon_sym_SLASH, + ACTIONS(452), 1, + anon_sym_CARET, + ACTIONS(454), 1, + anon_sym_AMP, + ACTIONS(458), 1, + anon_sym_AMP_AMP, + ACTIONS(460), 1, + anon_sym_PIPE, + ACTIONS(440), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(442), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(444), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(446), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(448), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(456), 2, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + ACTIONS(434), 7, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, + [4879] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + anon_sym_else, + STATE(104), 1, + sym_else_clause, + ACTIONS(464), 9, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_BANG, anon_sym_TILDE, sym_integer, - ACTIONS(415), 14, + ACTIONS(462), 14, anon_sym_let, anon_sym_return, anon_sym_if, @@ -9112,29 +9155,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_null, - [4851] = 8, - ACTIONS(387), 1, + [4916] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(436), 1, + anon_sym_PIPE, + ACTIONS(438), 1, anon_sym_BANG_BANG, - ACTIONS(411), 1, + ACTIONS(450), 1, anon_sym_SLASH, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(405), 2, + ACTIONS(454), 1, + anon_sym_AMP, + ACTIONS(440), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(442), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(444), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(407), 2, + ACTIONS(446), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(409), 2, + ACTIONS(448), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(413), 4, + ACTIONS(456), 2, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + ACTIONS(434), 9, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [4967] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(438), 1, + anon_sym_BANG_BANG, + ACTIONS(470), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(389), 13, + anon_sym_SLASH, + ACTIONS(468), 19, anon_sym_SEMI, anon_sym_COLON, anon_sym_RPAREN, @@ -9148,33 +9219,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [4895] = 10, - ACTIONS(387), 1, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + [5002] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(438), 1, anon_sym_BANG_BANG, - ACTIONS(411), 1, + ACTIONS(450), 1, anon_sym_SLASH, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(401), 2, + ACTIONS(452), 1, + anon_sym_CARET, + ACTIONS(454), 1, + anon_sym_AMP, + ACTIONS(460), 1, + anon_sym_PIPE, + ACTIONS(440), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(403), 2, + ACTIONS(442), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(405), 2, + ACTIONS(444), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(407), 2, + ACTIONS(446), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(409), 2, + ACTIONS(448), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(413), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(389), 11, + ACTIONS(456), 2, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + ACTIONS(434), 8, anon_sym_SEMI, anon_sym_COLON, anon_sym_RPAREN, @@ -9183,83 +9265,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - [4943] = 16, - ACTIONS(387), 1, + [5055] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(438), 1, anon_sym_BANG_BANG, - ACTIONS(391), 1, - anon_sym_AMP_AMP, - ACTIONS(393), 1, - anon_sym_PIPE, - ACTIONS(395), 1, + ACTIONS(450), 1, + anon_sym_SLASH, + ACTIONS(452), 1, anon_sym_CARET, - ACTIONS(397), 1, + ACTIONS(454), 1, anon_sym_AMP, - ACTIONS(411), 1, - anon_sym_SLASH, - ACTIONS(423), 1, + ACTIONS(458), 1, + anon_sym_AMP_AMP, + ACTIONS(460), 1, + anon_sym_PIPE, + ACTIONS(474), 1, anon_sym_QMARK, - ACTIONS(425), 1, + ACTIONS(476), 1, anon_sym_PIPE_PIPE, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(399), 2, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - ACTIONS(401), 2, + ACTIONS(440), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(403), 2, + ACTIONS(442), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(405), 2, + ACTIONS(444), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(407), 2, + ACTIONS(446), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(409), 2, + ACTIONS(448), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(421), 5, + ACTIONS(456), 2, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + ACTIONS(472), 5, anon_sym_SEMI, anon_sym_COLON, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - [5003] = 11, - ACTIONS(387), 1, + [5114] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(438), 1, anon_sym_BANG_BANG, - ACTIONS(411), 1, + ACTIONS(450), 1, anon_sym_SLASH, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(399), 2, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - ACTIONS(401), 2, + ACTIONS(436), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(440), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(403), 2, + ACTIONS(442), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(405), 2, + ACTIONS(444), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(407), 2, + ACTIONS(446), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(409), 2, + ACTIONS(448), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(413), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(389), 9, + ACTIONS(456), 2, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + ACTIONS(434), 9, anon_sym_SEMI, anon_sym_COLON, anon_sym_RPAREN, @@ -9269,44 +9346,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - [5053] = 5, - ACTIONS(431), 1, - anon_sym_else, - STATE(100), 1, - sym_else_clause, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [5163] = 12, + ACTIONS(3), 1, sym_comment, - ACTIONS(429), 9, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(329), 1, + anon_sym_LT_LBRACE, + ACTIONS(332), 1, anon_sym_RBRACE, + ACTIONS(348), 1, + sym_asm_integer, + ACTIONS(478), 1, + sym_tvm_instruction, + STATE(455), 1, + sym_asm_argument_list, + ACTIONS(342), 2, + aux_sym_asm_boc_hex_token1, + aux_sym_asm_boc_hex_token2, + ACTIONS(345), 2, + aux_sym_asm_stack_register_token1, + aux_sym_asm_stack_register_token2, + STATE(98), 2, + sym_asm_expression, + aux_sym_asm_function_body_repeat1, + ACTIONS(339), 3, + sym_asm_hex_bitstring, + sym_asm_bin_bitstring, + sym_asm_control_register, + ACTIONS(336), 4, + anon_sym_abort_DQUOTE, + anon_sym_DOT_DQUOTE, + anon_sym_PLUS_DQUOTE, anon_sym_DQUOTE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_TILDE, - sym_integer, - ACTIONS(427), 14, - anon_sym_let, - anon_sym_return, - anon_sym_if, - anon_sym_while, - anon_sym_repeat, - anon_sym_do, - anon_sym_try, - anon_sym_foreach, - anon_sym_initOf, - sym_identifier, - sym_self, - anon_sym_true, - anon_sym_false, - sym_null, - [5091] = 3, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + STATE(134), 6, + sym__asm_primitive, + sym_asm_sequence, + sym_asm_string, + sym_asm_boc_hex, + sym_asm_stack_register, + aux_sym_asm_argument_list_repeat1, + [5213] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(307), 1, + anon_sym_LT_LBRACE, + ACTIONS(321), 1, + sym_asm_integer, + ACTIONS(481), 1, + anon_sym_RBRACE, + ACTIONS(483), 1, + sym_tvm_instruction, + STATE(455), 1, + sym_asm_argument_list, + ACTIONS(317), 2, + aux_sym_asm_boc_hex_token1, + aux_sym_asm_boc_hex_token2, + ACTIONS(319), 2, + aux_sym_asm_stack_register_token1, + aux_sym_asm_stack_register_token2, + STATE(100), 2, + sym_asm_expression, + aux_sym_asm_function_body_repeat1, + ACTIONS(315), 3, + sym_asm_hex_bitstring, + sym_asm_bin_bitstring, + sym_asm_control_register, + ACTIONS(313), 4, + anon_sym_abort_DQUOTE, + anon_sym_DOT_DQUOTE, + anon_sym_PLUS_DQUOTE, + anon_sym_DQUOTE, + STATE(134), 6, + sym__asm_primitive, + sym_asm_sequence, + sym_asm_string, + sym_asm_boc_hex, + sym_asm_stack_register, + aux_sym_asm_argument_list_repeat1, + [5263] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(307), 1, + anon_sym_LT_LBRACE, + ACTIONS(321), 1, + sym_asm_integer, + ACTIONS(483), 1, + sym_tvm_instruction, + ACTIONS(485), 1, + anon_sym_RBRACE, + STATE(455), 1, + sym_asm_argument_list, + ACTIONS(317), 2, + aux_sym_asm_boc_hex_token1, + aux_sym_asm_boc_hex_token2, + ACTIONS(319), 2, + aux_sym_asm_stack_register_token1, + aux_sym_asm_stack_register_token2, + STATE(98), 2, + sym_asm_expression, + aux_sym_asm_function_body_repeat1, + ACTIONS(315), 3, + sym_asm_hex_bitstring, + sym_asm_bin_bitstring, + sym_asm_control_register, + ACTIONS(313), 4, + anon_sym_abort_DQUOTE, + anon_sym_DOT_DQUOTE, + anon_sym_PLUS_DQUOTE, + anon_sym_DQUOTE, + STATE(134), 6, + sym__asm_primitive, + sym_asm_sequence, + sym_asm_string, + sym_asm_boc_hex, + sym_asm_stack_register, + aux_sym_asm_argument_list_repeat1, + [5313] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(435), 9, + ACTIONS(489), 9, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -9316,7 +9473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, sym_integer, - ACTIONS(433), 14, + ACTIONS(487), 14, anon_sym_let, anon_sym_return, anon_sym_if, @@ -9331,11 +9488,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_null, - [5123] = 3, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [5344] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(439), 9, + ACTIONS(493), 9, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -9345,7 +9501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, sym_integer, - ACTIONS(437), 14, + ACTIONS(491), 14, anon_sym_let, anon_sym_return, anon_sym_if, @@ -9360,11 +9516,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_null, - [5155] = 3, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [5375] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(443), 9, + ACTIONS(497), 9, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -9374,7 +9529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, sym_integer, - ACTIONS(441), 14, + ACTIONS(495), 14, anon_sym_let, anon_sym_return, anon_sym_if, @@ -9389,11 +9544,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_null, - [5187] = 3, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [5406] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(447), 9, + ACTIONS(501), 9, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -9403,7 +9557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, sym_integer, - ACTIONS(445), 14, + ACTIONS(499), 14, anon_sym_let, anon_sym_return, anon_sym_if, @@ -9418,11 +9572,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_null, - [5219] = 3, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [5437] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(451), 9, + ACTIONS(505), 9, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -9432,7 +9585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, sym_integer, - ACTIONS(449), 14, + ACTIONS(503), 14, anon_sym_let, anon_sym_return, anon_sym_if, @@ -9447,11 +9600,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_null, - [5251] = 3, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [5468] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(455), 9, + ACTIONS(509), 9, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -9461,7 +9613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, sym_integer, - ACTIONS(453), 14, + ACTIONS(507), 14, anon_sym_let, anon_sym_return, anon_sym_if, @@ -9476,11 +9628,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_null, - [5283] = 3, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [5499] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(459), 9, + ACTIONS(513), 9, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -9490,7 +9641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, sym_integer, - ACTIONS(457), 14, + ACTIONS(511), 14, anon_sym_let, anon_sym_return, anon_sym_if, @@ -9505,11 +9656,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_null, - [5315] = 3, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [5530] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(463), 9, + ACTIONS(517), 9, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -9519,7 +9669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, sym_integer, - ACTIONS(461), 14, + ACTIONS(515), 14, anon_sym_let, anon_sym_return, anon_sym_if, @@ -9534,669 +9684,769 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_null, - [5347] = 16, - ACTIONS(387), 1, + [5561] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(438), 1, anon_sym_BANG_BANG, - ACTIONS(391), 1, - anon_sym_AMP_AMP, - ACTIONS(393), 1, - anon_sym_PIPE, - ACTIONS(395), 1, + ACTIONS(450), 1, + anon_sym_SLASH, + ACTIONS(452), 1, anon_sym_CARET, - ACTIONS(397), 1, + ACTIONS(454), 1, anon_sym_AMP, - ACTIONS(411), 1, - anon_sym_SLASH, - ACTIONS(423), 1, + ACTIONS(458), 1, + anon_sym_AMP_AMP, + ACTIONS(460), 1, + anon_sym_PIPE, + ACTIONS(474), 1, anon_sym_QMARK, - ACTIONS(425), 1, + ACTIONS(476), 1, anon_sym_PIPE_PIPE, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(399), 2, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - ACTIONS(401), 2, + ACTIONS(440), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(403), 2, + ACTIONS(442), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(405), 2, + ACTIONS(444), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(407), 2, + ACTIONS(446), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(409), 2, + ACTIONS(448), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(465), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [5404] = 16, - ACTIONS(387), 1, + ACTIONS(456), 2, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + ACTIONS(519), 2, + anon_sym_SEMI, + anon_sym_RBRACE, + [5617] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(438), 1, anon_sym_BANG_BANG, - ACTIONS(391), 1, - anon_sym_AMP_AMP, - ACTIONS(393), 1, - anon_sym_PIPE, - ACTIONS(395), 1, + ACTIONS(450), 1, + anon_sym_SLASH, + ACTIONS(452), 1, anon_sym_CARET, - ACTIONS(397), 1, + ACTIONS(454), 1, anon_sym_AMP, - ACTIONS(411), 1, - anon_sym_SLASH, - ACTIONS(423), 1, + ACTIONS(458), 1, + anon_sym_AMP_AMP, + ACTIONS(460), 1, + anon_sym_PIPE, + ACTIONS(474), 1, anon_sym_QMARK, - ACTIONS(425), 1, + ACTIONS(476), 1, anon_sym_PIPE_PIPE, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(399), 2, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - ACTIONS(401), 2, + ACTIONS(440), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(403), 2, + ACTIONS(442), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(405), 2, + ACTIONS(444), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(407), 2, + ACTIONS(446), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(409), 2, + ACTIONS(448), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(467), 2, + ACTIONS(456), 2, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + ACTIONS(521), 2, anon_sym_SEMI, anon_sym_RBRACE, - [5461] = 16, - ACTIONS(387), 1, + [5673] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(438), 1, anon_sym_BANG_BANG, - ACTIONS(391), 1, - anon_sym_AMP_AMP, - ACTIONS(393), 1, - anon_sym_PIPE, - ACTIONS(395), 1, + ACTIONS(450), 1, + anon_sym_SLASH, + ACTIONS(452), 1, anon_sym_CARET, - ACTIONS(397), 1, + ACTIONS(454), 1, anon_sym_AMP, - ACTIONS(411), 1, - anon_sym_SLASH, - ACTIONS(423), 1, + ACTIONS(458), 1, + anon_sym_AMP_AMP, + ACTIONS(460), 1, + anon_sym_PIPE, + ACTIONS(474), 1, anon_sym_QMARK, - ACTIONS(425), 1, + ACTIONS(476), 1, anon_sym_PIPE_PIPE, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(399), 2, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - ACTIONS(401), 2, + ACTIONS(440), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(403), 2, + ACTIONS(442), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(405), 2, + ACTIONS(444), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(407), 2, + ACTIONS(446), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(409), 2, + ACTIONS(448), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(469), 2, + ACTIONS(456), 2, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + ACTIONS(523), 2, anon_sym_SEMI, anon_sym_RBRACE, - [5518] = 16, - ACTIONS(387), 1, + [5729] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(438), 1, anon_sym_BANG_BANG, - ACTIONS(391), 1, - anon_sym_AMP_AMP, - ACTIONS(393), 1, - anon_sym_PIPE, - ACTIONS(395), 1, + ACTIONS(450), 1, + anon_sym_SLASH, + ACTIONS(452), 1, anon_sym_CARET, - ACTIONS(397), 1, + ACTIONS(454), 1, anon_sym_AMP, - ACTIONS(411), 1, - anon_sym_SLASH, - ACTIONS(423), 1, + ACTIONS(458), 1, + anon_sym_AMP_AMP, + ACTIONS(460), 1, + anon_sym_PIPE, + ACTIONS(474), 1, anon_sym_QMARK, - ACTIONS(425), 1, + ACTIONS(476), 1, anon_sym_PIPE_PIPE, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(399), 2, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - ACTIONS(401), 2, + ACTIONS(440), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(403), 2, + ACTIONS(442), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(405), 2, + ACTIONS(444), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(407), 2, + ACTIONS(446), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(409), 2, + ACTIONS(448), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(471), 2, + ACTIONS(456), 2, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + ACTIONS(525), 2, anon_sym_SEMI, anon_sym_RBRACE, - [5575] = 16, - ACTIONS(387), 1, + [5785] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(438), 1, anon_sym_BANG_BANG, - ACTIONS(391), 1, - anon_sym_AMP_AMP, - ACTIONS(393), 1, - anon_sym_PIPE, - ACTIONS(395), 1, + ACTIONS(450), 1, + anon_sym_SLASH, + ACTIONS(452), 1, anon_sym_CARET, - ACTIONS(397), 1, + ACTIONS(454), 1, anon_sym_AMP, - ACTIONS(411), 1, - anon_sym_SLASH, - ACTIONS(423), 1, + ACTIONS(458), 1, + anon_sym_AMP_AMP, + ACTIONS(460), 1, + anon_sym_PIPE, + ACTIONS(474), 1, anon_sym_QMARK, - ACTIONS(425), 1, + ACTIONS(476), 1, anon_sym_PIPE_PIPE, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(399), 2, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - ACTIONS(401), 2, + ACTIONS(440), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(403), 2, + ACTIONS(442), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(405), 2, + ACTIONS(444), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(407), 2, + ACTIONS(446), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(409), 2, + ACTIONS(448), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(473), 2, - anon_sym_RBRACE, + ACTIONS(456), 2, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + ACTIONS(527), 2, + anon_sym_RBRACE, anon_sym_COMMA, - [5632] = 16, - ACTIONS(387), 1, + [5841] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(438), 1, anon_sym_BANG_BANG, - ACTIONS(391), 1, - anon_sym_AMP_AMP, - ACTIONS(393), 1, - anon_sym_PIPE, - ACTIONS(395), 1, + ACTIONS(450), 1, + anon_sym_SLASH, + ACTIONS(452), 1, anon_sym_CARET, - ACTIONS(397), 1, + ACTIONS(454), 1, anon_sym_AMP, - ACTIONS(411), 1, - anon_sym_SLASH, - ACTIONS(423), 1, + ACTIONS(458), 1, + anon_sym_AMP_AMP, + ACTIONS(460), 1, + anon_sym_PIPE, + ACTIONS(474), 1, anon_sym_QMARK, - ACTIONS(425), 1, + ACTIONS(476), 1, anon_sym_PIPE_PIPE, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(399), 2, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - ACTIONS(401), 2, + ACTIONS(440), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(403), 2, + ACTIONS(442), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(405), 2, + ACTIONS(444), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(407), 2, + ACTIONS(446), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(409), 2, + ACTIONS(448), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(475), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [5689] = 16, - ACTIONS(387), 1, + ACTIONS(456), 2, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + ACTIONS(529), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [5897] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(438), 1, anon_sym_BANG_BANG, - ACTIONS(391), 1, - anon_sym_AMP_AMP, - ACTIONS(393), 1, - anon_sym_PIPE, - ACTIONS(395), 1, + ACTIONS(450), 1, + anon_sym_SLASH, + ACTIONS(452), 1, anon_sym_CARET, - ACTIONS(397), 1, + ACTIONS(454), 1, anon_sym_AMP, - ACTIONS(411), 1, - anon_sym_SLASH, - ACTIONS(423), 1, + ACTIONS(458), 1, + anon_sym_AMP_AMP, + ACTIONS(460), 1, + anon_sym_PIPE, + ACTIONS(474), 1, anon_sym_QMARK, - ACTIONS(425), 1, + ACTIONS(476), 1, anon_sym_PIPE_PIPE, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(399), 2, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - ACTIONS(401), 2, + ACTIONS(440), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(403), 2, + ACTIONS(442), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(405), 2, + ACTIONS(444), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(407), 2, + ACTIONS(446), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(409), 2, + ACTIONS(448), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(477), 2, + ACTIONS(456), 2, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + ACTIONS(531), 2, anon_sym_SEMI, anon_sym_RBRACE, - [5746] = 16, - ACTIONS(387), 1, + [5953] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(438), 1, anon_sym_BANG_BANG, - ACTIONS(391), 1, - anon_sym_AMP_AMP, - ACTIONS(393), 1, - anon_sym_PIPE, - ACTIONS(395), 1, + ACTIONS(450), 1, + anon_sym_SLASH, + ACTIONS(452), 1, anon_sym_CARET, - ACTIONS(397), 1, + ACTIONS(454), 1, anon_sym_AMP, - ACTIONS(411), 1, - anon_sym_SLASH, - ACTIONS(423), 1, + ACTIONS(458), 1, + anon_sym_AMP_AMP, + ACTIONS(460), 1, + anon_sym_PIPE, + ACTIONS(474), 1, anon_sym_QMARK, - ACTIONS(425), 1, + ACTIONS(476), 1, anon_sym_PIPE_PIPE, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(399), 2, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - ACTIONS(401), 2, + ACTIONS(440), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(403), 2, + ACTIONS(442), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(405), 2, + ACTIONS(444), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(407), 2, + ACTIONS(446), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(409), 2, + ACTIONS(448), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(479), 2, + ACTIONS(456), 2, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + ACTIONS(533), 2, anon_sym_SEMI, anon_sym_RBRACE, - [5803] = 16, - ACTIONS(387), 1, + [6009] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(438), 1, anon_sym_BANG_BANG, - ACTIONS(391), 1, - anon_sym_AMP_AMP, - ACTIONS(393), 1, - anon_sym_PIPE, - ACTIONS(395), 1, + ACTIONS(450), 1, + anon_sym_SLASH, + ACTIONS(452), 1, anon_sym_CARET, - ACTIONS(397), 1, + ACTIONS(454), 1, anon_sym_AMP, - ACTIONS(411), 1, - anon_sym_SLASH, - ACTIONS(423), 1, + ACTIONS(458), 1, + anon_sym_AMP_AMP, + ACTIONS(460), 1, + anon_sym_PIPE, + ACTIONS(474), 1, anon_sym_QMARK, - ACTIONS(425), 1, + ACTIONS(476), 1, anon_sym_PIPE_PIPE, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(399), 2, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - ACTIONS(401), 2, + ACTIONS(440), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(403), 2, + ACTIONS(442), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(405), 2, + ACTIONS(444), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(407), 2, + ACTIONS(446), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(409), 2, + ACTIONS(448), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(481), 2, + ACTIONS(456), 2, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + ACTIONS(535), 2, anon_sym_SEMI, anon_sym_RBRACE, - [5860] = 16, - ACTIONS(387), 1, + [6065] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(438), 1, anon_sym_BANG_BANG, - ACTIONS(391), 1, - anon_sym_AMP_AMP, - ACTIONS(393), 1, - anon_sym_PIPE, - ACTIONS(395), 1, + ACTIONS(450), 1, + anon_sym_SLASH, + ACTIONS(452), 1, anon_sym_CARET, - ACTIONS(397), 1, + ACTIONS(454), 1, anon_sym_AMP, - ACTIONS(411), 1, - anon_sym_SLASH, - ACTIONS(423), 1, + ACTIONS(458), 1, + anon_sym_AMP_AMP, + ACTIONS(460), 1, + anon_sym_PIPE, + ACTIONS(474), 1, anon_sym_QMARK, - ACTIONS(425), 1, + ACTIONS(476), 1, anon_sym_PIPE_PIPE, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(399), 2, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - ACTIONS(401), 2, + ACTIONS(440), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(403), 2, + ACTIONS(442), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(405), 2, + ACTIONS(444), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(407), 2, + ACTIONS(446), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(409), 2, + ACTIONS(448), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(483), 2, + ACTIONS(456), 2, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + ACTIONS(537), 2, anon_sym_SEMI, anon_sym_RBRACE, - [5917] = 16, - ACTIONS(387), 1, + [6121] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(438), 1, anon_sym_BANG_BANG, - ACTIONS(391), 1, - anon_sym_AMP_AMP, - ACTIONS(393), 1, - anon_sym_PIPE, - ACTIONS(395), 1, + ACTIONS(450), 1, + anon_sym_SLASH, + ACTIONS(452), 1, anon_sym_CARET, - ACTIONS(397), 1, + ACTIONS(454), 1, anon_sym_AMP, - ACTIONS(411), 1, - anon_sym_SLASH, - ACTIONS(423), 1, + ACTIONS(458), 1, + anon_sym_AMP_AMP, + ACTIONS(460), 1, + anon_sym_PIPE, + ACTIONS(474), 1, anon_sym_QMARK, - ACTIONS(425), 1, + ACTIONS(476), 1, anon_sym_PIPE_PIPE, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(399), 2, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - ACTIONS(401), 2, + ACTIONS(440), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(403), 2, + ACTIONS(442), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(405), 2, + ACTIONS(444), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(407), 2, + ACTIONS(446), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(409), 2, + ACTIONS(448), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(485), 2, + ACTIONS(456), 2, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + ACTIONS(539), 2, anon_sym_SEMI, anon_sym_RBRACE, - [5974] = 16, - ACTIONS(387), 1, + [6177] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(438), 1, anon_sym_BANG_BANG, - ACTIONS(391), 1, - anon_sym_AMP_AMP, - ACTIONS(393), 1, - anon_sym_PIPE, - ACTIONS(395), 1, + ACTIONS(450), 1, + anon_sym_SLASH, + ACTIONS(452), 1, anon_sym_CARET, - ACTIONS(397), 1, + ACTIONS(454), 1, anon_sym_AMP, - ACTIONS(411), 1, - anon_sym_SLASH, - ACTIONS(423), 1, + ACTIONS(458), 1, + anon_sym_AMP_AMP, + ACTIONS(460), 1, + anon_sym_PIPE, + ACTIONS(474), 1, anon_sym_QMARK, - ACTIONS(425), 1, + ACTIONS(476), 1, anon_sym_PIPE_PIPE, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(399), 2, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - ACTIONS(401), 2, + ACTIONS(440), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(403), 2, + ACTIONS(442), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(405), 2, + ACTIONS(444), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(407), 2, + ACTIONS(446), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(409), 2, + ACTIONS(448), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(487), 2, + ACTIONS(456), 2, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + ACTIONS(541), 2, anon_sym_SEMI, anon_sym_RBRACE, - [6031] = 16, - ACTIONS(387), 1, + [6233] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(438), 1, anon_sym_BANG_BANG, - ACTIONS(391), 1, - anon_sym_AMP_AMP, - ACTIONS(393), 1, - anon_sym_PIPE, - ACTIONS(395), 1, + ACTIONS(450), 1, + anon_sym_SLASH, + ACTIONS(452), 1, anon_sym_CARET, - ACTIONS(397), 1, + ACTIONS(454), 1, anon_sym_AMP, - ACTIONS(411), 1, - anon_sym_SLASH, - ACTIONS(423), 1, + ACTIONS(458), 1, + anon_sym_AMP_AMP, + ACTIONS(460), 1, + anon_sym_PIPE, + ACTIONS(474), 1, anon_sym_QMARK, - ACTIONS(425), 1, + ACTIONS(476), 1, anon_sym_PIPE_PIPE, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(399), 2, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - ACTIONS(401), 2, + ACTIONS(440), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(403), 2, + ACTIONS(442), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(405), 2, + ACTIONS(444), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(407), 2, + ACTIONS(446), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(409), 2, + ACTIONS(448), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(489), 2, + ACTIONS(456), 2, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + ACTIONS(543), 2, anon_sym_SEMI, anon_sym_RBRACE, - [6088] = 16, - ACTIONS(387), 1, + [6289] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(438), 1, anon_sym_BANG_BANG, - ACTIONS(391), 1, - anon_sym_AMP_AMP, - ACTIONS(393), 1, - anon_sym_PIPE, - ACTIONS(395), 1, + ACTIONS(450), 1, + anon_sym_SLASH, + ACTIONS(452), 1, anon_sym_CARET, - ACTIONS(397), 1, + ACTIONS(454), 1, anon_sym_AMP, - ACTIONS(411), 1, - anon_sym_SLASH, - ACTIONS(423), 1, + ACTIONS(458), 1, + anon_sym_AMP_AMP, + ACTIONS(460), 1, + anon_sym_PIPE, + ACTIONS(474), 1, anon_sym_QMARK, - ACTIONS(425), 1, + ACTIONS(476), 1, anon_sym_PIPE_PIPE, - ACTIONS(491), 1, - anon_sym_COLON, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(399), 2, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - ACTIONS(401), 2, + ACTIONS(545), 1, + anon_sym_RPAREN, + ACTIONS(440), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(403), 2, + ACTIONS(442), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(405), 2, + ACTIONS(444), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(407), 2, + ACTIONS(446), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(409), 2, + ACTIONS(448), 2, anon_sym_STAR, anon_sym_PERCENT, - [6144] = 16, - ACTIONS(387), 1, + ACTIONS(456), 2, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + [6344] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(438), 1, anon_sym_BANG_BANG, - ACTIONS(391), 1, + ACTIONS(450), 1, + anon_sym_SLASH, + ACTIONS(452), 1, + anon_sym_CARET, + ACTIONS(454), 1, + anon_sym_AMP, + ACTIONS(458), 1, anon_sym_AMP_AMP, - ACTIONS(393), 1, + ACTIONS(460), 1, anon_sym_PIPE, - ACTIONS(395), 1, + ACTIONS(474), 1, + anon_sym_QMARK, + ACTIONS(476), 1, + anon_sym_PIPE_PIPE, + ACTIONS(547), 1, + anon_sym_RPAREN, + ACTIONS(440), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(442), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(444), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(446), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(448), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(456), 2, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + [6399] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(438), 1, + anon_sym_BANG_BANG, + ACTIONS(450), 1, + anon_sym_SLASH, + ACTIONS(452), 1, anon_sym_CARET, - ACTIONS(397), 1, + ACTIONS(454), 1, anon_sym_AMP, - ACTIONS(411), 1, - anon_sym_SLASH, - ACTIONS(423), 1, + ACTIONS(458), 1, + anon_sym_AMP_AMP, + ACTIONS(460), 1, + anon_sym_PIPE, + ACTIONS(474), 1, anon_sym_QMARK, - ACTIONS(425), 1, + ACTIONS(476), 1, anon_sym_PIPE_PIPE, - ACTIONS(493), 1, + ACTIONS(549), 1, anon_sym_SEMI, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(399), 2, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - ACTIONS(401), 2, + ACTIONS(440), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(403), 2, + ACTIONS(442), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(405), 2, + ACTIONS(444), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(407), 2, + ACTIONS(446), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(409), 2, + ACTIONS(448), 2, anon_sym_STAR, anon_sym_PERCENT, - [6200] = 16, - ACTIONS(387), 1, + ACTIONS(456), 2, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + [6454] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(438), 1, anon_sym_BANG_BANG, - ACTIONS(391), 1, + ACTIONS(450), 1, + anon_sym_SLASH, + ACTIONS(452), 1, + anon_sym_CARET, + ACTIONS(454), 1, + anon_sym_AMP, + ACTIONS(458), 1, anon_sym_AMP_AMP, - ACTIONS(393), 1, + ACTIONS(460), 1, anon_sym_PIPE, - ACTIONS(395), 1, + ACTIONS(474), 1, + anon_sym_QMARK, + ACTIONS(476), 1, + anon_sym_PIPE_PIPE, + ACTIONS(551), 1, + anon_sym_RPAREN, + ACTIONS(440), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(442), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(444), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(446), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(448), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(456), 2, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + [6509] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(438), 1, + anon_sym_BANG_BANG, + ACTIONS(450), 1, + anon_sym_SLASH, + ACTIONS(452), 1, anon_sym_CARET, - ACTIONS(397), 1, + ACTIONS(454), 1, anon_sym_AMP, - ACTIONS(411), 1, - anon_sym_SLASH, - ACTIONS(423), 1, + ACTIONS(458), 1, + anon_sym_AMP_AMP, + ACTIONS(460), 1, + anon_sym_PIPE, + ACTIONS(474), 1, anon_sym_QMARK, - ACTIONS(425), 1, + ACTIONS(476), 1, anon_sym_PIPE_PIPE, - ACTIONS(495), 1, + ACTIONS(553), 1, anon_sym_RPAREN, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(399), 2, + ACTIONS(440), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(442), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(444), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(446), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(448), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(456), 2, anon_sym_BANG_EQ, anon_sym_EQ_EQ, - ACTIONS(401), 2, + [6564] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(438), 1, + anon_sym_BANG_BANG, + ACTIONS(450), 1, + anon_sym_SLASH, + ACTIONS(452), 1, + anon_sym_CARET, + ACTIONS(454), 1, + anon_sym_AMP, + ACTIONS(458), 1, + anon_sym_AMP_AMP, + ACTIONS(460), 1, + anon_sym_PIPE, + ACTIONS(474), 1, + anon_sym_QMARK, + ACTIONS(476), 1, + anon_sym_PIPE_PIPE, + ACTIONS(555), 1, + anon_sym_SEMI, + ACTIONS(440), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(403), 2, + ACTIONS(442), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(405), 2, + ACTIONS(444), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(407), 2, + ACTIONS(446), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(409), 2, + ACTIONS(448), 2, anon_sym_STAR, anon_sym_PERCENT, - [6256] = 4, - ACTIONS(499), 1, - anon_sym_import, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(456), 2, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + [6619] = 4, + ACTIONS(3), 1, sym_comment, - STATE(119), 2, + ACTIONS(559), 1, + anon_sym_import, + STATE(128), 2, sym_import, aux_sym_source_file_repeat1, - ACTIONS(497), 18, + ACTIONS(557), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -10215,331 +10465,267 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_contract, anon_sym_trait, anon_sym_ATinterface, - [6288] = 16, - ACTIONS(387), 1, + [6650] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(438), 1, anon_sym_BANG_BANG, - ACTIONS(391), 1, - anon_sym_AMP_AMP, - ACTIONS(393), 1, - anon_sym_PIPE, - ACTIONS(395), 1, + ACTIONS(450), 1, + anon_sym_SLASH, + ACTIONS(452), 1, anon_sym_CARET, - ACTIONS(397), 1, + ACTIONS(454), 1, anon_sym_AMP, - ACTIONS(411), 1, - anon_sym_SLASH, - ACTIONS(423), 1, + ACTIONS(458), 1, + anon_sym_AMP_AMP, + ACTIONS(460), 1, + anon_sym_PIPE, + ACTIONS(474), 1, anon_sym_QMARK, - ACTIONS(425), 1, + ACTIONS(476), 1, anon_sym_PIPE_PIPE, - ACTIONS(502), 1, - anon_sym_RPAREN, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(399), 2, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - ACTIONS(401), 2, + ACTIONS(562), 1, + anon_sym_COLON, + ACTIONS(440), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(403), 2, + ACTIONS(442), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(405), 2, + ACTIONS(444), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(407), 2, + ACTIONS(446), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(409), 2, + ACTIONS(448), 2, anon_sym_STAR, anon_sym_PERCENT, - [6344] = 16, - ACTIONS(387), 1, + ACTIONS(456), 2, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + [6705] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(438), 1, anon_sym_BANG_BANG, - ACTIONS(391), 1, - anon_sym_AMP_AMP, - ACTIONS(393), 1, - anon_sym_PIPE, - ACTIONS(395), 1, + ACTIONS(450), 1, + anon_sym_SLASH, + ACTIONS(452), 1, anon_sym_CARET, - ACTIONS(397), 1, + ACTIONS(454), 1, anon_sym_AMP, - ACTIONS(411), 1, - anon_sym_SLASH, - ACTIONS(423), 1, + ACTIONS(458), 1, + anon_sym_AMP_AMP, + ACTIONS(460), 1, + anon_sym_PIPE, + ACTIONS(474), 1, anon_sym_QMARK, - ACTIONS(425), 1, + ACTIONS(476), 1, anon_sym_PIPE_PIPE, - ACTIONS(504), 1, + ACTIONS(564), 1, anon_sym_RPAREN, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(399), 2, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - ACTIONS(401), 2, + ACTIONS(440), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(403), 2, + ACTIONS(442), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(405), 2, + ACTIONS(444), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(407), 2, + ACTIONS(446), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(409), 2, + ACTIONS(448), 2, anon_sym_STAR, anon_sym_PERCENT, - [6400] = 16, - ACTIONS(387), 1, + ACTIONS(456), 2, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + [6760] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(438), 1, anon_sym_BANG_BANG, - ACTIONS(391), 1, - anon_sym_AMP_AMP, - ACTIONS(393), 1, - anon_sym_PIPE, - ACTIONS(395), 1, + ACTIONS(450), 1, + anon_sym_SLASH, + ACTIONS(452), 1, anon_sym_CARET, - ACTIONS(397), 1, + ACTIONS(454), 1, anon_sym_AMP, - ACTIONS(411), 1, - anon_sym_SLASH, - ACTIONS(423), 1, + ACTIONS(458), 1, + anon_sym_AMP_AMP, + ACTIONS(460), 1, + anon_sym_PIPE, + ACTIONS(474), 1, anon_sym_QMARK, - ACTIONS(425), 1, + ACTIONS(476), 1, anon_sym_PIPE_PIPE, - ACTIONS(506), 1, + ACTIONS(566), 1, anon_sym_RPAREN, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(399), 2, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - ACTIONS(401), 2, + ACTIONS(440), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(403), 2, + ACTIONS(442), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(405), 2, + ACTIONS(444), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(407), 2, + ACTIONS(446), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(409), 2, + ACTIONS(448), 2, anon_sym_STAR, anon_sym_PERCENT, - [6456] = 16, - ACTIONS(387), 1, - anon_sym_BANG_BANG, - ACTIONS(391), 1, - anon_sym_AMP_AMP, - ACTIONS(393), 1, - anon_sym_PIPE, - ACTIONS(395), 1, - anon_sym_CARET, - ACTIONS(397), 1, - anon_sym_AMP, - ACTIONS(411), 1, - anon_sym_SLASH, - ACTIONS(423), 1, - anon_sym_QMARK, - ACTIONS(425), 1, - anon_sym_PIPE_PIPE, - ACTIONS(508), 1, - anon_sym_RPAREN, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(399), 2, + ACTIONS(456), 2, anon_sym_BANG_EQ, anon_sym_EQ_EQ, - ACTIONS(401), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(403), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(405), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(407), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(409), 2, - anon_sym_STAR, - anon_sym_PERCENT, - [6512] = 16, - ACTIONS(387), 1, + [6815] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(438), 1, anon_sym_BANG_BANG, - ACTIONS(391), 1, - anon_sym_AMP_AMP, - ACTIONS(393), 1, - anon_sym_PIPE, - ACTIONS(395), 1, + ACTIONS(450), 1, + anon_sym_SLASH, + ACTIONS(452), 1, anon_sym_CARET, - ACTIONS(397), 1, + ACTIONS(454), 1, anon_sym_AMP, - ACTIONS(411), 1, - anon_sym_SLASH, - ACTIONS(423), 1, + ACTIONS(458), 1, + anon_sym_AMP_AMP, + ACTIONS(460), 1, + anon_sym_PIPE, + ACTIONS(474), 1, anon_sym_QMARK, - ACTIONS(425), 1, + ACTIONS(476), 1, anon_sym_PIPE_PIPE, - ACTIONS(510), 1, + ACTIONS(568), 1, anon_sym_RPAREN, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(399), 2, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - ACTIONS(401), 2, + ACTIONS(440), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(403), 2, + ACTIONS(442), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(405), 2, + ACTIONS(444), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(407), 2, + ACTIONS(446), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(409), 2, + ACTIONS(448), 2, anon_sym_STAR, anon_sym_PERCENT, - [6568] = 16, - ACTIONS(387), 1, - anon_sym_BANG_BANG, - ACTIONS(391), 1, - anon_sym_AMP_AMP, - ACTIONS(393), 1, - anon_sym_PIPE, - ACTIONS(395), 1, - anon_sym_CARET, - ACTIONS(397), 1, - anon_sym_AMP, - ACTIONS(411), 1, - anon_sym_SLASH, - ACTIONS(423), 1, - anon_sym_QMARK, - ACTIONS(425), 1, - anon_sym_PIPE_PIPE, - ACTIONS(512), 1, - anon_sym_SEMI, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(399), 2, + ACTIONS(456), 2, anon_sym_BANG_EQ, anon_sym_EQ_EQ, - ACTIONS(401), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(403), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(405), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(407), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(409), 2, - anon_sym_STAR, - anon_sym_PERCENT, - [6624] = 16, - ACTIONS(387), 1, + [6870] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(438), 1, anon_sym_BANG_BANG, - ACTIONS(391), 1, - anon_sym_AMP_AMP, - ACTIONS(393), 1, - anon_sym_PIPE, - ACTIONS(395), 1, + ACTIONS(450), 1, + anon_sym_SLASH, + ACTIONS(452), 1, anon_sym_CARET, - ACTIONS(397), 1, + ACTIONS(454), 1, anon_sym_AMP, - ACTIONS(411), 1, - anon_sym_SLASH, - ACTIONS(423), 1, - anon_sym_QMARK, - ACTIONS(425), 1, - anon_sym_PIPE_PIPE, - ACTIONS(514), 1, - anon_sym_RPAREN, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(399), 2, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - ACTIONS(401), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(403), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(405), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(407), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(409), 2, - anon_sym_STAR, - anon_sym_PERCENT, - [6680] = 16, - ACTIONS(387), 1, - anon_sym_BANG_BANG, - ACTIONS(391), 1, + ACTIONS(458), 1, anon_sym_AMP_AMP, - ACTIONS(393), 1, + ACTIONS(460), 1, anon_sym_PIPE, - ACTIONS(395), 1, - anon_sym_CARET, - ACTIONS(397), 1, - anon_sym_AMP, - ACTIONS(411), 1, - anon_sym_SLASH, - ACTIONS(423), 1, + ACTIONS(474), 1, anon_sym_QMARK, - ACTIONS(425), 1, + ACTIONS(476), 1, anon_sym_PIPE_PIPE, - ACTIONS(516), 1, + ACTIONS(570), 1, anon_sym_RPAREN, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(399), 2, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - ACTIONS(401), 2, + ACTIONS(440), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(403), 2, + ACTIONS(442), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(405), 2, + ACTIONS(444), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(407), 2, + ACTIONS(446), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(409), 2, + ACTIONS(448), 2, anon_sym_STAR, anon_sym_PERCENT, - [6736] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(456), 2, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + [6925] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(157), 19, + ACTIONS(307), 1, + anon_sym_LT_LBRACE, + ACTIONS(574), 1, + sym_asm_integer, + ACTIONS(576), 1, + sym_tvm_instruction, + ACTIONS(317), 2, + aux_sym_asm_boc_hex_token1, + aux_sym_asm_boc_hex_token2, + ACTIONS(319), 2, + aux_sym_asm_stack_register_token1, + aux_sym_asm_stack_register_token2, + ACTIONS(572), 3, + sym_asm_hex_bitstring, + sym_asm_bin_bitstring, + sym_asm_control_register, + ACTIONS(313), 4, + anon_sym_abort_DQUOTE, + anon_sym_DOT_DQUOTE, + anon_sym_PLUS_DQUOTE, + anon_sym_DQUOTE, + STATE(135), 6, + sym__asm_primitive, + sym_asm_sequence, + sym_asm_string, + sym_asm_boc_hex, + sym_asm_stack_register, + aux_sym_asm_argument_list_repeat1, + [6965] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(578), 1, + anon_sym_LT_LBRACE, + ACTIONS(593), 1, + sym_asm_integer, + ACTIONS(596), 1, + sym_tvm_instruction, + ACTIONS(587), 2, + aux_sym_asm_boc_hex_token1, + aux_sym_asm_boc_hex_token2, + ACTIONS(590), 2, + aux_sym_asm_stack_register_token1, + aux_sym_asm_stack_register_token2, + ACTIONS(584), 3, + sym_asm_hex_bitstring, + sym_asm_bin_bitstring, + sym_asm_control_register, + ACTIONS(581), 4, + anon_sym_abort_DQUOTE, + anon_sym_DOT_DQUOTE, + anon_sym_PLUS_DQUOTE, + anon_sym_DQUOTE, + STATE(135), 6, + sym__asm_primitive, + sym_asm_sequence, + sym_asm_string, + sym_asm_boc_hex, + sym_asm_stack_register, + aux_sym_asm_argument_list_repeat1, + [7005] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(159), 19, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -10559,11 +10745,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_trait, anon_sym_ATinterface, anon_sym_until, - [6762] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [7030] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(161), 19, + ACTIONS(155), 19, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -10583,11 +10768,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_trait, anon_sym_ATinterface, anon_sym_until, - [6788] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [7055] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(165), 19, + ACTIONS(163), 19, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -10607,11 +10791,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_trait, anon_sym_ATinterface, anon_sym_until, - [6814] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [7080] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(518), 19, + ACTIONS(598), 19, ts_builtin_sym_end, anon_sym_import, anon_sym_primitive, @@ -10631,11 +10814,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_contract, anon_sym_trait, anon_sym_ATinterface, - [6840] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [7105] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(520), 18, + ACTIONS(600), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -10654,11 +10836,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_contract, anon_sym_trait, anon_sym_ATinterface, - [6865] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [7129] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(522), 18, + ACTIONS(602), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -10677,11 +10858,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_contract, anon_sym_trait, anon_sym_ATinterface, - [6890] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [7153] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(524), 18, + ACTIONS(604), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -10700,11 +10880,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_contract, anon_sym_trait, anon_sym_ATinterface, - [6915] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [7177] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(526), 18, + ACTIONS(606), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -10723,11 +10902,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_contract, anon_sym_trait, anon_sym_ATinterface, - [6940] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [7201] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(528), 18, + ACTIONS(608), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -10746,11 +10924,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_contract, anon_sym_trait, anon_sym_ATinterface, - [6965] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [7225] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(530), 18, + ACTIONS(610), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -10769,11 +10946,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_contract, anon_sym_trait, anon_sym_ATinterface, - [6990] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [7249] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(532), 18, + ACTIONS(612), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -10792,11 +10968,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_contract, anon_sym_trait, anon_sym_ATinterface, - [7015] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [7273] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(534), 18, + ACTIONS(614), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -10815,11 +10990,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_contract, anon_sym_trait, anon_sym_ATinterface, - [7040] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [7297] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(536), 18, + ACTIONS(616), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -10838,11 +11012,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_contract, anon_sym_trait, anon_sym_ATinterface, - [7065] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [7321] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(538), 18, + ACTIONS(618), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -10861,11 +11034,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_contract, anon_sym_trait, anon_sym_ATinterface, - [7090] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [7345] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(540), 18, + ACTIONS(620), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -10884,11 +11056,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_contract, anon_sym_trait, anon_sym_ATinterface, - [7115] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [7369] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(542), 18, + ACTIONS(622), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -10907,11 +11078,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_contract, anon_sym_trait, anon_sym_ATinterface, - [7140] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [7393] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(544), 18, + ACTIONS(624), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -10930,11 +11100,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_contract, anon_sym_trait, anon_sym_ATinterface, - [7165] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [7417] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(546), 18, + ACTIONS(626), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -10953,11 +11122,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_contract, anon_sym_trait, anon_sym_ATinterface, - [7190] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [7441] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(548), 18, + ACTIONS(628), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -10976,11 +11144,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_contract, anon_sym_trait, anon_sym_ATinterface, - [7215] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [7465] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(550), 18, + ACTIONS(630), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -10999,11 +11166,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_contract, anon_sym_trait, anon_sym_ATinterface, - [7240] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [7489] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(552), 18, + ACTIONS(632), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11022,11 +11188,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_contract, anon_sym_trait, anon_sym_ATinterface, - [7265] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [7513] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(554), 18, + ACTIONS(634), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11045,11 +11210,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_contract, anon_sym_trait, anon_sym_ATinterface, - [7290] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [7537] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(556), 18, + ACTIONS(636), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11068,11 +11232,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_contract, anon_sym_trait, anon_sym_ATinterface, - [7315] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [7561] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(558), 18, + ACTIONS(638), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11091,11 +11254,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_contract, anon_sym_trait, anon_sym_ATinterface, - [7340] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [7585] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(560), 18, + ACTIONS(640), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11114,11 +11276,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_contract, anon_sym_trait, anon_sym_ATinterface, - [7365] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [7609] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(562), 18, + ACTIONS(642), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11137,11 +11298,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_contract, anon_sym_trait, anon_sym_ATinterface, - [7390] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [7633] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(564), 18, + ACTIONS(644), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11160,11 +11320,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_contract, anon_sym_trait, anon_sym_ATinterface, - [7415] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [7657] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(566), 18, + ACTIONS(646), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11183,11 +11342,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_contract, anon_sym_trait, anon_sym_ATinterface, - [7440] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [7681] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(568), 18, + ACTIONS(648), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11206,11 +11364,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_contract, anon_sym_trait, anon_sym_ATinterface, - [7465] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [7705] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(570), 18, + ACTIONS(650), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11229,11 +11386,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_contract, anon_sym_trait, anon_sym_ATinterface, - [7490] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [7729] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(572), 18, + ACTIONS(652), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11252,11 +11408,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_contract, anon_sym_trait, anon_sym_ATinterface, - [7515] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [7753] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(574), 18, + ACTIONS(654), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11275,11 +11430,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_contract, anon_sym_trait, anon_sym_ATinterface, - [7540] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [7777] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(576), 18, + ACTIONS(656), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11298,11 +11452,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_contract, anon_sym_trait, anon_sym_ATinterface, - [7565] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [7801] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(578), 18, + ACTIONS(658), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11321,11 +11474,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_contract, anon_sym_trait, anon_sym_ATinterface, - [7590] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [7825] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(580), 18, + ACTIONS(660), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11344,11 +11496,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_contract, anon_sym_trait, anon_sym_ATinterface, - [7615] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [7849] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(582), 18, + ACTIONS(662), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11367,11 +11518,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_contract, anon_sym_trait, anon_sym_ATinterface, - [7640] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [7873] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(584), 18, + ACTIONS(664), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11390,11 +11540,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_contract, anon_sym_trait, anon_sym_ATinterface, - [7665] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [7897] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(586), 18, + ACTIONS(666), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11413,11 +11562,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_contract, anon_sym_trait, anon_sym_ATinterface, - [7690] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [7921] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(588), 18, + ACTIONS(668), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11436,11 +11584,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_contract, anon_sym_trait, anon_sym_ATinterface, - [7715] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [7945] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(590), 18, + ACTIONS(670), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11459,11 +11606,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_contract, anon_sym_trait, anon_sym_ATinterface, - [7740] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [7969] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(592), 18, + ACTIONS(672), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11482,11 +11628,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_contract, anon_sym_trait, anon_sym_ATinterface, - [7765] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [7993] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(594), 18, + ACTIONS(674), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11505,11 +11650,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_contract, anon_sym_trait, anon_sym_ATinterface, - [7790] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [8017] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(596), 18, + ACTIONS(676), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11528,11 +11672,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_contract, anon_sym_trait, anon_sym_ATinterface, - [7815] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [8041] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(598), 18, + ACTIONS(678), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11551,11 +11694,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_contract, anon_sym_trait, anon_sym_ATinterface, - [7840] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [8065] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(600), 18, + ACTIONS(680), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11574,11 +11716,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_contract, anon_sym_trait, anon_sym_ATinterface, - [7865] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [8089] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(602), 18, + ACTIONS(682), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11597,11 +11738,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_contract, anon_sym_trait, anon_sym_ATinterface, - [7890] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [8113] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(604), 18, + ACTIONS(684), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11620,11 +11760,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_contract, anon_sym_trait, anon_sym_ATinterface, - [7915] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [8137] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(606), 18, + ACTIONS(686), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11643,11 +11782,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_contract, anon_sym_trait, anon_sym_ATinterface, - [7940] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [8161] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(608), 18, + ACTIONS(690), 3, + anon_sym_RBRACE_GT, + sym_asm_integer, + sym_tvm_instruction, + ACTIONS(688), 15, + anon_sym_LT_LBRACE, + anon_sym_RBRACE_GTc, + anon_sym_RBRACE_GTs, + anon_sym_RBRACE_GTCONT, + anon_sym_abort_DQUOTE, + anon_sym_DOT_DQUOTE, + anon_sym_PLUS_DQUOTE, + anon_sym_DQUOTE, + sym_asm_hex_bitstring, + sym_asm_bin_bitstring, + aux_sym_asm_boc_hex_token1, + aux_sym_asm_boc_hex_token2, + sym_asm_control_register, + aux_sym_asm_stack_register_token1, + aux_sym_asm_stack_register_token2, + [8187] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(692), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11666,11 +11827,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_contract, anon_sym_trait, anon_sym_ATinterface, - [7965] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [8211] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(610), 18, + ACTIONS(696), 3, + anon_sym_RBRACE_GT, + sym_asm_integer, + sym_tvm_instruction, + ACTIONS(694), 15, + anon_sym_LT_LBRACE, + anon_sym_RBRACE_GTc, + anon_sym_RBRACE_GTs, + anon_sym_RBRACE_GTCONT, + anon_sym_abort_DQUOTE, + anon_sym_DOT_DQUOTE, + anon_sym_PLUS_DQUOTE, + anon_sym_DQUOTE, + sym_asm_hex_bitstring, + sym_asm_bin_bitstring, + aux_sym_asm_boc_hex_token1, + aux_sym_asm_boc_hex_token2, + sym_asm_control_register, + aux_sym_asm_stack_register_token1, + aux_sym_asm_stack_register_token2, + [8237] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(698), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11689,11 +11872,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_contract, anon_sym_trait, anon_sym_ATinterface, - [7990] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [8261] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(612), 18, + ACTIONS(700), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11712,11 +11894,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_contract, anon_sym_trait, anon_sym_ATinterface, - [8015] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [8285] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(614), 18, + ACTIONS(702), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11735,11 +11916,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_contract, anon_sym_trait, anon_sym_ATinterface, - [8040] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [8309] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(616), 18, + ACTIONS(704), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11758,11 +11938,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_contract, anon_sym_trait, anon_sym_ATinterface, - [8065] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [8333] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(618), 18, + ACTIONS(706), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11781,13 +11960,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_contract, anon_sym_trait, anon_sym_ATinterface, - [8090] = 3, - ACTIONS(622), 1, - anon_sym_RBRACE, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [8357] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(620), 14, + ACTIONS(710), 1, + anon_sym_RBRACE, + ACTIONS(708), 14, anon_sym_const, anon_sym_virtual, anon_sym_override, @@ -11802,13 +11980,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bounced, anon_sym_external, sym_identifier, - [8114] = 3, - ACTIONS(626), 1, - anon_sym_RBRACE, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [8380] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(624), 14, + ACTIONS(714), 1, + anon_sym_RBRACE, + ACTIONS(712), 14, anon_sym_const, anon_sym_virtual, anon_sym_override, @@ -11823,13 +12000,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bounced, anon_sym_external, sym_identifier, - [8138] = 3, - ACTIONS(246), 1, - anon_sym_RBRACE, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [8403] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(628), 14, + ACTIONS(718), 1, + anon_sym_RBRACE, + ACTIONS(716), 14, anon_sym_const, anon_sym_virtual, anon_sym_override, @@ -11844,13 +12020,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bounced, anon_sym_external, sym_identifier, - [8162] = 3, - ACTIONS(632), 1, - anon_sym_RBRACE, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [8426] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(630), 14, + ACTIONS(722), 1, + anon_sym_RBRACE, + ACTIONS(720), 14, anon_sym_const, anon_sym_virtual, anon_sym_override, @@ -11865,13 +12040,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bounced, anon_sym_external, sym_identifier, - [8186] = 3, - ACTIONS(636), 1, - anon_sym_RBRACE, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [8449] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(634), 14, + ACTIONS(726), 1, + anon_sym_RBRACE, + ACTIONS(724), 14, anon_sym_const, anon_sym_virtual, anon_sym_override, @@ -11886,13 +12060,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bounced, anon_sym_external, sym_identifier, - [8210] = 3, - ACTIONS(640), 1, - anon_sym_RBRACE, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [8472] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(638), 14, + ACTIONS(730), 1, + anon_sym_RBRACE, + ACTIONS(728), 14, anon_sym_const, anon_sym_virtual, anon_sym_override, @@ -11907,13 +12080,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bounced, anon_sym_external, sym_identifier, - [8234] = 3, - ACTIONS(644), 1, - anon_sym_RBRACE, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [8495] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(642), 14, + ACTIONS(734), 1, + anon_sym_RBRACE, + ACTIONS(732), 14, anon_sym_const, anon_sym_virtual, anon_sym_override, @@ -11928,13 +12100,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bounced, anon_sym_external, sym_identifier, - [8258] = 3, - ACTIONS(648), 1, - anon_sym_RBRACE, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [8518] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(646), 14, + ACTIONS(738), 1, + anon_sym_RBRACE, + ACTIONS(736), 14, anon_sym_const, anon_sym_virtual, anon_sym_override, @@ -11949,13 +12120,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bounced, anon_sym_external, sym_identifier, - [8282] = 3, - ACTIONS(652), 1, - anon_sym_RBRACE, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [8541] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(650), 14, + ACTIONS(742), 1, + anon_sym_RBRACE, + ACTIONS(740), 14, anon_sym_const, anon_sym_virtual, anon_sym_override, @@ -11970,13 +12140,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bounced, anon_sym_external, sym_identifier, - [8306] = 3, - ACTIONS(656), 1, + [8564] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(690), 2, + sym_asm_integer, + sym_tvm_instruction, + ACTIONS(688), 13, anon_sym_RBRACE, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + anon_sym_LT_LBRACE, + anon_sym_abort_DQUOTE, + anon_sym_DOT_DQUOTE, + anon_sym_PLUS_DQUOTE, + anon_sym_DQUOTE, + sym_asm_hex_bitstring, + sym_asm_bin_bitstring, + aux_sym_asm_boc_hex_token1, + aux_sym_asm_boc_hex_token2, + sym_asm_control_register, + aux_sym_asm_stack_register_token1, + aux_sym_asm_stack_register_token2, + [8587] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(696), 2, + sym_asm_integer, + sym_tvm_instruction, + ACTIONS(694), 13, + anon_sym_RBRACE, + anon_sym_LT_LBRACE, + anon_sym_abort_DQUOTE, + anon_sym_DOT_DQUOTE, + anon_sym_PLUS_DQUOTE, + anon_sym_DQUOTE, + sym_asm_hex_bitstring, + sym_asm_bin_bitstring, + aux_sym_asm_boc_hex_token1, + aux_sym_asm_boc_hex_token2, + sym_asm_control_register, + aux_sym_asm_stack_register_token1, + aux_sym_asm_stack_register_token2, + [8610] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(654), 14, + ACTIONS(746), 1, + anon_sym_RBRACE, + ACTIONS(744), 14, anon_sym_const, anon_sym_virtual, anon_sym_override, @@ -11991,13 +12200,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bounced, anon_sym_external, sym_identifier, - [8330] = 3, - ACTIONS(660), 1, - anon_sym_RBRACE, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [8633] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(658), 14, + ACTIONS(244), 1, + anon_sym_RBRACE, + ACTIONS(748), 14, anon_sym_const, anon_sym_virtual, anon_sym_override, @@ -12012,13 +12220,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bounced, anon_sym_external, sym_identifier, - [8354] = 3, - ACTIONS(664), 1, - anon_sym_RBRACE, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [8656] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(662), 14, + ACTIONS(752), 1, + anon_sym_RBRACE, + ACTIONS(750), 14, anon_sym_const, anon_sym_virtual, anon_sym_override, @@ -12033,13 +12240,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bounced, anon_sym_external, sym_identifier, - [8378] = 3, - ACTIONS(668), 1, - anon_sym_RBRACE, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [8679] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(756), 2, + sym_asm_integer, + sym_tvm_instruction, + ACTIONS(754), 12, + anon_sym_LT_LBRACE, + anon_sym_abort_DQUOTE, + anon_sym_DOT_DQUOTE, + anon_sym_PLUS_DQUOTE, + anon_sym_DQUOTE, + sym_asm_hex_bitstring, + sym_asm_bin_bitstring, + aux_sym_asm_boc_hex_token1, + aux_sym_asm_boc_hex_token2, + sym_asm_control_register, + aux_sym_asm_stack_register_token1, + aux_sym_asm_stack_register_token2, + [8701] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(666), 13, + ACTIONS(760), 1, + anon_sym_RBRACE, + ACTIONS(758), 13, anon_sym_const, anon_sym_virtual, anon_sym_override, @@ -12053,57 +12278,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bounced, anon_sym_external, sym_identifier, - [8401] = 3, - ACTIONS(288), 1, - anon_sym_RBRACE, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [8723] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(670), 13, - anon_sym_const, - anon_sym_virtual, - anon_sym_override, - anon_sym_abstract, - anon_sym_fun, - anon_sym_mutates, - anon_sym_extends, - anon_sym_inline, - anon_sym_get, - anon_sym_receive, + ACTIONS(764), 2, + sym_asm_integer, + sym_tvm_instruction, + ACTIONS(762), 12, + anon_sym_LT_LBRACE, + anon_sym_abort_DQUOTE, + anon_sym_DOT_DQUOTE, + anon_sym_PLUS_DQUOTE, + anon_sym_DQUOTE, + sym_asm_hex_bitstring, + sym_asm_bin_bitstring, + aux_sym_asm_boc_hex_token1, + aux_sym_asm_boc_hex_token2, + sym_asm_control_register, + aux_sym_asm_stack_register_token1, + aux_sym_asm_stack_register_token2, + [8745] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(768), 2, + sym_asm_integer, + sym_tvm_instruction, + ACTIONS(766), 12, + anon_sym_LT_LBRACE, + anon_sym_abort_DQUOTE, + anon_sym_DOT_DQUOTE, + anon_sym_PLUS_DQUOTE, + anon_sym_DQUOTE, + sym_asm_hex_bitstring, + sym_asm_bin_bitstring, + aux_sym_asm_boc_hex_token1, + aux_sym_asm_boc_hex_token2, + sym_asm_control_register, + aux_sym_asm_stack_register_token1, + aux_sym_asm_stack_register_token2, + [8767] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(772), 2, + sym_asm_integer, + sym_tvm_instruction, + ACTIONS(770), 12, + anon_sym_LT_LBRACE, + anon_sym_abort_DQUOTE, + anon_sym_DOT_DQUOTE, + anon_sym_PLUS_DQUOTE, + anon_sym_DQUOTE, + sym_asm_hex_bitstring, + sym_asm_bin_bitstring, + aux_sym_asm_boc_hex_token1, + aux_sym_asm_boc_hex_token2, + sym_asm_control_register, + aux_sym_asm_stack_register_token1, + aux_sym_asm_stack_register_token2, + [8789] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(286), 1, + anon_sym_RBRACE, + ACTIONS(774), 13, + anon_sym_const, + anon_sym_virtual, + anon_sym_override, + anon_sym_abstract, + anon_sym_fun, + anon_sym_mutates, + anon_sym_extends, + anon_sym_inline, + anon_sym_get, + anon_sym_receive, anon_sym_bounced, anon_sym_external, sym_identifier, - [8424] = 8, - ACTIONS(25), 1, + [8811] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(778), 2, + sym_asm_integer, + sym_tvm_instruction, + ACTIONS(776), 12, + anon_sym_LT_LBRACE, + anon_sym_abort_DQUOTE, + anon_sym_DOT_DQUOTE, + anon_sym_PLUS_DQUOTE, + anon_sym_DQUOTE, + sym_asm_hex_bitstring, + sym_asm_bin_bitstring, + aux_sym_asm_boc_hex_token1, + aux_sym_asm_boc_hex_token2, + sym_asm_control_register, + aux_sym_asm_stack_register_token1, + aux_sym_asm_stack_register_token2, + [8833] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_get, - ACTIONS(672), 1, + ACTIONS(780), 1, anon_sym_LPAREN, - ACTIONS(674), 1, + ACTIONS(782), 1, anon_sym_fun, - STATE(201), 1, + STATE(217), 1, sym_asm_arrangement, - STATE(447), 1, + STATE(486), 1, sym_function_attributes, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - STATE(204), 2, + STATE(218), 2, sym_get_attribute, aux_sym_function_attributes_repeat1, - ACTIONS(23), 6, + ACTIONS(21), 6, anon_sym_virtual, anon_sym_override, anon_sym_abstract, anon_sym_mutates, anon_sym_extends, anon_sym_inline, - [8456] = 3, - ACTIONS(676), 1, - anon_sym_EQ, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [8864] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(678), 12, + ACTIONS(784), 1, + anon_sym_EQ, + ACTIONS(786), 12, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -12116,200 +12414,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_GT_GT_EQ, anon_sym_LT_LT_EQ, - [8478] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(21), 1, - aux_sym_asm_list_token1, - ACTIONS(680), 1, - anon_sym_LBRACE, - ACTIONS(682), 1, - anon_sym_RBRACE, - ACTIONS(684), 1, - anon_sym_char, - ACTIONS(686), 1, - aux_sym__asm_instruction_token2, - ACTIONS(688), 4, - anon_sym_abort_DQUOTE, - anon_sym_DOT_DQUOTE, - anon_sym_PLUS_DQUOTE, - anon_sym_DQUOTE, - STATE(199), 4, - sym_asm_list, - sym__asm_instruction, - sym__asm_string, - aux_sym_asm_function_body_repeat1, - [8509] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(21), 1, - aux_sym_asm_list_token1, - ACTIONS(680), 1, - anon_sym_LBRACE, - ACTIONS(684), 1, - anon_sym_char, - ACTIONS(690), 1, - anon_sym_RBRACE, - ACTIONS(692), 1, - aux_sym__asm_instruction_token2, - ACTIONS(688), 4, - anon_sym_abort_DQUOTE, - anon_sym_DOT_DQUOTE, - anon_sym_PLUS_DQUOTE, - anon_sym_DQUOTE, - STATE(200), 4, - sym_asm_list, - sym__asm_instruction, - sym__asm_string, - aux_sym_asm_function_body_repeat1, - [8540] = 8, + [8885] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(21), 1, - aux_sym_asm_list_token1, - ACTIONS(694), 1, - anon_sym_LBRACE, - ACTIONS(697), 1, - anon_sym_RBRACE, - ACTIONS(699), 1, - anon_sym_char, - ACTIONS(702), 1, - aux_sym__asm_instruction_token2, - ACTIONS(705), 4, - anon_sym_abort_DQUOTE, - anon_sym_DOT_DQUOTE, - anon_sym_PLUS_DQUOTE, - anon_sym_DQUOTE, - STATE(200), 4, - sym_asm_list, - sym__asm_instruction, - sym__asm_string, - aux_sym_asm_function_body_repeat1, - [8571] = 6, - ACTIONS(25), 1, + ACTIONS(793), 1, anon_sym_get, - ACTIONS(708), 1, + ACTIONS(791), 2, + anon_sym_native, anon_sym_fun, - STATE(492), 1, - sym_function_attributes, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - STATE(204), 2, + STATE(215), 2, sym_get_attribute, aux_sym_function_attributes_repeat1, - ACTIONS(23), 6, + ACTIONS(788), 6, anon_sym_virtual, anon_sym_override, anon_sym_abstract, anon_sym_mutates, anon_sym_extends, anon_sym_inline, - [8597] = 5, - ACTIONS(715), 1, - anon_sym_get, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [8908] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(713), 2, + ACTIONS(23), 1, + anon_sym_get, + ACTIONS(796), 1, anon_sym_native, - anon_sym_fun, - STATE(202), 2, + STATE(500), 1, + sym_function_attributes, + STATE(218), 2, sym_get_attribute, aux_sym_function_attributes_repeat1, - ACTIONS(710), 6, + ACTIONS(21), 6, anon_sym_virtual, anon_sym_override, anon_sym_abstract, anon_sym_mutates, anon_sym_extends, anon_sym_inline, - [8621] = 6, - ACTIONS(25), 1, + [8933] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_get, - ACTIONS(718), 1, - anon_sym_native, - STATE(407), 1, + ACTIONS(798), 1, + anon_sym_fun, + STATE(416), 1, sym_function_attributes, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - STATE(204), 2, + STATE(218), 2, sym_get_attribute, aux_sym_function_attributes_repeat1, - ACTIONS(23), 6, + ACTIONS(21), 6, anon_sym_virtual, anon_sym_override, anon_sym_abstract, anon_sym_mutates, anon_sym_extends, anon_sym_inline, - [8647] = 5, - ACTIONS(25), 1, - anon_sym_get, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [8958] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(722), 2, + ACTIONS(23), 1, + anon_sym_get, + ACTIONS(802), 2, anon_sym_native, anon_sym_fun, - STATE(202), 2, + STATE(215), 2, sym_get_attribute, aux_sym_function_attributes_repeat1, - ACTIONS(720), 6, + ACTIONS(800), 6, anon_sym_virtual, anon_sym_override, anon_sym_abstract, anon_sym_mutates, anon_sym_extends, anon_sym_inline, - [8671] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(21), 1, - aux_sym_asm_list_token1, - ACTIONS(724), 1, - anon_sym_RBRACE, - ACTIONS(726), 1, - anon_sym_char, - ACTIONS(728), 1, - aux_sym__asm_instruction_token2, - STATE(206), 3, - sym__asm_instruction, - sym__asm_string, - aux_sym_asm_list_repeat1, - ACTIONS(730), 4, - anon_sym_abort_DQUOTE, - anon_sym_DOT_DQUOTE, - anon_sym_PLUS_DQUOTE, - anon_sym_DQUOTE, - [8698] = 7, + [8981] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(21), 1, - aux_sym_asm_list_token1, - ACTIONS(726), 1, - anon_sym_char, - ACTIONS(732), 1, - anon_sym_RBRACE, - ACTIONS(734), 1, - aux_sym__asm_instruction_token2, - STATE(208), 3, - sym__asm_instruction, - sym__asm_string, - aux_sym_asm_list_repeat1, - ACTIONS(730), 4, - anon_sym_abort_DQUOTE, - anon_sym_DOT_DQUOTE, - anon_sym_PLUS_DQUOTE, - anon_sym_DQUOTE, - [8725] = 3, - ACTIONS(738), 1, + ACTIONS(806), 1, anon_sym_LPAREN, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(736), 9, + ACTIONS(804), 9, anon_sym_virtual, anon_sym_override, anon_sym_abstract, @@ -12319,61 +12503,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, anon_sym_inline, anon_sym_get, - [8744] = 7, + [8999] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(21), 1, - aux_sym_asm_list_token1, - ACTIONS(740), 1, - anon_sym_RBRACE, - ACTIONS(742), 1, - anon_sym_char, - ACTIONS(745), 1, - aux_sym__asm_instruction_token2, - STATE(208), 3, - sym__asm_instruction, - sym__asm_string, - aux_sym_asm_list_repeat1, - ACTIONS(748), 4, - anon_sym_abort_DQUOTE, - anon_sym_DOT_DQUOTE, - anon_sym_PLUS_DQUOTE, - anon_sym_DQUOTE, - [8771] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(751), 9, + ACTIONS(808), 1, + anon_sym_const, + ACTIONS(810), 3, anon_sym_virtual, anon_sym_override, anon_sym_abstract, - anon_sym_native, + ACTIONS(813), 5, anon_sym_fun, anon_sym_mutates, anon_sym_extends, anon_sym_inline, anon_sym_get, - [8787] = 4, - ACTIONS(753), 1, - anon_sym_const, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [9018] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(755), 3, + ACTIONS(815), 9, anon_sym_virtual, anon_sym_override, anon_sym_abstract, - ACTIONS(758), 5, + anon_sym_native, anon_sym_fun, anon_sym_mutates, anon_sym_extends, anon_sym_inline, anon_sym_get, - [8807] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [9033] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(760), 8, + ACTIONS(817), 8, anon_sym_virtual, anon_sym_override, anon_sym_abstract, @@ -12382,13 +12543,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, anon_sym_inline, anon_sym_get, - [8822] = 3, - ACTIONS(764), 1, - anon_sym_QMARK, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [9047] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(762), 7, + ACTIONS(821), 1, + anon_sym_QMARK, + ACTIONS(819), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RPAREN, @@ -12396,11 +12556,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COMMA, anon_sym_as, - [8839] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [9063] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(766), 8, + ACTIONS(823), 8, anon_sym_virtual, anon_sym_override, anon_sym_abstract, @@ -12409,39 +12568,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, anon_sym_inline, anon_sym_get, - [8854] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(21), 1, - aux_sym_asm_list_token1, - ACTIONS(768), 8, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_char, - aux_sym__asm_instruction_token2, - anon_sym_abort_DQUOTE, - anon_sym_DOT_DQUOTE, - anon_sym_PLUS_DQUOTE, - anon_sym_DQUOTE, - [8871] = 3, + [9077] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(21), 1, - aux_sym_asm_list_token1, - ACTIONS(770), 8, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_char, - aux_sym__asm_instruction_token2, - anon_sym_abort_DQUOTE, - anon_sym_DOT_DQUOTE, - anon_sym_PLUS_DQUOTE, - anon_sym_DQUOTE, - [8888] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(772), 8, + ACTIONS(825), 8, anon_sym_virtual, anon_sym_override, anon_sym_abstract, @@ -12450,25 +12580,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, anon_sym_inline, anon_sym_get, - [8903] = 3, + [9091] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(21), 1, - aux_sym_asm_list_token1, - ACTIONS(774), 8, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_char, - aux_sym__asm_instruction_token2, - anon_sym_abort_DQUOTE, - anon_sym_DOT_DQUOTE, - anon_sym_PLUS_DQUOTE, - anon_sym_DQUOTE, - [8920] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(776), 8, + ACTIONS(827), 8, anon_sym_virtual, anon_sym_override, anon_sym_abstract, @@ -12477,55 +12592,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, anon_sym_inline, anon_sym_get, - [8935] = 3, + [9105] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(21), 1, - aux_sym_asm_list_token1, - ACTIONS(778), 8, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_char, - aux_sym__asm_instruction_token2, - anon_sym_abort_DQUOTE, - anon_sym_DOT_DQUOTE, - anon_sym_PLUS_DQUOTE, - anon_sym_DQUOTE, - [8952] = 5, - ACTIONS(780), 1, - anon_sym_bounced, - ACTIONS(782), 1, - anon_sym_map, - ACTIONS(784), 1, - sym__type_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - STATE(409), 4, - sym__type, - sym_map_type, - sym_bounced_type, - sym_optional_type, - [8972] = 5, - ACTIONS(780), 1, + ACTIONS(829), 1, anon_sym_bounced, - ACTIONS(782), 1, + ACTIONS(831), 1, anon_sym_map, - ACTIONS(784), 1, + ACTIONS(833), 1, sym__type_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - STATE(288), 4, + STATE(276), 4, sym__type, sym_map_type, sym_bounced_type, sym_optional_type, - [8992] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [9124] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(786), 7, + ACTIONS(835), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RPAREN, @@ -12533,227 +12617,214 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COMMA, anon_sym_as, - [9006] = 5, - ACTIONS(780), 1, + [9137] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(829), 1, anon_sym_bounced, - ACTIONS(782), 1, + ACTIONS(831), 1, anon_sym_map, - ACTIONS(784), 1, + ACTIONS(833), 1, sym__type_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - STATE(370), 4, + STATE(301), 4, sym__type, sym_map_type, sym_bounced_type, sym_optional_type, - [9026] = 5, - ACTIONS(780), 1, + [9156] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(829), 1, anon_sym_bounced, - ACTIONS(782), 1, + ACTIONS(831), 1, anon_sym_map, - ACTIONS(784), 1, + ACTIONS(833), 1, sym__type_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - STATE(463), 4, + STATE(298), 4, sym__type, sym_map_type, sym_bounced_type, sym_optional_type, - [9046] = 5, - ACTIONS(780), 1, + [9175] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(829), 1, anon_sym_bounced, - ACTIONS(782), 1, + ACTIONS(831), 1, anon_sym_map, - ACTIONS(784), 1, + ACTIONS(833), 1, sym__type_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - STATE(313), 4, + STATE(337), 4, sym__type, sym_map_type, sym_bounced_type, sym_optional_type, - [9066] = 5, - ACTIONS(780), 1, + [9194] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(829), 1, anon_sym_bounced, - ACTIONS(782), 1, + ACTIONS(831), 1, anon_sym_map, - ACTIONS(784), 1, + ACTIONS(833), 1, sym__type_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - STATE(347), 4, + STATE(303), 4, sym__type, sym_map_type, sym_bounced_type, sym_optional_type, - [9086] = 5, - ACTIONS(780), 1, + [9213] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(829), 1, anon_sym_bounced, - ACTIONS(782), 1, + ACTIONS(831), 1, anon_sym_map, - ACTIONS(784), 1, + ACTIONS(833), 1, sym__type_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - STATE(271), 4, + STATE(335), 4, sym__type, sym_map_type, sym_bounced_type, sym_optional_type, - [9106] = 5, - ACTIONS(780), 1, + [9232] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(837), 7, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_as, + [9245] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(829), 1, anon_sym_bounced, - ACTIONS(782), 1, + ACTIONS(831), 1, anon_sym_map, - ACTIONS(784), 1, + ACTIONS(833), 1, sym__type_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - STATE(435), 4, + STATE(373), 4, sym__type, sym_map_type, sym_bounced_type, sym_optional_type, - [9126] = 5, - ACTIONS(780), 1, + [9264] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(829), 1, anon_sym_bounced, - ACTIONS(782), 1, + ACTIONS(831), 1, anon_sym_map, - ACTIONS(784), 1, + ACTIONS(833), 1, sym__type_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + STATE(363), 4, + sym__type, + sym_map_type, + sym_bounced_type, + sym_optional_type, + [9283] = 5, + ACTIONS(3), 1, sym_comment, - STATE(362), 4, + ACTIONS(829), 1, + anon_sym_bounced, + ACTIONS(831), 1, + anon_sym_map, + ACTIONS(833), 1, + sym__type_identifier, + STATE(413), 4, sym__type, sym_map_type, sym_bounced_type, sym_optional_type, - [9146] = 5, - ACTIONS(780), 1, + [9302] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(829), 1, anon_sym_bounced, - ACTIONS(782), 1, + ACTIONS(831), 1, anon_sym_map, - ACTIONS(784), 1, + ACTIONS(833), 1, sym__type_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + STATE(405), 4, + sym__type, + sym_map_type, + sym_bounced_type, + sym_optional_type, + [9321] = 5, + ACTIONS(3), 1, sym_comment, - STATE(376), 4, + ACTIONS(829), 1, + anon_sym_bounced, + ACTIONS(831), 1, + anon_sym_map, + ACTIONS(833), 1, + sym__type_identifier, + STATE(273), 4, sym__type, sym_map_type, sym_bounced_type, sym_optional_type, - [9166] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [9340] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(788), 7, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_as, - [9180] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(790), 7, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_as, - [9194] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(792), 7, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_as, - [9208] = 5, - ACTIONS(780), 1, + ACTIONS(829), 1, anon_sym_bounced, - ACTIONS(782), 1, + ACTIONS(831), 1, anon_sym_map, - ACTIONS(784), 1, + ACTIONS(833), 1, sym__type_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - STATE(247), 4, + STATE(304), 4, sym__type, sym_map_type, sym_bounced_type, sym_optional_type, - [9228] = 5, - ACTIONS(780), 1, - anon_sym_bounced, - ACTIONS(782), 1, - anon_sym_map, - ACTIONS(784), 1, - sym__type_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [9359] = 5, + ACTIONS(3), 1, sym_comment, - STATE(300), 4, - sym__type, - sym_map_type, - sym_bounced_type, - sym_optional_type, - [9248] = 5, - ACTIONS(780), 1, + ACTIONS(829), 1, anon_sym_bounced, - ACTIONS(782), 1, + ACTIONS(831), 1, anon_sym_map, - ACTIONS(784), 1, + ACTIONS(833), 1, sym__type_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - STATE(394), 4, + STATE(439), 4, sym__type, sym_map_type, sym_bounced_type, sym_optional_type, - [9268] = 5, - ACTIONS(780), 1, + [9378] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(839), 7, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_as, + [9391] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(829), 1, anon_sym_bounced, - ACTIONS(782), 1, + ACTIONS(831), 1, anon_sym_map, - ACTIONS(784), 1, + ACTIONS(833), 1, sym__type_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - STATE(258), 4, + STATE(464), 4, sym__type, sym_map_type, sym_bounced_type, sym_optional_type, - [9288] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [9410] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(794), 7, + ACTIONS(841), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RPAREN, @@ -12761,41 +12832,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COMMA, anon_sym_as, - [9302] = 5, - ACTIONS(780), 1, + [9423] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(829), 1, anon_sym_bounced, - ACTIONS(782), 1, + ACTIONS(831), 1, anon_sym_map, - ACTIONS(784), 1, + ACTIONS(833), 1, sym__type_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - STATE(385), 4, + STATE(349), 4, sym__type, sym_map_type, sym_bounced_type, sym_optional_type, - [9322] = 5, - ACTIONS(780), 1, + [9442] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(829), 1, anon_sym_bounced, - ACTIONS(782), 1, + ACTIONS(831), 1, anon_sym_map, - ACTIONS(784), 1, + ACTIONS(833), 1, sym__type_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - STATE(294), 4, + STATE(396), 4, sym__type, sym_map_type, sym_bounced_type, sym_optional_type, - [9342] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [9461] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(796), 7, + ACTIONS(843), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RPAREN, @@ -12803,3256 +12871,2935 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COMMA, anon_sym_as, - [9356] = 5, - ACTIONS(780), 1, + [9474] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(845), 7, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_as, + [9487] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(829), 1, anon_sym_bounced, - ACTIONS(782), 1, + ACTIONS(831), 1, anon_sym_map, - ACTIONS(784), 1, + ACTIONS(833), 1, sym__type_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - STATE(365), 4, + STATE(252), 4, sym__type, sym_map_type, sym_bounced_type, sym_optional_type, - [9376] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(21), 1, - aux_sym_asm_list_token1, - ACTIONS(770), 7, - anon_sym_RBRACE, - anon_sym_char, - aux_sym__asm_instruction_token2, - anon_sym_abort_DQUOTE, - anon_sym_DOT_DQUOTE, - anon_sym_PLUS_DQUOTE, - anon_sym_DQUOTE, - [9392] = 3, + [9506] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(21), 1, - aux_sym_asm_list_token1, - ACTIONS(778), 7, - anon_sym_RBRACE, - anon_sym_char, - aux_sym__asm_instruction_token2, - anon_sym_abort_DQUOTE, - anon_sym_DOT_DQUOTE, - anon_sym_PLUS_DQUOTE, - anon_sym_DQUOTE, - [9408] = 7, - ACTIONS(798), 1, + ACTIONS(847), 1, sym_identifier, - ACTIONS(800), 1, + ACTIONS(849), 1, anon_sym_RPAREN, - ACTIONS(802), 1, + ACTIONS(851), 1, anon_sym_DASH_GT, - STATE(265), 1, + STATE(264), 1, aux_sym_asm_arrangement_args_repeat1, - STATE(286), 1, + STATE(283), 1, sym_asm_arrangement_args, - STATE(489), 1, + STATE(461), 1, sym_asm_arrangement_rets, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [9528] = 5, + ACTIONS(3), 1, sym_comment, - [9431] = 5, - ACTIONS(41), 1, - anon_sym_LBRACE, - ACTIONS(806), 1, - anon_sym_COLON, - STATE(185), 1, - sym_block_statement, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(43), 1, + anon_sym_DQUOTE, + ACTIONS(853), 1, + sym_identifier, + ACTIONS(855), 1, + anon_sym_RPAREN, + STATE(472), 2, + sym_parameter, + sym_string, + [9545] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(804), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [9449] = 5, - ACTIONS(810), 1, + ACTIONS(859), 1, anon_sym_EQ, - ACTIONS(812), 1, + ACTIONS(861), 1, anon_sym_as, - STATE(299), 1, + STATE(327), 1, sym_tlb_serialization, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(808), 2, + ACTIONS(857), 2, anon_sym_SEMI, anon_sym_RBRACE, - [9467] = 4, - ACTIONS(814), 1, + [9562] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_DQUOTE, + ACTIONS(853), 1, + sym_identifier, + ACTIONS(863), 1, + anon_sym_RPAREN, + STATE(465), 2, + sym_parameter, + sym_string, + [9579] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(865), 1, anon_sym_const, - STATE(248), 1, + STATE(254), 1, aux_sym_constant_attributes_repeat1, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(816), 3, + ACTIONS(867), 3, anon_sym_virtual, anon_sym_override, anon_sym_abstract, - [9483] = 5, - ACTIONS(41), 1, + [9594] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, anon_sym_LBRACE, - ACTIONS(821), 1, + ACTIONS(872), 1, anon_sym_COLON, - STATE(191), 1, + STATE(192), 1, sym_block_statement, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(819), 2, + ACTIONS(870), 2, anon_sym_SEMI, anon_sym_RBRACE, - [9501] = 5, - ACTIONS(45), 1, - anon_sym_DQUOTE, - ACTIONS(823), 1, - sym_identifier, - ACTIONS(825), 1, - anon_sym_RPAREN, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [9611] = 4, + ACTIONS(3), 1, sym_comment, - STATE(402), 2, - sym_parameter, - sym_string, - [9519] = 4, - ACTIONS(827), 1, + ACTIONS(874), 1, anon_sym_const, - STATE(248), 1, + STATE(254), 1, aux_sym_constant_attributes_repeat1, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(829), 3, + ACTIONS(876), 3, anon_sym_virtual, anon_sym_override, anon_sym_abstract, - [9535] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [9626] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym_LBRACE, + ACTIONS(880), 1, + anon_sym_COLON, + STATE(193), 1, + sym_block_statement, + ACTIONS(878), 2, + anon_sym_SEMI, + anon_sym_RBRACE, + [9643] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(831), 5, + ACTIONS(882), 5, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_GT, - [9547] = 5, - ACTIONS(45), 1, - anon_sym_DQUOTE, - ACTIONS(823), 1, - sym_identifier, - ACTIONS(833), 1, - anon_sym_RPAREN, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [9654] = 5, + ACTIONS(3), 1, sym_comment, - STATE(486), 2, - sym_parameter, - sym_string, - [9565] = 4, - ACTIONS(835), 1, + ACTIONS(884), 1, sym_identifier, - STATE(254), 1, - aux_sym_asm_arrangement_args_repeat1, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(838), 2, - anon_sym_RPAREN, - anon_sym_DASH_GT, - [9580] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(886), 1, + anon_sym_RBRACE, + ACTIONS(888), 1, + anon_sym_DOT_DOT, + STATE(389), 1, + sym_destruct_bind, + [9670] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(840), 4, + ACTIONS(890), 4, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, anon_sym_RBRACE, - [9591] = 5, - ACTIONS(842), 1, + [9680] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(892), 1, anon_sym_LBRACE, - ACTIONS(844), 1, + ACTIONS(894), 1, anon_sym_with, - STATE(160), 1, + STATE(175), 1, sym_contract_body, - STATE(344), 1, + STATE(392), 1, sym_trait_list, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - [9608] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(846), 4, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - [9619] = 4, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(182), 1, - sym_block_statement, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(848), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [9634] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [9696] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(850), 4, + ACTIONS(896), 4, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, anon_sym_RBRACE, - [9645] = 4, - ACTIONS(35), 1, - anon_sym_ATinterface, - STATE(268), 1, - aux_sym_contract_attributes_repeat1, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(852), 2, - anon_sym_contract, - anon_sym_trait, - [9660] = 5, - ACTIONS(844), 1, - anon_sym_with, - ACTIONS(854), 1, - anon_sym_LBRACE, - STATE(165), 1, - sym_trait_body, - STATE(366), 1, - sym_trait_list, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [9706] = 5, + ACTIONS(3), 1, sym_comment, - [9677] = 5, - ACTIONS(844), 1, + ACTIONS(894), 1, anon_sym_with, - ACTIONS(854), 1, + ACTIONS(898), 1, anon_sym_LBRACE, - STATE(147), 1, + STATE(183), 1, sym_trait_body, - STATE(358), 1, + STATE(398), 1, sym_trait_list, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [9722] = 4, + ACTIONS(3), 1, sym_comment, - [9694] = 5, - ACTIONS(856), 1, + ACTIONS(900), 1, sym_identifier, - ACTIONS(858), 1, - anon_sym_RBRACE, - ACTIONS(860), 1, - anon_sym_DOT_DOT, - STATE(381), 1, - sym_destruct_bind, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + STATE(267), 1, + aux_sym_asm_arrangement_args_repeat1, + ACTIONS(902), 2, + anon_sym_RPAREN, + anon_sym_DASH_GT, + [9736] = 5, + ACTIONS(3), 1, sym_comment, - [9711] = 5, - ACTIONS(862), 1, + ACTIONS(904), 1, anon_sym_SEMI, - ACTIONS(864), 1, + ACTIONS(906), 1, anon_sym_COLON, - ACTIONS(866), 1, + ACTIONS(908), 1, anon_sym_LBRACE, - STATE(140), 1, + STATE(189), 1, sym_block_statement, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - [9728] = 4, - ACTIONS(868), 1, - sym_identifier, - STATE(254), 1, - aux_sym_asm_arrangement_args_repeat1, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [9752] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(870), 2, - anon_sym_RPAREN, - anon_sym_DASH_GT, - [9743] = 5, - ACTIONS(866), 1, + ACTIONS(908), 1, anon_sym_LBRACE, - ACTIONS(872), 1, + ACTIONS(910), 1, anon_sym_SEMI, - ACTIONS(874), 1, + ACTIONS(912), 1, anon_sym_COLON, - STATE(176), 1, + STATE(164), 1, sym_block_statement, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [9768] = 4, + ACTIONS(3), 1, sym_comment, - [9760] = 4, - ACTIONS(876), 1, - anon_sym_DQUOTE2, + ACTIONS(914), 1, + sym_identifier, STATE(267), 1, - aux_sym_string_repeat1, - ACTIONS(3), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(878), 2, - sym__non_quote_or_backslash_char, - sym_escape_sequence, - [9775] = 4, - ACTIONS(883), 1, - anon_sym_ATinterface, - STATE(268), 1, - aux_sym_contract_attributes_repeat1, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + aux_sym_asm_arrangement_args_repeat1, + ACTIONS(917), 2, + anon_sym_RPAREN, + anon_sym_DASH_GT, + [9782] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(881), 2, + ACTIONS(919), 4, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [9792] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(923), 1, + anon_sym_ATinterface, + STATE(269), 1, + aux_sym_contract_attributes_repeat1, + ACTIONS(921), 2, anon_sym_contract, anon_sym_trait, - [9790] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [9806] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_ATinterface, + STATE(269), 1, + aux_sym_contract_attributes_repeat1, + ACTIONS(926), 2, + anon_sym_contract, + anon_sym_trait, + [9820] = 4, + ACTIONS(928), 1, + anon_sym_DQUOTE2, + ACTIONS(932), 1, + sym_comment, + STATE(280), 1, + aux_sym_string_repeat1, + ACTIONS(930), 2, + sym__non_quote_or_backslash_char, + sym_escape_sequence, + [9834] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(886), 4, + ACTIONS(934), 4, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, anon_sym_RBRACE, - [9801] = 4, - ACTIONS(888), 1, + [9844] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym_LBRACE, + STATE(194), 1, + sym_block_statement, + ACTIONS(936), 2, + anon_sym_SEMI, + anon_sym_RBRACE, + [9858] = 4, + ACTIONS(932), 1, + sym_comment, + ACTIONS(938), 1, anon_sym_DQUOTE2, - STATE(275), 1, + STATE(271), 1, aux_sym_string_repeat1, - ACTIONS(3), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(890), 2, + ACTIONS(940), 2, sym__non_quote_or_backslash_char, sym_escape_sequence, - [9816] = 4, - ACTIONS(41), 1, + [9872] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(884), 1, + sym_identifier, + ACTIONS(942), 1, + anon_sym_RBRACE, + ACTIONS(944), 1, + anon_sym_DOT_DOT, + STATE(389), 1, + sym_destruct_bind, + [9888] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, anon_sym_LBRACE, - STATE(192), 1, + STATE(203), 1, sym_block_statement, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(892), 2, + ACTIONS(946), 2, anon_sym_SEMI, anon_sym_RBRACE, - [9831] = 4, - ACTIONS(41), 1, + [9902] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, anon_sym_LBRACE, - ACTIONS(894), 1, + ACTIONS(948), 1, anon_sym_if, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - STATE(102), 2, + STATE(108), 2, sym_block_statement, sym_if_statement, - [9846] = 5, - ACTIONS(842), 1, + [9916] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(892), 1, anon_sym_LBRACE, - ACTIONS(844), 1, + ACTIONS(894), 1, anon_sym_with, - STATE(144), 1, + STATE(152), 1, sym_contract_body, - STATE(330), 1, + STATE(352), 1, sym_trait_list, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [9932] = 5, + ACTIONS(3), 1, sym_comment, - [9863] = 5, - ACTIONS(856), 1, - sym_identifier, - ACTIONS(896), 1, - anon_sym_RBRACE, + ACTIONS(894), 1, + anon_sym_with, ACTIONS(898), 1, - anon_sym_DOT_DOT, - STATE(381), 1, - sym_destruct_bind, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + anon_sym_LBRACE, + STATE(158), 1, + sym_trait_body, + STATE(356), 1, + sym_trait_list, + [9948] = 4, + ACTIONS(932), 1, sym_comment, - [9880] = 4, - ACTIONS(900), 1, + ACTIONS(950), 1, anon_sym_DQUOTE2, - STATE(267), 1, + STATE(280), 1, aux_sym_string_repeat1, - ACTIONS(3), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(902), 2, + ACTIONS(952), 2, sym__non_quote_or_backslash_char, sym_escape_sequence, - [9895] = 4, - ACTIONS(904), 1, - anon_sym_LBRACE, - ACTIONS(906), 1, - anon_sym_COMMA, - STATE(276), 1, - aux_sym_trait_list_repeat1, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [9962] = 4, + ACTIONS(3), 1, sym_comment, - [9909] = 4, - ACTIONS(909), 1, - anon_sym_RPAREN, - ACTIONS(911), 1, + ACTIONS(955), 1, + anon_sym_RBRACE, + ACTIONS(957), 1, anon_sym_COMMA, - STATE(277), 1, - aux_sym_parameter_list_repeat1, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + STATE(281), 1, + aux_sym_destruct_bind_list_repeat1, + [9975] = 4, + ACTIONS(3), 1, sym_comment, - [9923] = 4, - ACTIONS(914), 1, + ACTIONS(960), 1, anon_sym_COLON, - ACTIONS(916), 1, + ACTIONS(962), 1, anon_sym_LBRACE, - STATE(157), 1, + STATE(187), 1, sym_asm_function_body, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [9988] = 4, + ACTIONS(3), 1, sym_comment, - [9937] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(851), 1, + anon_sym_DASH_GT, + ACTIONS(964), 1, + anon_sym_RPAREN, + STATE(448), 1, + sym_asm_arrangement_rets, + [10001] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(918), 3, - anon_sym_contract, - anon_sym_trait, - anon_sym_ATinterface, - [9947] = 4, - ACTIONS(305), 1, + ACTIONS(966), 1, anon_sym_RPAREN, - ACTIONS(920), 1, + ACTIONS(968), 1, anon_sym_COMMA, - STATE(295), 1, - aux_sym_argument_list_repeat1, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - [9961] = 4, - ACTIONS(922), 1, - sym_identifier, - ACTIONS(924), 1, - anon_sym_RBRACE, - STATE(328), 1, - sym_instance_argument, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + STATE(302), 1, + aux_sym_parameter_list_repeat1, + [10014] = 4, + ACTIONS(3), 1, sym_comment, - [9975] = 4, - ACTIONS(924), 1, + ACTIONS(970), 1, + anon_sym_SEMI, + ACTIONS(972), 1, anon_sym_RBRACE, - ACTIONS(926), 1, - anon_sym_COMMA, - STATE(298), 1, - aux_sym_instance_argument_list_repeat1, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + STATE(308), 1, + aux_sym_struct_body_repeat1, + [10027] = 4, + ACTIONS(3), 1, sym_comment, - [9989] = 4, - ACTIONS(928), 1, + ACTIONS(853), 1, sym_identifier, - ACTIONS(930), 1, - anon_sym_RBRACE, - STATE(326), 1, - sym_field, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(974), 1, + anon_sym_RPAREN, + STATE(351), 1, + sym_parameter, + [10040] = 4, + ACTIONS(3), 1, sym_comment, - [10003] = 4, - ACTIONS(932), 1, - anon_sym_SEMI, - ACTIONS(935), 1, - anon_sym_RBRACE, - STATE(284), 1, - aux_sym_struct_body_repeat1, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(861), 1, + anon_sym_as, + ACTIONS(976), 1, + anon_sym_GT, + STATE(437), 1, + sym_tlb_serialization, + [10053] = 4, + ACTIONS(3), 1, sym_comment, - [10017] = 4, - ACTIONS(937), 1, + ACTIONS(978), 1, anon_sym_RPAREN, - ACTIONS(939), 1, + ACTIONS(980), 1, anon_sym_COMMA, - STATE(293), 1, + STATE(288), 1, aux_sym_parameter_list_repeat1, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [10066] = 4, + ACTIONS(3), 1, sym_comment, - [10031] = 4, - ACTIONS(802), 1, - anon_sym_DASH_GT, - ACTIONS(941), 1, - anon_sym_RPAREN, - STATE(487), 1, - sym_asm_arrangement_rets, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(983), 1, + sym_identifier, + ACTIONS(985), 1, + anon_sym_RBRACE, + STATE(324), 1, + sym_instance_argument, + [10079] = 4, + ACTIONS(3), 1, sym_comment, - [10045] = 4, - ACTIONS(943), 1, + ACTIONS(987), 1, anon_sym_RPAREN, - ACTIONS(945), 1, + ACTIONS(989), 1, sym__decimal_integer, - STATE(287), 1, + STATE(290), 1, aux_sym_asm_arrangement_rets_repeat1, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - [10059] = 4, - ACTIONS(866), 1, - anon_sym_LBRACE, - ACTIONS(948), 1, - anon_sym_SEMI, - STATE(132), 1, - sym_block_statement, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [10092] = 3, + ACTIONS(3), 1, sym_comment, - [10073] = 4, - ACTIONS(916), 1, - anon_sym_LBRACE, - ACTIONS(950), 1, + ACTIONS(992), 1, anon_sym_COLON, - STATE(145), 1, - sym_asm_function_body, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(994), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [10103] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(996), 1, + anon_sym_RBRACE, + ACTIONS(998), 1, + anon_sym_COMMA, + STATE(310), 1, + aux_sym_destruct_bind_list_repeat1, + [10116] = 4, + ACTIONS(3), 1, sym_comment, - [10087] = 4, - ACTIONS(916), 1, + ACTIONS(962), 1, anon_sym_LBRACE, - ACTIONS(952), 1, + ACTIONS(1000), 1, anon_sym_COLON, - STATE(137), 1, + STATE(161), 1, sym_asm_function_body, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - [10101] = 4, - ACTIONS(823), 1, - sym_identifier, - ACTIONS(954), 1, - anon_sym_RPAREN, - STATE(396), 1, - sym_parameter, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [10129] = 4, + ACTIONS(3), 1, sym_comment, - [10115] = 4, - ACTIONS(856), 1, + ACTIONS(884), 1, sym_identifier, - ACTIONS(956), 1, + ACTIONS(1002), 1, anon_sym_RBRACE, - STATE(308), 1, + STATE(292), 1, sym_destruct_bind, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [10142] = 4, + ACTIONS(3), 1, sym_comment, - [10129] = 4, - ACTIONS(954), 1, - anon_sym_RPAREN, - ACTIONS(958), 1, + ACTIONS(1004), 1, + anon_sym_LBRACE, + ACTIONS(1006), 1, anon_sym_COMMA, - STATE(277), 1, - aux_sym_parameter_list_repeat1, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + STATE(295), 1, + aux_sym_trait_list_repeat1, + [10155] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(962), 1, + anon_sym_LBRACE, + ACTIONS(1009), 1, + anon_sym_COLON, + STATE(141), 1, + sym_asm_function_body, + [10168] = 4, + ACTIONS(3), 1, sym_comment, - [10143] = 4, - ACTIONS(866), 1, + ACTIONS(962), 1, anon_sym_LBRACE, - ACTIONS(960), 1, + ACTIONS(1011), 1, + anon_sym_COLON, + STATE(142), 1, + sym_asm_function_body, + [10181] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(908), 1, + anon_sym_LBRACE, + ACTIONS(1013), 1, anon_sym_SEMI, - STATE(139), 1, + STATE(154), 1, sym_block_statement, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [10194] = 4, + ACTIONS(3), 1, sym_comment, - [10157] = 4, - ACTIONS(962), 1, + ACTIONS(1015), 1, + anon_sym_LBRACE, + ACTIONS(1017), 1, + anon_sym_COMMA, + STATE(325), 1, + aux_sym_trait_list_repeat1, + [10207] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1019), 1, anon_sym_RPAREN, - ACTIONS(964), 1, + ACTIONS(1021), 1, anon_sym_COMMA, - STATE(295), 1, + STATE(300), 1, aux_sym_argument_list_repeat1, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - [10171] = 4, + [10220] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(21), 1, - aux_sym_asm_list_token1, - STATE(490), 1, - sym_func_identifier, - ACTIONS(967), 2, - sym__func_quoted_id, - sym__func_plain_id, - [10185] = 4, - ACTIONS(922), 1, - sym_identifier, - ACTIONS(969), 1, + ACTIONS(1026), 1, + anon_sym_EQ, + ACTIONS(1024), 2, + anon_sym_SEMI, anon_sym_RBRACE, - STATE(328), 1, - sym_instance_argument, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [10231] = 4, + ACTIONS(3), 1, sym_comment, - [10199] = 4, - ACTIONS(971), 1, - anon_sym_RBRACE, - ACTIONS(973), 1, + ACTIONS(1028), 1, + anon_sym_RPAREN, + ACTIONS(1030), 1, anon_sym_COMMA, - STATE(298), 1, - aux_sym_instance_argument_list_repeat1, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - [10213] = 3, - ACTIONS(978), 1, - anon_sym_EQ, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + STATE(288), 1, + aux_sym_parameter_list_repeat1, + [10244] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(976), 2, + ACTIONS(908), 1, + anon_sym_LBRACE, + ACTIONS(1032), 1, anon_sym_SEMI, - anon_sym_RBRACE, - [10225] = 3, - ACTIONS(982), 1, - anon_sym_EQ, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + STATE(144), 1, + sym_block_statement, + [10257] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(980), 2, + ACTIONS(1036), 1, + anon_sym_EQ, + ACTIONS(1034), 2, anon_sym_SEMI, anon_sym_RBRACE, - [10237] = 4, - ACTIONS(922), 1, + [10268] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(853), 1, sym_identifier, - ACTIONS(984), 1, - anon_sym_RBRACE, - STATE(305), 1, - sym_instance_argument, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1038), 1, + anon_sym_RPAREN, + STATE(284), 1, + sym_parameter, + [10281] = 4, + ACTIONS(3), 1, sym_comment, - [10251] = 4, - ACTIONS(986), 1, + ACTIONS(305), 1, anon_sym_RPAREN, - ACTIONS(988), 1, + ACTIONS(1040), 1, anon_sym_COMMA, - STATE(280), 1, + STATE(300), 1, aux_sym_argument_list_repeat1, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [10294] = 4, + ACTIONS(3), 1, sym_comment, - [10265] = 4, - ACTIONS(812), 1, + ACTIONS(861), 1, anon_sym_as, - ACTIONS(990), 1, + ACTIONS(1042), 1, anon_sym_GT, - STATE(433), 1, + STATE(462), 1, sym_tlb_serialization, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - [10279] = 3, - ACTIONS(992), 1, - anon_sym_COLON, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [10307] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(994), 2, + ACTIONS(1044), 1, + anon_sym_SEMI, + ACTIONS(1046), 1, anon_sym_RBRACE, - anon_sym_COMMA, - [10291] = 4, - ACTIONS(996), 1, + STATE(322), 1, + aux_sym_struct_body_repeat1, + [10320] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1048), 3, + anon_sym_contract, + anon_sym_trait, + anon_sym_ATinterface, + [10329] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(942), 1, anon_sym_RBRACE, - ACTIONS(998), 1, + ACTIONS(1050), 1, anon_sym_COMMA, - STATE(282), 1, - aux_sym_instance_argument_list_repeat1, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + STATE(281), 1, + aux_sym_destruct_bind_list_repeat1, + [10342] = 4, + ACTIONS(3), 1, sym_comment, - [10305] = 4, - ACTIONS(823), 1, + ACTIONS(1052), 1, sym_identifier, - ACTIONS(1000), 1, - anon_sym_RPAREN, + ACTIONS(1054), 1, + anon_sym_RBRACE, STATE(285), 1, - sym_parameter, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + sym_field, + [10355] = 3, + ACTIONS(932), 1, sym_comment, - [10319] = 3, - ACTIONS(1002), 1, - anon_sym_COLON, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + STATE(436), 1, + sym_func_identifier, + ACTIONS(1056), 2, + sym__func_quoted_id, + sym__func_plain_id, + [10366] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(1004), 2, + ACTIONS(983), 1, + sym_identifier, + ACTIONS(1058), 1, anon_sym_RBRACE, - anon_sym_COMMA, - [10331] = 4, - ACTIONS(1006), 1, + STATE(347), 1, + sym_instance_argument, + [10379] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(983), 1, + sym_identifier, + ACTIONS(1060), 1, + anon_sym_RBRACE, + STATE(347), 1, + sym_instance_argument, + [10392] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1060), 1, anon_sym_RBRACE, - ACTIONS(1008), 1, + ACTIONS(1062), 1, anon_sym_COMMA, - STATE(315), 1, - aux_sym_destruct_bind_list_repeat1, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + STATE(320), 1, + aux_sym_instance_argument_list_repeat1, + [10405] = 4, + ACTIONS(3), 1, sym_comment, - [10345] = 4, - ACTIONS(928), 1, + ACTIONS(861), 1, + anon_sym_as, + ACTIONS(1064), 1, + anon_sym_COMMA, + STATE(445), 1, + sym_tlb_serialization, + [10418] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1066), 1, + anon_sym_LPAREN, + ACTIONS(1068), 1, + sym__type_identifier, + STATE(470), 1, + sym_message_value, + [10431] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1052), 1, sym_identifier, - ACTIONS(1010), 1, + ACTIONS(1070), 1, anon_sym_RBRACE, - STATE(310), 1, + STATE(379), 1, sym_field, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [10444] = 4, + ACTIONS(3), 1, sym_comment, - [10359] = 4, - ACTIONS(1012), 1, - anon_sym_SEMI, - ACTIONS(1014), 1, + ACTIONS(1046), 1, anon_sym_RBRACE, - STATE(312), 1, - aux_sym_struct_body_repeat1, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - [10373] = 4, - ACTIONS(928), 1, + ACTIONS(1052), 1, sym_identifier, - ACTIONS(1016), 1, - anon_sym_RBRACE, - STATE(326), 1, + STATE(379), 1, sym_field, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [10457] = 4, + ACTIONS(3), 1, sym_comment, - [10387] = 4, - ACTIONS(1016), 1, + ACTIONS(1072), 1, anon_sym_RBRACE, - ACTIONS(1018), 1, - anon_sym_SEMI, - STATE(284), 1, - aux_sym_struct_body_repeat1, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1074), 1, + anon_sym_COMMA, + STATE(320), 1, + aux_sym_instance_argument_list_repeat1, + [10470] = 4, + ACTIONS(3), 1, sym_comment, - [10401] = 3, - ACTIONS(1022), 1, - anon_sym_EQ, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1077), 1, + anon_sym_RPAREN, + ACTIONS(1079), 1, + anon_sym_COMMA, + STATE(306), 1, + aux_sym_argument_list_repeat1, + [10483] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(1020), 2, + ACTIONS(1081), 1, anon_sym_SEMI, + ACTIONS(1084), 1, anon_sym_RBRACE, - [10413] = 4, - ACTIONS(812), 1, - anon_sym_as, - ACTIONS(1024), 1, - anon_sym_GT, - STATE(461), 1, - sym_tlb_serialization, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + STATE(322), 1, + aux_sym_struct_body_repeat1, + [10496] = 3, + ACTIONS(3), 1, sym_comment, - [10427] = 4, - ACTIONS(896), 1, + ACTIONS(1086), 1, + anon_sym_COLON, + ACTIONS(1088), 2, anon_sym_RBRACE, - ACTIONS(1026), 1, anon_sym_COMMA, - STATE(319), 1, - aux_sym_destruct_bind_list_repeat1, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [10507] = 4, + ACTIONS(3), 1, sym_comment, - [10441] = 4, - ACTIONS(1028), 1, - anon_sym_LBRACE, - ACTIONS(1030), 1, + ACTIONS(1090), 1, + anon_sym_RBRACE, + ACTIONS(1092), 1, anon_sym_COMMA, - STATE(276), 1, - aux_sym_trait_list_repeat1, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + STATE(315), 1, + aux_sym_instance_argument_list_repeat1, + [10520] = 4, + ACTIONS(3), 1, sym_comment, - [10455] = 4, - ACTIONS(812), 1, - anon_sym_as, - ACTIONS(1032), 1, + ACTIONS(1094), 1, + anon_sym_LBRACE, + ACTIONS(1096), 1, anon_sym_COMMA, - STATE(455), 1, - sym_tlb_serialization, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + STATE(295), 1, + aux_sym_trait_list_repeat1, + [10533] = 4, + ACTIONS(3), 1, sym_comment, - [10469] = 4, - ACTIONS(1034), 1, + ACTIONS(1098), 1, anon_sym_RPAREN, - ACTIONS(1036), 1, + ACTIONS(1100), 1, sym__decimal_integer, - STATE(287), 1, + STATE(290), 1, aux_sym_asm_arrangement_rets_repeat1, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [10546] = 3, + ACTIONS(3), 1, sym_comment, - [10483] = 4, - ACTIONS(1038), 1, + ACTIONS(1104), 1, + anon_sym_EQ, + ACTIONS(1102), 2, + anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(1040), 1, - anon_sym_COMMA, - STATE(319), 1, - aux_sym_destruct_bind_list_repeat1, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [10557] = 4, + ACTIONS(3), 1, sym_comment, - [10497] = 4, - ACTIONS(1043), 1, - anon_sym_LBRACE, - ACTIONS(1045), 1, + ACTIONS(853), 1, + sym_identifier, + ACTIONS(1028), 1, + anon_sym_RPAREN, + STATE(351), 1, + sym_parameter, + [10570] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1106), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(316), 1, - aux_sym_trait_list_repeat1, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [10578] = 3, + ACTIONS(3), 1, sym_comment, - [10511] = 4, - ACTIONS(916), 1, - anon_sym_LBRACE, - ACTIONS(1047), 1, + ACTIONS(1108), 1, + sym__decimal_integer, + STATE(326), 1, + aux_sym_asm_arrangement_rets_repeat1, + [10588] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1110), 1, + anon_sym_SEMI, + ACTIONS(1112), 1, anon_sym_COLON, - STATE(136), 1, - sym_asm_function_body, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [10598] = 3, + ACTIONS(3), 1, sym_comment, - [10525] = 4, - ACTIONS(1049), 1, + ACTIONS(1114), 1, anon_sym_LPAREN, - ACTIONS(1051), 1, - sym__type_identifier, - STATE(460), 1, - sym_message_value, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - [10539] = 4, - ACTIONS(823), 1, - sym_identifier, - ACTIONS(1053), 1, - anon_sym_RPAREN, - STATE(396), 1, - sym_parameter, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + STATE(362), 1, + sym_parameter_list, + [10608] = 3, + ACTIONS(3), 1, sym_comment, - [10553] = 3, - ACTIONS(1055), 1, + ACTIONS(1114), 1, anon_sym_LPAREN, - STATE(246), 1, + STATE(364), 1, sym_parameter_list, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - [10564] = 3, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(89), 1, - sym_block_statement, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [10618] = 3, + ACTIONS(3), 1, sym_comment, - [10575] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1116), 1, + anon_sym_COLON, + STATE(384), 1, + sym__field_after_id, + [10628] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(935), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [10584] = 3, - ACTIONS(1057), 1, + ACTIONS(962), 1, anon_sym_LBRACE, - STATE(406), 1, - sym_destruct_bind_list, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - [10595] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + STATE(140), 1, + sym_asm_function_body, + [10638] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(971), 2, + ACTIONS(1118), 2, + anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_COMMA, - [10604] = 3, - ACTIONS(1055), 1, - anon_sym_LPAREN, - STATE(289), 1, - sym_parameter_list, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [10646] = 3, + ACTIONS(3), 1, sym_comment, - [10615] = 3, - ACTIONS(842), 1, + ACTIONS(962), 1, anon_sym_LBRACE, - STATE(178), 1, - sym_contract_body, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + STATE(157), 1, + sym_asm_function_body, + [10656] = 3, + ACTIONS(3), 1, sym_comment, - [10626] = 3, - ACTIONS(41), 1, + ACTIONS(1120), 1, anon_sym_LBRACE, - STATE(186), 1, - sym_block_statement, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + STATE(169), 1, + sym_struct_body, + [10666] = 3, + ACTIONS(3), 1, sym_comment, - [10637] = 3, - ACTIONS(75), 1, + ACTIONS(853), 1, + sym_identifier, + STATE(351), 1, + sym_parameter, + [10676] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(216), 1, anon_sym_RBRACE, - ACTIONS(1059), 1, + ACTIONS(1122), 1, anon_sym_SEMI, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [10686] = 3, + ACTIONS(3), 1, sym_comment, - [10648] = 3, - ACTIONS(928), 1, - sym_identifier, - STATE(326), 1, - sym_field, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(43), 1, + anon_sym_DQUOTE, + STATE(489), 1, + sym_string, + [10696] = 3, + ACTIONS(3), 1, sym_comment, - [10659] = 3, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(187), 1, - sym_block_statement, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1122), 1, + anon_sym_SEMI, + ACTIONS(1124), 1, + anon_sym_RBRACE, + [10706] = 3, + ACTIONS(3), 1, sym_comment, - [10670] = 3, - ACTIONS(1055), 1, + ACTIONS(1114), 1, anon_sym_LPAREN, - STATE(249), 1, + STATE(293), 1, sym_parameter_list, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [10716] = 3, + ACTIONS(3), 1, sym_comment, - [10681] = 3, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(188), 1, - sym_block_statement, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(266), 1, + anon_sym_RBRACE, + ACTIONS(1126), 1, + anon_sym_SEMI, + [10726] = 2, + ACTIONS(3), 1, sym_comment, - [10692] = 3, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(189), 1, - sym_block_statement, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1019), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [10734] = 3, + ACTIONS(3), 1, sym_comment, - [10703] = 3, - ACTIONS(41), 1, + ACTIONS(1094), 1, anon_sym_LBRACE, - STATE(190), 1, - sym_block_statement, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1128), 1, + sym_identifier, + [10744] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1072), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [10752] = 3, + ACTIONS(3), 1, sym_comment, - [10714] = 3, - ACTIONS(1055), 1, + ACTIONS(139), 1, anon_sym_LPAREN, - STATE(266), 1, + STATE(70), 1, + sym_argument_list, + [10762] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1130), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [10770] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1114), 1, + anon_sym_LPAREN, + STATE(255), 1, sym_parameter_list, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [10780] = 2, + ACTIONS(3), 1, sym_comment, - [10725] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(978), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [10788] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(904), 2, + ACTIONS(892), 1, anon_sym_LBRACE, - anon_sym_COMMA, - [10734] = 3, - ACTIONS(1061), 1, + STATE(190), 1, + sym_contract_body, + [10798] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1052), 1, sym_identifier, - ACTIONS(1063), 1, - anon_sym_LBRACE, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + STATE(379), 1, + sym_field, + [10808] = 3, + ACTIONS(3), 1, sym_comment, - [10745] = 3, - ACTIONS(1065), 1, + ACTIONS(1120), 1, anon_sym_LBRACE, - STATE(146), 1, + STATE(171), 1, sym_struct_body, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [10818] = 3, + ACTIONS(3), 1, sym_comment, - [10756] = 3, - ACTIONS(1059), 1, + ACTIONS(1126), 1, anon_sym_SEMI, - ACTIONS(1067), 1, + ACTIONS(1132), 1, anon_sym_RBRACE, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [10828] = 3, + ACTIONS(3), 1, sym_comment, - [10767] = 3, - ACTIONS(842), 1, + ACTIONS(898), 1, anon_sym_LBRACE, - STATE(142), 1, - sym_contract_body, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + STATE(156), 1, + sym_trait_body, + [10838] = 3, + ACTIONS(3), 1, sym_comment, - [10778] = 3, - ACTIONS(1069), 1, - anon_sym_SEMI, - ACTIONS(1071), 1, - anon_sym_COLON, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(39), 1, + anon_sym_LBRACE, + STATE(200), 1, + sym_block_statement, + [10848] = 3, + ACTIONS(3), 1, sym_comment, - [10789] = 3, - ACTIONS(1073), 1, - anon_sym_contract, - ACTIONS(1075), 1, - anon_sym_trait, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(39), 1, + anon_sym_LBRACE, + STATE(205), 1, + sym_block_statement, + [10858] = 3, + ACTIONS(3), 1, sym_comment, - [10800] = 3, - ACTIONS(916), 1, + ACTIONS(39), 1, anon_sym_LBRACE, - STATE(163), 1, - sym_asm_function_body, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + STATE(199), 1, + sym_block_statement, + [10868] = 3, + ACTIONS(3), 1, sym_comment, - [10811] = 3, - ACTIONS(45), 1, - anon_sym_DQUOTE, - STATE(493), 1, - sym_string, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1134), 1, + anon_sym_LBRACE, + STATE(458), 1, + sym_destruct_bind_list, + [10878] = 3, + ACTIONS(3), 1, sym_comment, - [10822] = 3, - ACTIONS(1055), 1, - anon_sym_LPAREN, - STATE(290), 1, - sym_parameter_list, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1136), 1, + anon_sym_COLON, + ACTIONS(1138), 1, + anon_sym_EQ, + [10888] = 3, + ACTIONS(3), 1, sym_comment, - [10833] = 3, - ACTIONS(1077), 1, + ACTIONS(1140), 1, anon_sym_SEMI, - ACTIONS(1079), 1, + ACTIONS(1142), 1, anon_sym_COLON, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [10898] = 3, + ACTIONS(3), 1, sym_comment, - [10844] = 3, - ACTIONS(1055), 1, - anon_sym_LPAREN, - STATE(278), 1, - sym_parameter_list, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(962), 1, + anon_sym_LBRACE, + STATE(167), 1, + sym_asm_function_body, + [10908] = 3, + ACTIONS(3), 1, sym_comment, - [10855] = 3, - ACTIONS(41), 1, + ACTIONS(39), 1, anon_sym_LBRACE, - STATE(94), 1, + STATE(196), 1, sym_block_statement, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [10918] = 3, + ACTIONS(3), 1, sym_comment, - [10866] = 3, - ACTIONS(41), 1, + ACTIONS(43), 1, + anon_sym_DQUOTE, + STATE(435), 1, + sym_string, + [10928] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, anon_sym_LBRACE, - STATE(101), 1, + STATE(92), 1, sym_block_statement, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [10938] = 3, + ACTIONS(3), 1, sym_comment, - [10877] = 3, - ACTIONS(41), 1, + ACTIONS(39), 1, anon_sym_LBRACE, - STATE(99), 1, + STATE(103), 1, sym_block_statement, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - [10888] = 3, - ACTIONS(1055), 1, - anon_sym_LPAREN, - STATE(345), 1, - sym_parameter_list, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - [10899] = 3, - ACTIONS(922), 1, - sym_identifier, - STATE(328), 1, - sym_instance_argument, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - [10910] = 3, - ACTIONS(1081), 1, - anon_sym_COLON, - STATE(359), 1, - sym__field_after_id, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [10948] = 3, + ACTIONS(3), 1, sym_comment, - [10921] = 3, - ACTIONS(854), 1, + ACTIONS(39), 1, anon_sym_LBRACE, - STATE(179), 1, - sym_trait_body, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - [10932] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + STATE(105), 1, + sym_block_statement, + [10958] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1083), 2, + ACTIONS(1144), 1, anon_sym_SEMI, + ACTIONS(1146), 1, anon_sym_RBRACE, - [10941] = 3, - ACTIONS(1055), 1, + [10968] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1114), 1, anon_sym_LPAREN, - STATE(321), 1, + STATE(282), 1, sym_parameter_list, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [10978] = 3, + ACTIONS(3), 1, sym_comment, - [10952] = 3, - ACTIONS(1085), 1, + ACTIONS(983), 1, sym_identifier, - ACTIONS(1087), 1, - anon_sym_LBRACE, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - [10963] = 3, - ACTIONS(916), 1, - anon_sym_LBRACE, - STATE(154), 1, - sym_asm_function_body, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - [10974] = 3, - ACTIONS(866), 1, - anon_sym_LBRACE, - STATE(458), 1, - sym_block_statement, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + STATE(347), 1, + sym_instance_argument, + [10988] = 3, + ACTIONS(3), 1, sym_comment, - [10985] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1144), 1, + anon_sym_SEMI, + ACTIONS(1148), 1, + anon_sym_RBRACE, + [10998] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(962), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [10994] = 3, - ACTIONS(1089), 1, + ACTIONS(1150), 1, anon_sym_SEMI, - ACTIONS(1091), 1, + ACTIONS(1152), 1, anon_sym_EQ, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - [11005] = 3, - ACTIONS(854), 1, - anon_sym_LBRACE, - STATE(158), 1, - sym_trait_body, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [11008] = 3, + ACTIONS(3), 1, sym_comment, - [11016] = 3, - ACTIONS(823), 1, + ACTIONS(853), 1, sym_identifier, - STATE(491), 1, + STATE(469), 1, sym_parameter, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [11018] = 3, + ACTIONS(3), 1, sym_comment, - [11027] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1114), 1, + anon_sym_LPAREN, + STATE(296), 1, + sym_parameter_list, + [11028] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1093), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [11036] = 3, - ACTIONS(1095), 1, + ACTIONS(1114), 1, + anon_sym_LPAREN, + STATE(297), 1, + sym_parameter_list, + [11038] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1154), 1, + sym_identifier, + ACTIONS(1156), 1, + sym__type_identifier, + [11048] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1158), 1, + anon_sym_contract, + ACTIONS(1160), 1, + anon_sym_trait, + [11058] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1084), 2, anon_sym_SEMI, - ACTIONS(1097), 1, anon_sym_RBRACE, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [11066] = 3, + ACTIONS(3), 1, sym_comment, - [11047] = 3, - ACTIONS(916), 1, + ACTIONS(908), 1, anon_sym_LBRACE, - STATE(155), 1, - sym_asm_function_body, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + STATE(408), 1, + sym_block_statement, + [11076] = 3, + ACTIONS(3), 1, sym_comment, - [11058] = 3, - ACTIONS(1028), 1, + ACTIONS(39), 1, anon_sym_LBRACE, - ACTIONS(1061), 1, - sym_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + STATE(84), 1, + sym_block_statement, + [11086] = 2, + ACTIONS(3), 1, sym_comment, - [11069] = 3, - ACTIONS(1099), 1, - anon_sym_COLON, - ACTIONS(1101), 1, - anon_sym_EQ, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1162), 2, + anon_sym_SEMI, + anon_sym_RBRACE, + [11094] = 3, + ACTIONS(3), 1, sym_comment, - [11080] = 3, - ACTIONS(1055), 1, - anon_sym_LPAREN, - STATE(400), 1, - sym_parameter_list, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(73), 1, + anon_sym_RBRACE, + ACTIONS(1144), 1, + anon_sym_SEMI, + [11104] = 2, + ACTIONS(3), 1, sym_comment, - [11091] = 3, - ACTIONS(1103), 1, + ACTIONS(1164), 2, anon_sym_SEMI, - ACTIONS(1105), 1, anon_sym_RBRACE, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [11112] = 3, + ACTIONS(3), 1, sym_comment, - [11102] = 3, - ACTIONS(1055), 1, + ACTIONS(1120), 1, + anon_sym_LBRACE, + STATE(170), 1, + sym_struct_body, + [11122] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1114), 1, anon_sym_LPAREN, - STATE(264), 1, + STATE(331), 1, sym_parameter_list, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - [11113] = 3, - ACTIONS(1107), 1, - anon_sym_SEMI, - ACTIONS(1109), 1, - anon_sym_EQ, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [11132] = 3, + ACTIONS(3), 1, sym_comment, - [11124] = 3, - ACTIONS(1081), 1, + ACTIONS(1116), 1, anon_sym_COLON, - STATE(368), 1, + STATE(382), 1, sym__field_after_id, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - [11135] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(1111), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [11144] = 3, - ACTIONS(823), 1, - sym_identifier, - STATE(396), 1, - sym_parameter, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - [11155] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [11142] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1113), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [11164] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(39), 1, + anon_sym_LBRACE, + STATE(197), 1, + sym_block_statement, + [11152] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(1038), 2, + ACTIONS(955), 2, anon_sym_RBRACE, anon_sym_COMMA, - [11173] = 3, - ACTIONS(45), 1, - anon_sym_DQUOTE, - STATE(464), 1, - sym_string, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - [11184] = 3, - ACTIONS(270), 1, - anon_sym_RBRACE, - ACTIONS(1103), 1, - anon_sym_SEMI, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [11160] = 3, + ACTIONS(3), 1, sym_comment, - [11195] = 3, - ACTIONS(1055), 1, - anon_sym_LPAREN, - STATE(350), 1, - sym_parameter_list, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(39), 1, + anon_sym_LBRACE, + STATE(198), 1, + sym_block_statement, + [11170] = 3, + ACTIONS(3), 1, sym_comment, - [11206] = 3, - ACTIONS(916), 1, + ACTIONS(1166), 1, + sym_identifier, + ACTIONS(1168), 1, anon_sym_LBRACE, - STATE(134), 1, - sym_asm_function_body, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [11180] = 3, + ACTIONS(3), 1, sym_comment, - [11217] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(892), 1, + anon_sym_LBRACE, + STATE(146), 1, + sym_contract_body, + [11190] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 2, + ACTIONS(1170), 2, anon_sym_SEMI, anon_sym_RBRACE, - [11226] = 3, - ACTIONS(41), 1, + [11198] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, anon_sym_LBRACE, - STATE(96), 1, + STATE(107), 1, sym_block_statement, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [11208] = 3, + ACTIONS(3), 1, sym_comment, - [11237] = 3, - ACTIONS(232), 1, - anon_sym_RBRACE, - ACTIONS(1095), 1, - anon_sym_SEMI, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1114), 1, + anon_sym_LPAREN, + STATE(257), 1, + sym_parameter_list, + [11218] = 3, + ACTIONS(3), 1, sym_comment, - [11248] = 3, - ACTIONS(856), 1, + ACTIONS(962), 1, + anon_sym_LBRACE, + STATE(173), 1, + sym_asm_function_body, + [11228] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(884), 1, sym_identifier, - STATE(381), 1, + STATE(389), 1, sym_destruct_bind, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [11238] = 3, + ACTIONS(3), 1, sym_comment, - [11259] = 3, - ACTIONS(1065), 1, + ACTIONS(898), 1, anon_sym_LBRACE, - STATE(141), 1, - sym_struct_body, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - [11270] = 3, - ACTIONS(141), 1, - anon_sym_LPAREN, - STATE(72), 1, - sym_argument_list, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + STATE(149), 1, + sym_trait_body, + [11248] = 3, + ACTIONS(3), 1, sym_comment, - [11281] = 3, - ACTIONS(41), 1, + ACTIONS(39), 1, anon_sym_LBRACE, - STATE(95), 1, + STATE(106), 1, sym_block_statement, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - [11292] = 3, - ACTIONS(1065), 1, - anon_sym_LBRACE, - STATE(166), 1, - sym_struct_body, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [11258] = 3, + ACTIONS(3), 1, sym_comment, - [11303] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1114), 1, + anon_sym_LPAREN, + STATE(265), 1, + sym_parameter_list, + [11268] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(1117), 2, - anon_sym_RPAREN, + ACTIONS(1004), 2, + anon_sym_LBRACE, anon_sym_COMMA, - [11312] = 3, - ACTIONS(1119), 1, + [11276] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1128), 1, sym_identifier, - ACTIONS(1121), 1, - sym__type_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1172), 1, + anon_sym_LBRACE, + [11286] = 3, + ACTIONS(3), 1, sym_comment, - [11323] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1114), 1, + anon_sym_LPAREN, + STATE(266), 1, + sym_parameter_list, + [11296] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(909), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [11332] = 3, - ACTIONS(135), 1, + ACTIONS(131), 1, anon_sym_RBRACE, - ACTIONS(1059), 1, + ACTIONS(1144), 1, anon_sym_SEMI, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - [11343] = 3, - ACTIONS(1123), 1, - sym__decimal_integer, - STATE(318), 1, - aux_sym_asm_arrangement_rets_repeat1, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [11306] = 3, + ACTIONS(3), 1, sym_comment, - [11354] = 3, - ACTIONS(1059), 1, + ACTIONS(1174), 1, anon_sym_SEMI, - ACTIONS(1125), 1, - anon_sym_RBRACE, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - [11365] = 3, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(193), 1, - sym_block_statement, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - [11376] = 2, - ACTIONS(1127), 1, - anon_sym_RPAREN, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1176), 1, + anon_sym_EQ, + [11316] = 2, + ACTIONS(3), 1, sym_comment, - [11384] = 2, - ACTIONS(1129), 1, - anon_sym_RPAREN, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1178), 1, + anon_sym_LPAREN, + [11323] = 2, + ACTIONS(3), 1, sym_comment, - [11392] = 2, - ACTIONS(1131), 1, - anon_sym_COLON, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1180), 1, + anon_sym_LPAREN, + [11330] = 2, + ACTIONS(3), 1, sym_comment, - [11400] = 2, - ACTIONS(1133), 1, - sym_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1182), 1, + anon_sym_until, + [11337] = 2, + ACTIONS(3), 1, sym_comment, - [11408] = 2, - ACTIONS(1135), 1, + ACTIONS(1184), 1, anon_sym_EQ, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [11344] = 2, + ACTIONS(3), 1, sym_comment, - [11416] = 2, - ACTIONS(1137), 1, - anon_sym_EQ, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1186), 1, + ts_builtin_sym_end, + [11351] = 2, + ACTIONS(3), 1, sym_comment, - [11424] = 2, - ACTIONS(1139), 1, - anon_sym_native, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1188), 1, + sym_identifier, + [11358] = 2, + ACTIONS(3), 1, sym_comment, - [11432] = 2, - ACTIONS(1141), 1, - sym__type_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1190), 1, + anon_sym_COMMA, + [11365] = 2, + ACTIONS(3), 1, sym_comment, - [11440] = 2, - ACTIONS(1143), 1, + ACTIONS(1192), 1, anon_sym_EQ, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - [11448] = 2, - ACTIONS(1145), 1, - sym_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [11372] = 2, + ACTIONS(3), 1, sym_comment, - [11456] = 2, - ACTIONS(1095), 1, - anon_sym_SEMI, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1194), 1, + anon_sym_DQUOTE2, + [11379] = 2, + ACTIONS(3), 1, sym_comment, - [11464] = 2, - ACTIONS(1147), 1, + ACTIONS(1196), 1, sym_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [11386] = 2, + ACTIONS(3), 1, sym_comment, - [11472] = 2, - ACTIONS(1149), 1, - sym__type_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1198), 1, + anon_sym_fun, + [11393] = 2, + ACTIONS(3), 1, sym_comment, - [11480] = 2, - ACTIONS(1151), 1, - anon_sym_LPAREN, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1144), 1, + anon_sym_SEMI, + [11400] = 2, + ACTIONS(3), 1, sym_comment, - [11488] = 2, - ACTIONS(1153), 1, + ACTIONS(1200), 1, sym_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [11407] = 2, + ACTIONS(3), 1, sym_comment, - [11496] = 2, - ACTIONS(1155), 1, + ACTIONS(1202), 1, sym_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [11414] = 2, + ACTIONS(3), 1, sym_comment, - [11504] = 2, - ACTIONS(1157), 1, - anon_sym_LT, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1204), 1, + sym_identifier, + [11421] = 2, + ACTIONS(3), 1, sym_comment, - [11512] = 2, - ACTIONS(1159), 1, - anon_sym_LT, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1206), 1, + anon_sym_LPAREN, + [11428] = 2, + ACTIONS(3), 1, sym_comment, - [11520] = 2, - ACTIONS(1161), 1, - sym_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1208), 1, + anon_sym_const, + [11435] = 2, + ACTIONS(3), 1, sym_comment, - [11528] = 2, - ACTIONS(1163), 1, + ACTIONS(1210), 1, anon_sym_LPAREN, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [11442] = 2, + ACTIONS(3), 1, sym_comment, - [11536] = 2, - ACTIONS(1165), 1, + ACTIONS(1212), 1, sym_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [11449] = 2, + ACTIONS(3), 1, sym_comment, - [11544] = 2, - ACTIONS(1167), 1, - anon_sym_COLON, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1214), 1, + sym_identifier, + [11456] = 2, + ACTIONS(3), 1, sym_comment, - [11552] = 2, - ACTIONS(1169), 1, - anon_sym_COMMA, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1216), 1, + sym_identifier, + [11463] = 2, + ACTIONS(3), 1, sym_comment, - [11560] = 2, - ACTIONS(1171), 1, - anon_sym_LPAREN, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1218), 1, + sym__type_identifier, + [11470] = 2, + ACTIONS(3), 1, sym_comment, - [11568] = 2, - ACTIONS(1173), 1, - anon_sym_LPAREN, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1220), 1, + anon_sym_fun, + [11477] = 2, + ACTIONS(3), 1, sym_comment, - [11576] = 2, - ACTIONS(1175), 1, + ACTIONS(1222), 1, sym__type_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [11484] = 2, + ACTIONS(3), 1, sym_comment, - [11584] = 2, - ACTIONS(1177), 1, - anon_sym_LPAREN, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1224), 1, + anon_sym_const, + [11491] = 2, + ACTIONS(3), 1, sym_comment, - [11592] = 2, - ACTIONS(1059), 1, - anon_sym_SEMI, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1226), 1, + anon_sym_RPAREN, + [11498] = 2, + ACTIONS(3), 1, sym_comment, - [11600] = 2, - ACTIONS(1179), 1, - anon_sym_COLON, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1228), 1, + sym_identifier, + [11505] = 2, + ACTIONS(3), 1, sym_comment, - [11608] = 2, - ACTIONS(1181), 1, - sym__type_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1230), 1, + sym_identifier, + [11512] = 2, + ACTIONS(3), 1, sym_comment, - [11616] = 2, - ACTIONS(1183), 1, - anon_sym_COLON, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1232), 1, + sym_identifier, + [11519] = 2, + ACTIONS(3), 1, sym_comment, - [11624] = 2, - ACTIONS(1103), 1, + ACTIONS(1234), 1, anon_sym_SEMI, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [11526] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1236), 1, + anon_sym_RPAREN, + [11533] = 2, + ACTIONS(3), 1, sym_comment, - [11632] = 2, - ACTIONS(1185), 1, + ACTIONS(1238), 1, anon_sym_GT, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [11540] = 2, + ACTIONS(3), 1, sym_comment, - [11640] = 2, - ACTIONS(1187), 1, + ACTIONS(1240), 1, sym_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [11547] = 2, + ACTIONS(3), 1, sym_comment, - [11648] = 2, - ACTIONS(1189), 1, + ACTIONS(1242), 1, anon_sym_SEMI, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [11554] = 2, + ACTIONS(3), 1, sym_comment, - [11656] = 2, - ACTIONS(1191), 1, + ACTIONS(1244), 1, anon_sym_LPAREN, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [11561] = 2, + ACTIONS(3), 1, sym_comment, - [11664] = 2, - ACTIONS(1193), 1, - sym_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1246), 1, + anon_sym_GT, + [11568] = 2, + ACTIONS(3), 1, sym_comment, - [11672] = 2, - ACTIONS(1195), 1, - sym_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1248), 1, + anon_sym_LPAREN, + [11575] = 2, + ACTIONS(3), 1, sym_comment, - [11680] = 2, - ACTIONS(1197), 1, + ACTIONS(1250), 1, sym_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [11582] = 2, + ACTIONS(3), 1, sym_comment, - [11688] = 2, - ACTIONS(1199), 1, - sym_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1252), 1, + anon_sym_EQ, + [11589] = 2, + ACTIONS(3), 1, sym_comment, - [11696] = 2, - ACTIONS(1201), 1, - sym_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1254), 1, + anon_sym_COMMA, + [11596] = 2, + ACTIONS(3), 1, sym_comment, - [11704] = 2, - ACTIONS(1203), 1, + ACTIONS(1256), 1, sym_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [11603] = 2, + ACTIONS(3), 1, sym_comment, - [11712] = 2, - ACTIONS(1205), 1, - sym_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1258), 1, + anon_sym_LPAREN, + [11610] = 2, + ACTIONS(3), 1, sym_comment, - [11720] = 2, - ACTIONS(1207), 1, - anon_sym_EQ, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1260), 1, + anon_sym_RPAREN, + [11617] = 2, + ACTIONS(3), 1, sym_comment, - [11728] = 2, - ACTIONS(1209), 1, + ACTIONS(1262), 1, sym_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - [11736] = 2, - ACTIONS(1211), 1, - sym__type_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - [11744] = 2, - ACTIONS(1213), 1, - anon_sym_fun, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - [11752] = 2, - ACTIONS(1215), 1, - sym__type_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - [11760] = 2, - ACTIONS(1217), 1, - anon_sym_LPAREN, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - [11768] = 2, - ACTIONS(1219), 1, - anon_sym_LPAREN, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [11624] = 2, + ACTIONS(3), 1, sym_comment, - [11776] = 2, - ACTIONS(1221), 1, + ACTIONS(1264), 1, anon_sym_LPAREN, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [11631] = 2, + ACTIONS(3), 1, sym_comment, - [11784] = 2, - ACTIONS(1223), 1, + ACTIONS(1266), 1, sym_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [11638] = 2, + ACTIONS(3), 1, sym_comment, - [11792] = 2, - ACTIONS(1225), 1, + ACTIONS(1268), 1, + anon_sym_SEMI, + [11645] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1270), 1, anon_sym_RPAREN, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [11652] = 2, + ACTIONS(3), 1, sym_comment, - [11800] = 2, - ACTIONS(1227), 1, - anon_sym_in, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1126), 1, + anon_sym_SEMI, + [11659] = 2, + ACTIONS(3), 1, sym_comment, - [11808] = 2, - ACTIONS(1229), 1, - anon_sym_COMMA, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1272), 1, + sym_tvm_instruction, + [11666] = 2, + ACTIONS(3), 1, sym_comment, - [11816] = 2, - ACTIONS(1231), 1, - anon_sym_LPAREN, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1274), 1, + anon_sym_COLON, + [11673] = 2, + ACTIONS(3), 1, sym_comment, - [11824] = 2, - ACTIONS(1233), 1, - anon_sym_LPAREN, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1276), 1, + sym_identifier, + [11680] = 2, + ACTIONS(3), 1, sym_comment, - [11832] = 2, - ACTIONS(1235), 1, - anon_sym_until, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1278), 1, + anon_sym_EQ, + [11687] = 2, + ACTIONS(3), 1, sym_comment, - [11840] = 2, - ACTIONS(1237), 1, - anon_sym_const, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1280), 1, + anon_sym_COLON, + [11694] = 2, + ACTIONS(3), 1, sym_comment, - [11848] = 2, - ACTIONS(1239), 1, - sym__type_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1282), 1, + sym_identifier, + [11701] = 2, + ACTIONS(3), 1, sym_comment, - [11856] = 2, - ACTIONS(1241), 1, - anon_sym_GT, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1284), 1, + anon_sym_RPAREN, + [11708] = 2, + ACTIONS(3), 1, sym_comment, - [11864] = 2, - ACTIONS(1243), 1, + ACTIONS(1286), 1, anon_sym_GT, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [11715] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1288), 1, + anon_sym_fun, + [11722] = 2, + ACTIONS(3), 1, sym_comment, - [11872] = 2, - ACTIONS(1245), 1, + ACTIONS(1290), 1, anon_sym_SEMI, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [11729] = 2, + ACTIONS(3), 1, sym_comment, - [11880] = 2, - ACTIONS(1247), 1, + ACTIONS(1292), 1, anon_sym_RPAREN, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - [11888] = 2, - ACTIONS(1249), 1, - sym_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [11736] = 2, + ACTIONS(3), 1, sym_comment, - [11896] = 2, - ACTIONS(1251), 1, + ACTIONS(1294), 1, anon_sym_EQ, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [11743] = 2, + ACTIONS(3), 1, sym_comment, - [11904] = 2, - ACTIONS(858), 1, + ACTIONS(886), 1, anon_sym_RBRACE, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [11750] = 2, + ACTIONS(3), 1, sym_comment, - [11912] = 2, - ACTIONS(1253), 1, - sym_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1296), 1, + sym__type_identifier, + [11757] = 2, + ACTIONS(3), 1, sym_comment, - [11920] = 2, - ACTIONS(1255), 1, - anon_sym_SEMI, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1298), 1, + anon_sym_RPAREN, + [11764] = 2, + ACTIONS(3), 1, sym_comment, - [11928] = 2, - ACTIONS(1257), 1, - anon_sym_COLON, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1300), 1, + sym__type_identifier, + [11771] = 2, + ACTIONS(932), 1, sym_comment, - [11936] = 2, - ACTIONS(1259), 1, - aux_sym__asm_instruction_token1, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1302), 1, + aux_sym_asm_string_token1, + [11778] = 2, + ACTIONS(3), 1, sym_comment, - [11944] = 2, - ACTIONS(1261), 1, - sym_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1304), 1, + anon_sym_RPAREN, + [11785] = 2, + ACTIONS(3), 1, sym_comment, - [11952] = 2, - ACTIONS(1263), 1, - anon_sym_DQUOTE2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1306), 1, + anon_sym_LPAREN, + [11792] = 2, + ACTIONS(3), 1, sym_comment, - [11960] = 2, - ACTIONS(1265), 1, - ts_builtin_sym_end, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1128), 1, + sym_identifier, + [11799] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + sym__type_identifier, + [11806] = 2, + ACTIONS(3), 1, sym_comment, - [11968] = 2, - ACTIONS(1061), 1, + ACTIONS(1310), 1, sym_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [11813] = 2, + ACTIONS(3), 1, sym_comment, - [11976] = 2, - ACTIONS(1267), 1, - anon_sym_fun, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1312), 1, + anon_sym_COLON, + [11820] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1314), 1, + sym__type_identifier, + [11827] = 2, + ACTIONS(3), 1, sym_comment, - [11984] = 2, - ACTIONS(1269), 1, - aux_sym__asm_string_token1, - ACTIONS(3), 2, - aux_sym_asm_list_token1, + ACTIONS(1316), 1, + sym__type_identifier, + [11834] = 2, + ACTIONS(3), 1, sym_comment, - [11992] = 2, - ACTIONS(1271), 1, + ACTIONS(1318), 1, sym_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [11841] = 2, + ACTIONS(3), 1, sym_comment, - [12000] = 2, - ACTIONS(1273), 1, + ACTIONS(1320), 1, anon_sym_EQ, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [11848] = 2, + ACTIONS(3), 1, sym_comment, - [12008] = 2, - ACTIONS(1275), 1, + ACTIONS(1322), 1, anon_sym_RBRACE, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - [12016] = 2, - ACTIONS(1277), 1, - sym_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [11855] = 2, + ACTIONS(3), 1, sym_comment, - [12024] = 2, - ACTIONS(1279), 1, + ACTIONS(1324), 1, sym_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [11862] = 2, + ACTIONS(3), 1, sym_comment, - [12032] = 2, - ACTIONS(1281), 1, - anon_sym_const, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1122), 1, + anon_sym_SEMI, + [11869] = 2, + ACTIONS(3), 1, sym_comment, - [12040] = 2, - ACTIONS(1283), 1, + ACTIONS(1326), 1, sym_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [11876] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1328), 1, + anon_sym_fun, + [11883] = 2, + ACTIONS(3), 1, sym_comment, - [12048] = 2, - ACTIONS(1285), 1, + ACTIONS(1330), 1, anon_sym_EQ, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [11890] = 2, + ACTIONS(3), 1, sym_comment, - [12056] = 2, - ACTIONS(1287), 1, - anon_sym_RPAREN, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1332), 1, + sym__type_identifier, + [11897] = 2, + ACTIONS(3), 1, sym_comment, - [12064] = 2, - ACTIONS(1289), 1, + ACTIONS(1334), 1, anon_sym_RPAREN, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [11904] = 2, + ACTIONS(3), 1, sym_comment, - [12072] = 2, - ACTIONS(1291), 1, - sym__type_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1336), 1, + anon_sym_COLON, + [11911] = 2, + ACTIONS(3), 1, sym_comment, - [12080] = 2, - ACTIONS(1293), 1, - anon_sym_RPAREN, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1338), 1, + sym_identifier, + [11918] = 2, + ACTIONS(3), 1, sym_comment, - [12088] = 2, - ACTIONS(1295), 1, - anon_sym_RPAREN, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1340), 1, + anon_sym_LPAREN, + [11925] = 2, + ACTIONS(3), 1, sym_comment, - [12096] = 2, - ACTIONS(1297), 1, - anon_sym_RPAREN, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1342), 1, + anon_sym_LPAREN, + [11932] = 2, + ACTIONS(3), 1, sym_comment, - [12104] = 2, - ACTIONS(1299), 1, - anon_sym_fun, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1344), 1, + sym_identifier, + [11939] = 2, + ACTIONS(3), 1, sym_comment, - [12112] = 2, - ACTIONS(1301), 1, - anon_sym_SEMI, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1346), 1, + anon_sym_COLON, + [11946] = 2, + ACTIONS(3), 1, sym_comment, - [12120] = 2, - ACTIONS(1303), 1, - anon_sym_fun, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1348), 1, + anon_sym_LT, + [11953] = 2, + ACTIONS(3), 1, sym_comment, - [12128] = 2, - ACTIONS(1305), 1, - aux_sym__asm_instruction_token1, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1350), 1, + sym_identifier, + [11960] = 2, + ACTIONS(3), 1, sym_comment, - [12136] = 2, - ACTIONS(1307), 1, - anon_sym_DQUOTE2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - [12144] = 2, - ACTIONS(1309), 1, - aux_sym__asm_string_token1, - ACTIONS(3), 2, - aux_sym_asm_list_token1, - sym_comment, - [12152] = 2, - ACTIONS(1311), 1, - sym_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - [12160] = 2, - ACTIONS(21), 1, - sym_comment, - ACTIONS(1313), 1, - aux_sym_asm_list_token1, - [12167] = 2, - ACTIONS(21), 1, - sym_comment, - ACTIONS(1315), 1, - aux_sym_asm_list_token1, - [12174] = 2, - ACTIONS(21), 1, - sym_comment, - ACTIONS(1317), 1, - aux_sym_asm_list_token1, - [12181] = 2, - ACTIONS(21), 1, - sym_comment, - ACTIONS(1319), 1, - aux_sym_asm_list_token1, - [12188] = 2, - ACTIONS(21), 1, - sym_comment, - ACTIONS(1321), 1, - aux_sym_asm_list_token1, - [12195] = 2, - ACTIONS(21), 1, - sym_comment, - ACTIONS(1323), 1, - aux_sym_asm_list_token1, - [12202] = 2, - ACTIONS(21), 1, - sym_comment, - ACTIONS(1325), 1, - aux_sym_asm_list_token1, - [12209] = 2, - ACTIONS(21), 1, - sym_comment, - ACTIONS(1327), 1, - aux_sym_asm_list_token1, - [12216] = 2, - ACTIONS(21), 1, - sym_comment, - ACTIONS(1329), 1, - aux_sym_asm_list_token1, + ACTIONS(1352), 1, + anon_sym_LT, + [11967] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1354), 1, + sym_tvm_instruction, + [11974] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1356), 1, + anon_sym_native, + [11981] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1358), 1, + anon_sym_in, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(2)] = 0, - [SMALL_STATE(3)] = 112, - [SMALL_STATE(4)] = 224, - [SMALL_STATE(5)] = 336, - [SMALL_STATE(6)] = 448, - [SMALL_STATE(7)] = 560, - [SMALL_STATE(8)] = 614, - [SMALL_STATE(9)] = 675, - [SMALL_STATE(10)] = 769, - [SMALL_STATE(11)] = 816, - [SMALL_STATE(12)] = 863, - [SMALL_STATE(13)] = 910, - [SMALL_STATE(14)] = 997, - [SMALL_STATE(15)] = 1084, - [SMALL_STATE(16)] = 1171, - [SMALL_STATE(17)] = 1220, - [SMALL_STATE(18)] = 1294, - [SMALL_STATE(19)] = 1368, - [SMALL_STATE(20)] = 1442, - [SMALL_STATE(21)] = 1489, - [SMALL_STATE(22)] = 1547, - [SMALL_STATE(23)] = 1617, - [SMALL_STATE(24)] = 1687, - [SMALL_STATE(25)] = 1747, - [SMALL_STATE(26)] = 1817, - [SMALL_STATE(27)] = 1877, - [SMALL_STATE(28)] = 1937, - [SMALL_STATE(29)] = 1994, - [SMALL_STATE(30)] = 2048, - [SMALL_STATE(31)] = 2102, - [SMALL_STATE(32)] = 2156, - [SMALL_STATE(33)] = 2210, - [SMALL_STATE(34)] = 2264, - [SMALL_STATE(35)] = 2318, - [SMALL_STATE(36)] = 2372, - [SMALL_STATE(37)] = 2426, - [SMALL_STATE(38)] = 2480, - [SMALL_STATE(39)] = 2534, - [SMALL_STATE(40)] = 2588, - [SMALL_STATE(41)] = 2642, - [SMALL_STATE(42)] = 2696, - [SMALL_STATE(43)] = 2750, - [SMALL_STATE(44)] = 2804, - [SMALL_STATE(45)] = 2858, - [SMALL_STATE(46)] = 2912, - [SMALL_STATE(47)] = 2966, - [SMALL_STATE(48)] = 3020, - [SMALL_STATE(49)] = 3074, - [SMALL_STATE(50)] = 3128, - [SMALL_STATE(51)] = 3182, - [SMALL_STATE(52)] = 3236, - [SMALL_STATE(53)] = 3290, - [SMALL_STATE(54)] = 3344, - [SMALL_STATE(55)] = 3398, - [SMALL_STATE(56)] = 3452, - [SMALL_STATE(57)] = 3506, - [SMALL_STATE(58)] = 3560, - [SMALL_STATE(59)] = 3614, - [SMALL_STATE(60)] = 3668, - [SMALL_STATE(61)] = 3722, - [SMALL_STATE(62)] = 3776, - [SMALL_STATE(63)] = 3811, - [SMALL_STATE(64)] = 3846, + [SMALL_STATE(3)] = 111, + [SMALL_STATE(4)] = 222, + [SMALL_STATE(5)] = 333, + [SMALL_STATE(6)] = 444, + [SMALL_STATE(7)] = 555, + [SMALL_STATE(8)] = 608, + [SMALL_STATE(9)] = 668, + [SMALL_STATE(10)] = 761, + [SMALL_STATE(11)] = 807, + [SMALL_STATE(12)] = 853, + [SMALL_STATE(13)] = 899, + [SMALL_STATE(14)] = 985, + [SMALL_STATE(15)] = 1071, + [SMALL_STATE(16)] = 1157, + [SMALL_STATE(17)] = 1205, + [SMALL_STATE(18)] = 1278, + [SMALL_STATE(19)] = 1351, + [SMALL_STATE(20)] = 1424, + [SMALL_STATE(21)] = 1470, + [SMALL_STATE(22)] = 1539, + [SMALL_STATE(23)] = 1608, + [SMALL_STATE(24)] = 1667, + [SMALL_STATE(25)] = 1724, + [SMALL_STATE(26)] = 1793, + [SMALL_STATE(27)] = 1852, + [SMALL_STATE(28)] = 1911, + [SMALL_STATE(29)] = 1967, + [SMALL_STATE(30)] = 2022, + [SMALL_STATE(31)] = 2075, + [SMALL_STATE(32)] = 2128, + [SMALL_STATE(33)] = 2181, + [SMALL_STATE(34)] = 2234, + [SMALL_STATE(35)] = 2287, + [SMALL_STATE(36)] = 2340, + [SMALL_STATE(37)] = 2393, + [SMALL_STATE(38)] = 2446, + [SMALL_STATE(39)] = 2499, + [SMALL_STATE(40)] = 2552, + [SMALL_STATE(41)] = 2605, + [SMALL_STATE(42)] = 2658, + [SMALL_STATE(43)] = 2711, + [SMALL_STATE(44)] = 2764, + [SMALL_STATE(45)] = 2817, + [SMALL_STATE(46)] = 2870, + [SMALL_STATE(47)] = 2925, + [SMALL_STATE(48)] = 2978, + [SMALL_STATE(49)] = 3031, + [SMALL_STATE(50)] = 3084, + [SMALL_STATE(51)] = 3137, + [SMALL_STATE(52)] = 3190, + [SMALL_STATE(53)] = 3243, + [SMALL_STATE(54)] = 3296, + [SMALL_STATE(55)] = 3349, + [SMALL_STATE(56)] = 3402, + [SMALL_STATE(57)] = 3455, + [SMALL_STATE(58)] = 3508, + [SMALL_STATE(59)] = 3561, + [SMALL_STATE(60)] = 3614, + [SMALL_STATE(61)] = 3667, + [SMALL_STATE(62)] = 3722, + [SMALL_STATE(63)] = 3775, + [SMALL_STATE(64)] = 3828, [SMALL_STATE(65)] = 3881, - [SMALL_STATE(66)] = 3918, - [SMALL_STATE(67)] = 3953, - [SMALL_STATE(68)] = 3988, - [SMALL_STATE(69)] = 4023, - [SMALL_STATE(70)] = 4058, - [SMALL_STATE(71)] = 4093, - [SMALL_STATE(72)] = 4128, - [SMALL_STATE(73)] = 4163, - [SMALL_STATE(74)] = 4198, - [SMALL_STATE(75)] = 4233, - [SMALL_STATE(76)] = 4268, - [SMALL_STATE(77)] = 4303, - [SMALL_STATE(78)] = 4338, - [SMALL_STATE(79)] = 4373, - [SMALL_STATE(80)] = 4408, - [SMALL_STATE(81)] = 4443, - [SMALL_STATE(82)] = 4479, - [SMALL_STATE(83)] = 4535, - [SMALL_STATE(84)] = 4589, - [SMALL_STATE(85)] = 4643, - [SMALL_STATE(86)] = 4695, - [SMALL_STATE(87)] = 4731, - [SMALL_STATE(88)] = 4771, - [SMALL_STATE(89)] = 4813, - [SMALL_STATE(90)] = 4851, - [SMALL_STATE(91)] = 4895, - [SMALL_STATE(92)] = 4943, - [SMALL_STATE(93)] = 5003, - [SMALL_STATE(94)] = 5053, - [SMALL_STATE(95)] = 5091, - [SMALL_STATE(96)] = 5123, - [SMALL_STATE(97)] = 5155, - [SMALL_STATE(98)] = 5187, - [SMALL_STATE(99)] = 5219, - [SMALL_STATE(100)] = 5251, - [SMALL_STATE(101)] = 5283, - [SMALL_STATE(102)] = 5315, - [SMALL_STATE(103)] = 5347, - [SMALL_STATE(104)] = 5404, - [SMALL_STATE(105)] = 5461, - [SMALL_STATE(106)] = 5518, - [SMALL_STATE(107)] = 5575, - [SMALL_STATE(108)] = 5632, - [SMALL_STATE(109)] = 5689, - [SMALL_STATE(110)] = 5746, - [SMALL_STATE(111)] = 5803, - [SMALL_STATE(112)] = 5860, - [SMALL_STATE(113)] = 5917, - [SMALL_STATE(114)] = 5974, - [SMALL_STATE(115)] = 6031, - [SMALL_STATE(116)] = 6088, - [SMALL_STATE(117)] = 6144, - [SMALL_STATE(118)] = 6200, - [SMALL_STATE(119)] = 6256, - [SMALL_STATE(120)] = 6288, - [SMALL_STATE(121)] = 6344, - [SMALL_STATE(122)] = 6400, - [SMALL_STATE(123)] = 6456, - [SMALL_STATE(124)] = 6512, - [SMALL_STATE(125)] = 6568, - [SMALL_STATE(126)] = 6624, - [SMALL_STATE(127)] = 6680, - [SMALL_STATE(128)] = 6736, - [SMALL_STATE(129)] = 6762, - [SMALL_STATE(130)] = 6788, - [SMALL_STATE(131)] = 6814, - [SMALL_STATE(132)] = 6840, - [SMALL_STATE(133)] = 6865, - [SMALL_STATE(134)] = 6890, - [SMALL_STATE(135)] = 6915, - [SMALL_STATE(136)] = 6940, - [SMALL_STATE(137)] = 6965, - [SMALL_STATE(138)] = 6990, - [SMALL_STATE(139)] = 7015, - [SMALL_STATE(140)] = 7040, - [SMALL_STATE(141)] = 7065, - [SMALL_STATE(142)] = 7090, - [SMALL_STATE(143)] = 7115, - [SMALL_STATE(144)] = 7140, - [SMALL_STATE(145)] = 7165, - [SMALL_STATE(146)] = 7190, - [SMALL_STATE(147)] = 7215, - [SMALL_STATE(148)] = 7240, - [SMALL_STATE(149)] = 7265, - [SMALL_STATE(150)] = 7290, - [SMALL_STATE(151)] = 7315, - [SMALL_STATE(152)] = 7340, - [SMALL_STATE(153)] = 7365, - [SMALL_STATE(154)] = 7390, - [SMALL_STATE(155)] = 7415, - [SMALL_STATE(156)] = 7440, - [SMALL_STATE(157)] = 7465, - [SMALL_STATE(158)] = 7490, - [SMALL_STATE(159)] = 7515, - [SMALL_STATE(160)] = 7540, - [SMALL_STATE(161)] = 7565, - [SMALL_STATE(162)] = 7590, - [SMALL_STATE(163)] = 7615, - [SMALL_STATE(164)] = 7640, - [SMALL_STATE(165)] = 7665, - [SMALL_STATE(166)] = 7690, - [SMALL_STATE(167)] = 7715, - [SMALL_STATE(168)] = 7740, - [SMALL_STATE(169)] = 7765, - [SMALL_STATE(170)] = 7790, - [SMALL_STATE(171)] = 7815, - [SMALL_STATE(172)] = 7840, - [SMALL_STATE(173)] = 7865, - [SMALL_STATE(174)] = 7890, - [SMALL_STATE(175)] = 7915, - [SMALL_STATE(176)] = 7940, - [SMALL_STATE(177)] = 7965, - [SMALL_STATE(178)] = 7990, - [SMALL_STATE(179)] = 8015, - [SMALL_STATE(180)] = 8040, - [SMALL_STATE(181)] = 8065, - [SMALL_STATE(182)] = 8090, - [SMALL_STATE(183)] = 8114, - [SMALL_STATE(184)] = 8138, - [SMALL_STATE(185)] = 8162, - [SMALL_STATE(186)] = 8186, - [SMALL_STATE(187)] = 8210, - [SMALL_STATE(188)] = 8234, - [SMALL_STATE(189)] = 8258, - [SMALL_STATE(190)] = 8282, - [SMALL_STATE(191)] = 8306, - [SMALL_STATE(192)] = 8330, - [SMALL_STATE(193)] = 8354, - [SMALL_STATE(194)] = 8378, - [SMALL_STATE(195)] = 8401, - [SMALL_STATE(196)] = 8424, - [SMALL_STATE(197)] = 8456, - [SMALL_STATE(198)] = 8478, - [SMALL_STATE(199)] = 8509, - [SMALL_STATE(200)] = 8540, - [SMALL_STATE(201)] = 8571, - [SMALL_STATE(202)] = 8597, - [SMALL_STATE(203)] = 8621, - [SMALL_STATE(204)] = 8647, - [SMALL_STATE(205)] = 8671, - [SMALL_STATE(206)] = 8698, - [SMALL_STATE(207)] = 8725, - [SMALL_STATE(208)] = 8744, - [SMALL_STATE(209)] = 8771, - [SMALL_STATE(210)] = 8787, - [SMALL_STATE(211)] = 8807, - [SMALL_STATE(212)] = 8822, - [SMALL_STATE(213)] = 8839, - [SMALL_STATE(214)] = 8854, - [SMALL_STATE(215)] = 8871, - [SMALL_STATE(216)] = 8888, - [SMALL_STATE(217)] = 8903, - [SMALL_STATE(218)] = 8920, - [SMALL_STATE(219)] = 8935, - [SMALL_STATE(220)] = 8952, - [SMALL_STATE(221)] = 8972, - [SMALL_STATE(222)] = 8992, - [SMALL_STATE(223)] = 9006, - [SMALL_STATE(224)] = 9026, - [SMALL_STATE(225)] = 9046, - [SMALL_STATE(226)] = 9066, - [SMALL_STATE(227)] = 9086, - [SMALL_STATE(228)] = 9106, - [SMALL_STATE(229)] = 9126, - [SMALL_STATE(230)] = 9146, - [SMALL_STATE(231)] = 9166, - [SMALL_STATE(232)] = 9180, - [SMALL_STATE(233)] = 9194, - [SMALL_STATE(234)] = 9208, - [SMALL_STATE(235)] = 9228, - [SMALL_STATE(236)] = 9248, - [SMALL_STATE(237)] = 9268, - [SMALL_STATE(238)] = 9288, - [SMALL_STATE(239)] = 9302, - [SMALL_STATE(240)] = 9322, - [SMALL_STATE(241)] = 9342, - [SMALL_STATE(242)] = 9356, - [SMALL_STATE(243)] = 9376, - [SMALL_STATE(244)] = 9392, - [SMALL_STATE(245)] = 9408, - [SMALL_STATE(246)] = 9431, - [SMALL_STATE(247)] = 9449, - [SMALL_STATE(248)] = 9467, - [SMALL_STATE(249)] = 9483, - [SMALL_STATE(250)] = 9501, - [SMALL_STATE(251)] = 9519, - [SMALL_STATE(252)] = 9535, - [SMALL_STATE(253)] = 9547, - [SMALL_STATE(254)] = 9565, - [SMALL_STATE(255)] = 9580, - [SMALL_STATE(256)] = 9591, - [SMALL_STATE(257)] = 9608, - [SMALL_STATE(258)] = 9619, - [SMALL_STATE(259)] = 9634, - [SMALL_STATE(260)] = 9645, - [SMALL_STATE(261)] = 9660, - [SMALL_STATE(262)] = 9677, - [SMALL_STATE(263)] = 9694, - [SMALL_STATE(264)] = 9711, - [SMALL_STATE(265)] = 9728, - [SMALL_STATE(266)] = 9743, - [SMALL_STATE(267)] = 9760, - [SMALL_STATE(268)] = 9775, - [SMALL_STATE(269)] = 9790, - [SMALL_STATE(270)] = 9801, - [SMALL_STATE(271)] = 9816, - [SMALL_STATE(272)] = 9831, - [SMALL_STATE(273)] = 9846, - [SMALL_STATE(274)] = 9863, - [SMALL_STATE(275)] = 9880, - [SMALL_STATE(276)] = 9895, - [SMALL_STATE(277)] = 9909, - [SMALL_STATE(278)] = 9923, - [SMALL_STATE(279)] = 9937, - [SMALL_STATE(280)] = 9947, - [SMALL_STATE(281)] = 9961, + [SMALL_STATE(66)] = 3915, + [SMALL_STATE(67)] = 3949, + [SMALL_STATE(68)] = 3983, + [SMALL_STATE(69)] = 4017, + [SMALL_STATE(70)] = 4051, + [SMALL_STATE(71)] = 4085, + [SMALL_STATE(72)] = 4119, + [SMALL_STATE(73)] = 4153, + [SMALL_STATE(74)] = 4187, + [SMALL_STATE(75)] = 4221, + [SMALL_STATE(76)] = 4255, + [SMALL_STATE(77)] = 4289, + [SMALL_STATE(78)] = 4323, + [SMALL_STATE(79)] = 4357, + [SMALL_STATE(80)] = 4391, + [SMALL_STATE(81)] = 4425, + [SMALL_STATE(82)] = 4459, + [SMALL_STATE(83)] = 4493, + [SMALL_STATE(84)] = 4529, + [SMALL_STATE(85)] = 4566, + [SMALL_STATE(86)] = 4601, + [SMALL_STATE(87)] = 4648, + [SMALL_STATE(88)] = 4691, + [SMALL_STATE(89)] = 4730, + [SMALL_STATE(90)] = 4771, + [SMALL_STATE(91)] = 4824, + [SMALL_STATE(92)] = 4879, + [SMALL_STATE(93)] = 4916, + [SMALL_STATE(94)] = 4967, + [SMALL_STATE(95)] = 5002, + [SMALL_STATE(96)] = 5055, + [SMALL_STATE(97)] = 5114, + [SMALL_STATE(98)] = 5163, + [SMALL_STATE(99)] = 5213, + [SMALL_STATE(100)] = 5263, + [SMALL_STATE(101)] = 5313, + [SMALL_STATE(102)] = 5344, + [SMALL_STATE(103)] = 5375, + [SMALL_STATE(104)] = 5406, + [SMALL_STATE(105)] = 5437, + [SMALL_STATE(106)] = 5468, + [SMALL_STATE(107)] = 5499, + [SMALL_STATE(108)] = 5530, + [SMALL_STATE(109)] = 5561, + [SMALL_STATE(110)] = 5617, + [SMALL_STATE(111)] = 5673, + [SMALL_STATE(112)] = 5729, + [SMALL_STATE(113)] = 5785, + [SMALL_STATE(114)] = 5841, + [SMALL_STATE(115)] = 5897, + [SMALL_STATE(116)] = 5953, + [SMALL_STATE(117)] = 6009, + [SMALL_STATE(118)] = 6065, + [SMALL_STATE(119)] = 6121, + [SMALL_STATE(120)] = 6177, + [SMALL_STATE(121)] = 6233, + [SMALL_STATE(122)] = 6289, + [SMALL_STATE(123)] = 6344, + [SMALL_STATE(124)] = 6399, + [SMALL_STATE(125)] = 6454, + [SMALL_STATE(126)] = 6509, + [SMALL_STATE(127)] = 6564, + [SMALL_STATE(128)] = 6619, + [SMALL_STATE(129)] = 6650, + [SMALL_STATE(130)] = 6705, + [SMALL_STATE(131)] = 6760, + [SMALL_STATE(132)] = 6815, + [SMALL_STATE(133)] = 6870, + [SMALL_STATE(134)] = 6925, + [SMALL_STATE(135)] = 6965, + [SMALL_STATE(136)] = 7005, + [SMALL_STATE(137)] = 7030, + [SMALL_STATE(138)] = 7055, + [SMALL_STATE(139)] = 7080, + [SMALL_STATE(140)] = 7105, + [SMALL_STATE(141)] = 7129, + [SMALL_STATE(142)] = 7153, + [SMALL_STATE(143)] = 7177, + [SMALL_STATE(144)] = 7201, + [SMALL_STATE(145)] = 7225, + [SMALL_STATE(146)] = 7249, + [SMALL_STATE(147)] = 7273, + [SMALL_STATE(148)] = 7297, + [SMALL_STATE(149)] = 7321, + [SMALL_STATE(150)] = 7345, + [SMALL_STATE(151)] = 7369, + [SMALL_STATE(152)] = 7393, + [SMALL_STATE(153)] = 7417, + [SMALL_STATE(154)] = 7441, + [SMALL_STATE(155)] = 7465, + [SMALL_STATE(156)] = 7489, + [SMALL_STATE(157)] = 7513, + [SMALL_STATE(158)] = 7537, + [SMALL_STATE(159)] = 7561, + [SMALL_STATE(160)] = 7585, + [SMALL_STATE(161)] = 7609, + [SMALL_STATE(162)] = 7633, + [SMALL_STATE(163)] = 7657, + [SMALL_STATE(164)] = 7681, + [SMALL_STATE(165)] = 7705, + [SMALL_STATE(166)] = 7729, + [SMALL_STATE(167)] = 7753, + [SMALL_STATE(168)] = 7777, + [SMALL_STATE(169)] = 7801, + [SMALL_STATE(170)] = 7825, + [SMALL_STATE(171)] = 7849, + [SMALL_STATE(172)] = 7873, + [SMALL_STATE(173)] = 7897, + [SMALL_STATE(174)] = 7921, + [SMALL_STATE(175)] = 7945, + [SMALL_STATE(176)] = 7969, + [SMALL_STATE(177)] = 7993, + [SMALL_STATE(178)] = 8017, + [SMALL_STATE(179)] = 8041, + [SMALL_STATE(180)] = 8065, + [SMALL_STATE(181)] = 8089, + [SMALL_STATE(182)] = 8113, + [SMALL_STATE(183)] = 8137, + [SMALL_STATE(184)] = 8161, + [SMALL_STATE(185)] = 8187, + [SMALL_STATE(186)] = 8211, + [SMALL_STATE(187)] = 8237, + [SMALL_STATE(188)] = 8261, + [SMALL_STATE(189)] = 8285, + [SMALL_STATE(190)] = 8309, + [SMALL_STATE(191)] = 8333, + [SMALL_STATE(192)] = 8357, + [SMALL_STATE(193)] = 8380, + [SMALL_STATE(194)] = 8403, + [SMALL_STATE(195)] = 8426, + [SMALL_STATE(196)] = 8449, + [SMALL_STATE(197)] = 8472, + [SMALL_STATE(198)] = 8495, + [SMALL_STATE(199)] = 8518, + [SMALL_STATE(200)] = 8541, + [SMALL_STATE(201)] = 8564, + [SMALL_STATE(202)] = 8587, + [SMALL_STATE(203)] = 8610, + [SMALL_STATE(204)] = 8633, + [SMALL_STATE(205)] = 8656, + [SMALL_STATE(206)] = 8679, + [SMALL_STATE(207)] = 8701, + [SMALL_STATE(208)] = 8723, + [SMALL_STATE(209)] = 8745, + [SMALL_STATE(210)] = 8767, + [SMALL_STATE(211)] = 8789, + [SMALL_STATE(212)] = 8811, + [SMALL_STATE(213)] = 8833, + [SMALL_STATE(214)] = 8864, + [SMALL_STATE(215)] = 8885, + [SMALL_STATE(216)] = 8908, + [SMALL_STATE(217)] = 8933, + [SMALL_STATE(218)] = 8958, + [SMALL_STATE(219)] = 8981, + [SMALL_STATE(220)] = 8999, + [SMALL_STATE(221)] = 9018, + [SMALL_STATE(222)] = 9033, + [SMALL_STATE(223)] = 9047, + [SMALL_STATE(224)] = 9063, + [SMALL_STATE(225)] = 9077, + [SMALL_STATE(226)] = 9091, + [SMALL_STATE(227)] = 9105, + [SMALL_STATE(228)] = 9124, + [SMALL_STATE(229)] = 9137, + [SMALL_STATE(230)] = 9156, + [SMALL_STATE(231)] = 9175, + [SMALL_STATE(232)] = 9194, + [SMALL_STATE(233)] = 9213, + [SMALL_STATE(234)] = 9232, + [SMALL_STATE(235)] = 9245, + [SMALL_STATE(236)] = 9264, + [SMALL_STATE(237)] = 9283, + [SMALL_STATE(238)] = 9302, + [SMALL_STATE(239)] = 9321, + [SMALL_STATE(240)] = 9340, + [SMALL_STATE(241)] = 9359, + [SMALL_STATE(242)] = 9378, + [SMALL_STATE(243)] = 9391, + [SMALL_STATE(244)] = 9410, + [SMALL_STATE(245)] = 9423, + [SMALL_STATE(246)] = 9442, + [SMALL_STATE(247)] = 9461, + [SMALL_STATE(248)] = 9474, + [SMALL_STATE(249)] = 9487, + [SMALL_STATE(250)] = 9506, + [SMALL_STATE(251)] = 9528, + [SMALL_STATE(252)] = 9545, + [SMALL_STATE(253)] = 9562, + [SMALL_STATE(254)] = 9579, + [SMALL_STATE(255)] = 9594, + [SMALL_STATE(256)] = 9611, + [SMALL_STATE(257)] = 9626, + [SMALL_STATE(258)] = 9643, + [SMALL_STATE(259)] = 9654, + [SMALL_STATE(260)] = 9670, + [SMALL_STATE(261)] = 9680, + [SMALL_STATE(262)] = 9696, + [SMALL_STATE(263)] = 9706, + [SMALL_STATE(264)] = 9722, + [SMALL_STATE(265)] = 9736, + [SMALL_STATE(266)] = 9752, + [SMALL_STATE(267)] = 9768, + [SMALL_STATE(268)] = 9782, + [SMALL_STATE(269)] = 9792, + [SMALL_STATE(270)] = 9806, + [SMALL_STATE(271)] = 9820, + [SMALL_STATE(272)] = 9834, + [SMALL_STATE(273)] = 9844, + [SMALL_STATE(274)] = 9858, + [SMALL_STATE(275)] = 9872, + [SMALL_STATE(276)] = 9888, + [SMALL_STATE(277)] = 9902, + [SMALL_STATE(278)] = 9916, + [SMALL_STATE(279)] = 9932, + [SMALL_STATE(280)] = 9948, + [SMALL_STATE(281)] = 9962, [SMALL_STATE(282)] = 9975, - [SMALL_STATE(283)] = 9989, - [SMALL_STATE(284)] = 10003, - [SMALL_STATE(285)] = 10017, - [SMALL_STATE(286)] = 10031, - [SMALL_STATE(287)] = 10045, - [SMALL_STATE(288)] = 10059, - [SMALL_STATE(289)] = 10073, - [SMALL_STATE(290)] = 10087, - [SMALL_STATE(291)] = 10101, - [SMALL_STATE(292)] = 10115, - [SMALL_STATE(293)] = 10129, - [SMALL_STATE(294)] = 10143, - [SMALL_STATE(295)] = 10157, - [SMALL_STATE(296)] = 10171, - [SMALL_STATE(297)] = 10185, - [SMALL_STATE(298)] = 10199, - [SMALL_STATE(299)] = 10213, - [SMALL_STATE(300)] = 10225, - [SMALL_STATE(301)] = 10237, - [SMALL_STATE(302)] = 10251, - [SMALL_STATE(303)] = 10265, - [SMALL_STATE(304)] = 10279, - [SMALL_STATE(305)] = 10291, - [SMALL_STATE(306)] = 10305, - [SMALL_STATE(307)] = 10319, - [SMALL_STATE(308)] = 10331, - [SMALL_STATE(309)] = 10345, - [SMALL_STATE(310)] = 10359, - [SMALL_STATE(311)] = 10373, - [SMALL_STATE(312)] = 10387, - [SMALL_STATE(313)] = 10401, - [SMALL_STATE(314)] = 10413, - [SMALL_STATE(315)] = 10427, - [SMALL_STATE(316)] = 10441, - [SMALL_STATE(317)] = 10455, - [SMALL_STATE(318)] = 10469, - [SMALL_STATE(319)] = 10483, - [SMALL_STATE(320)] = 10497, - [SMALL_STATE(321)] = 10511, - [SMALL_STATE(322)] = 10525, - [SMALL_STATE(323)] = 10539, - [SMALL_STATE(324)] = 10553, - [SMALL_STATE(325)] = 10564, - [SMALL_STATE(326)] = 10575, - [SMALL_STATE(327)] = 10584, - [SMALL_STATE(328)] = 10595, - [SMALL_STATE(329)] = 10604, - [SMALL_STATE(330)] = 10615, - [SMALL_STATE(331)] = 10626, - [SMALL_STATE(332)] = 10637, - [SMALL_STATE(333)] = 10648, - [SMALL_STATE(334)] = 10659, - [SMALL_STATE(335)] = 10670, - [SMALL_STATE(336)] = 10681, - [SMALL_STATE(337)] = 10692, - [SMALL_STATE(338)] = 10703, - [SMALL_STATE(339)] = 10714, - [SMALL_STATE(340)] = 10725, - [SMALL_STATE(341)] = 10734, - [SMALL_STATE(342)] = 10745, - [SMALL_STATE(343)] = 10756, - [SMALL_STATE(344)] = 10767, - [SMALL_STATE(345)] = 10778, - [SMALL_STATE(346)] = 10789, - [SMALL_STATE(347)] = 10800, - [SMALL_STATE(348)] = 10811, - [SMALL_STATE(349)] = 10822, - [SMALL_STATE(350)] = 10833, - [SMALL_STATE(351)] = 10844, - [SMALL_STATE(352)] = 10855, - [SMALL_STATE(353)] = 10866, - [SMALL_STATE(354)] = 10877, - [SMALL_STATE(355)] = 10888, - [SMALL_STATE(356)] = 10899, - [SMALL_STATE(357)] = 10910, - [SMALL_STATE(358)] = 10921, - [SMALL_STATE(359)] = 10932, - [SMALL_STATE(360)] = 10941, - [SMALL_STATE(361)] = 10952, - [SMALL_STATE(362)] = 10963, - [SMALL_STATE(363)] = 10974, - [SMALL_STATE(364)] = 10985, - [SMALL_STATE(365)] = 10994, - [SMALL_STATE(366)] = 11005, - [SMALL_STATE(367)] = 11016, - [SMALL_STATE(368)] = 11027, - [SMALL_STATE(369)] = 11036, - [SMALL_STATE(370)] = 11047, - [SMALL_STATE(371)] = 11058, - [SMALL_STATE(372)] = 11069, - [SMALL_STATE(373)] = 11080, - [SMALL_STATE(374)] = 11091, - [SMALL_STATE(375)] = 11102, - [SMALL_STATE(376)] = 11113, - [SMALL_STATE(377)] = 11124, - [SMALL_STATE(378)] = 11135, - [SMALL_STATE(379)] = 11144, - [SMALL_STATE(380)] = 11155, - [SMALL_STATE(381)] = 11164, - [SMALL_STATE(382)] = 11173, - [SMALL_STATE(383)] = 11184, - [SMALL_STATE(384)] = 11195, - [SMALL_STATE(385)] = 11206, - [SMALL_STATE(386)] = 11217, - [SMALL_STATE(387)] = 11226, - [SMALL_STATE(388)] = 11237, - [SMALL_STATE(389)] = 11248, - [SMALL_STATE(390)] = 11259, - [SMALL_STATE(391)] = 11270, - [SMALL_STATE(392)] = 11281, - [SMALL_STATE(393)] = 11292, - [SMALL_STATE(394)] = 11303, - [SMALL_STATE(395)] = 11312, - [SMALL_STATE(396)] = 11323, - [SMALL_STATE(397)] = 11332, - [SMALL_STATE(398)] = 11343, - [SMALL_STATE(399)] = 11354, - [SMALL_STATE(400)] = 11365, - [SMALL_STATE(401)] = 11376, - [SMALL_STATE(402)] = 11384, - [SMALL_STATE(403)] = 11392, - [SMALL_STATE(404)] = 11400, - [SMALL_STATE(405)] = 11408, - [SMALL_STATE(406)] = 11416, - [SMALL_STATE(407)] = 11424, - [SMALL_STATE(408)] = 11432, - [SMALL_STATE(409)] = 11440, - [SMALL_STATE(410)] = 11448, - [SMALL_STATE(411)] = 11456, - [SMALL_STATE(412)] = 11464, - [SMALL_STATE(413)] = 11472, - [SMALL_STATE(414)] = 11480, - [SMALL_STATE(415)] = 11488, - [SMALL_STATE(416)] = 11496, - [SMALL_STATE(417)] = 11504, - [SMALL_STATE(418)] = 11512, - [SMALL_STATE(419)] = 11520, - [SMALL_STATE(420)] = 11528, - [SMALL_STATE(421)] = 11536, - [SMALL_STATE(422)] = 11544, - [SMALL_STATE(423)] = 11552, - [SMALL_STATE(424)] = 11560, - [SMALL_STATE(425)] = 11568, - [SMALL_STATE(426)] = 11576, - [SMALL_STATE(427)] = 11584, - [SMALL_STATE(428)] = 11592, - [SMALL_STATE(429)] = 11600, - [SMALL_STATE(430)] = 11608, - [SMALL_STATE(431)] = 11616, - [SMALL_STATE(432)] = 11624, - [SMALL_STATE(433)] = 11632, - [SMALL_STATE(434)] = 11640, - [SMALL_STATE(435)] = 11648, - [SMALL_STATE(436)] = 11656, - [SMALL_STATE(437)] = 11664, - [SMALL_STATE(438)] = 11672, - [SMALL_STATE(439)] = 11680, - [SMALL_STATE(440)] = 11688, - [SMALL_STATE(441)] = 11696, - [SMALL_STATE(442)] = 11704, - [SMALL_STATE(443)] = 11712, - [SMALL_STATE(444)] = 11720, - [SMALL_STATE(445)] = 11728, - [SMALL_STATE(446)] = 11736, - [SMALL_STATE(447)] = 11744, - [SMALL_STATE(448)] = 11752, - [SMALL_STATE(449)] = 11760, - [SMALL_STATE(450)] = 11768, - [SMALL_STATE(451)] = 11776, - [SMALL_STATE(452)] = 11784, - [SMALL_STATE(453)] = 11792, - [SMALL_STATE(454)] = 11800, - [SMALL_STATE(455)] = 11808, - [SMALL_STATE(456)] = 11816, - [SMALL_STATE(457)] = 11824, - [SMALL_STATE(458)] = 11832, - [SMALL_STATE(459)] = 11840, - [SMALL_STATE(460)] = 11848, - [SMALL_STATE(461)] = 11856, - [SMALL_STATE(462)] = 11864, - [SMALL_STATE(463)] = 11872, - [SMALL_STATE(464)] = 11880, - [SMALL_STATE(465)] = 11888, - [SMALL_STATE(466)] = 11896, - [SMALL_STATE(467)] = 11904, - [SMALL_STATE(468)] = 11912, - [SMALL_STATE(469)] = 11920, - [SMALL_STATE(470)] = 11928, - [SMALL_STATE(471)] = 11936, - [SMALL_STATE(472)] = 11944, - [SMALL_STATE(473)] = 11952, - [SMALL_STATE(474)] = 11960, - [SMALL_STATE(475)] = 11968, - [SMALL_STATE(476)] = 11976, - [SMALL_STATE(477)] = 11984, - [SMALL_STATE(478)] = 11992, - [SMALL_STATE(479)] = 12000, - [SMALL_STATE(480)] = 12008, - [SMALL_STATE(481)] = 12016, - [SMALL_STATE(482)] = 12024, - [SMALL_STATE(483)] = 12032, - [SMALL_STATE(484)] = 12040, - [SMALL_STATE(485)] = 12048, - [SMALL_STATE(486)] = 12056, - [SMALL_STATE(487)] = 12064, - [SMALL_STATE(488)] = 12072, - [SMALL_STATE(489)] = 12080, - [SMALL_STATE(490)] = 12088, - [SMALL_STATE(491)] = 12096, - [SMALL_STATE(492)] = 12104, - [SMALL_STATE(493)] = 12112, - [SMALL_STATE(494)] = 12120, - [SMALL_STATE(495)] = 12128, - [SMALL_STATE(496)] = 12136, - [SMALL_STATE(497)] = 12144, - [SMALL_STATE(498)] = 12152, - [SMALL_STATE(499)] = 12160, - [SMALL_STATE(500)] = 12167, - [SMALL_STATE(501)] = 12174, - [SMALL_STATE(502)] = 12181, - [SMALL_STATE(503)] = 12188, - [SMALL_STATE(504)] = 12195, - [SMALL_STATE(505)] = 12202, - [SMALL_STATE(506)] = 12209, - [SMALL_STATE(507)] = 12216, + [SMALL_STATE(283)] = 9988, + [SMALL_STATE(284)] = 10001, + [SMALL_STATE(285)] = 10014, + [SMALL_STATE(286)] = 10027, + [SMALL_STATE(287)] = 10040, + [SMALL_STATE(288)] = 10053, + [SMALL_STATE(289)] = 10066, + [SMALL_STATE(290)] = 10079, + [SMALL_STATE(291)] = 10092, + [SMALL_STATE(292)] = 10103, + [SMALL_STATE(293)] = 10116, + [SMALL_STATE(294)] = 10129, + [SMALL_STATE(295)] = 10142, + [SMALL_STATE(296)] = 10155, + [SMALL_STATE(297)] = 10168, + [SMALL_STATE(298)] = 10181, + [SMALL_STATE(299)] = 10194, + [SMALL_STATE(300)] = 10207, + [SMALL_STATE(301)] = 10220, + [SMALL_STATE(302)] = 10231, + [SMALL_STATE(303)] = 10244, + [SMALL_STATE(304)] = 10257, + [SMALL_STATE(305)] = 10268, + [SMALL_STATE(306)] = 10281, + [SMALL_STATE(307)] = 10294, + [SMALL_STATE(308)] = 10307, + [SMALL_STATE(309)] = 10320, + [SMALL_STATE(310)] = 10329, + [SMALL_STATE(311)] = 10342, + [SMALL_STATE(312)] = 10355, + [SMALL_STATE(313)] = 10366, + [SMALL_STATE(314)] = 10379, + [SMALL_STATE(315)] = 10392, + [SMALL_STATE(316)] = 10405, + [SMALL_STATE(317)] = 10418, + [SMALL_STATE(318)] = 10431, + [SMALL_STATE(319)] = 10444, + [SMALL_STATE(320)] = 10457, + [SMALL_STATE(321)] = 10470, + [SMALL_STATE(322)] = 10483, + [SMALL_STATE(323)] = 10496, + [SMALL_STATE(324)] = 10507, + [SMALL_STATE(325)] = 10520, + [SMALL_STATE(326)] = 10533, + [SMALL_STATE(327)] = 10546, + [SMALL_STATE(328)] = 10557, + [SMALL_STATE(329)] = 10570, + [SMALL_STATE(330)] = 10578, + [SMALL_STATE(331)] = 10588, + [SMALL_STATE(332)] = 10598, + [SMALL_STATE(333)] = 10608, + [SMALL_STATE(334)] = 10618, + [SMALL_STATE(335)] = 10628, + [SMALL_STATE(336)] = 10638, + [SMALL_STATE(337)] = 10646, + [SMALL_STATE(338)] = 10656, + [SMALL_STATE(339)] = 10666, + [SMALL_STATE(340)] = 10676, + [SMALL_STATE(341)] = 10686, + [SMALL_STATE(342)] = 10696, + [SMALL_STATE(343)] = 10706, + [SMALL_STATE(344)] = 10716, + [SMALL_STATE(345)] = 10726, + [SMALL_STATE(346)] = 10734, + [SMALL_STATE(347)] = 10744, + [SMALL_STATE(348)] = 10752, + [SMALL_STATE(349)] = 10762, + [SMALL_STATE(350)] = 10770, + [SMALL_STATE(351)] = 10780, + [SMALL_STATE(352)] = 10788, + [SMALL_STATE(353)] = 10798, + [SMALL_STATE(354)] = 10808, + [SMALL_STATE(355)] = 10818, + [SMALL_STATE(356)] = 10828, + [SMALL_STATE(357)] = 10838, + [SMALL_STATE(358)] = 10848, + [SMALL_STATE(359)] = 10858, + [SMALL_STATE(360)] = 10868, + [SMALL_STATE(361)] = 10878, + [SMALL_STATE(362)] = 10888, + [SMALL_STATE(363)] = 10898, + [SMALL_STATE(364)] = 10908, + [SMALL_STATE(365)] = 10918, + [SMALL_STATE(366)] = 10928, + [SMALL_STATE(367)] = 10938, + [SMALL_STATE(368)] = 10948, + [SMALL_STATE(369)] = 10958, + [SMALL_STATE(370)] = 10968, + [SMALL_STATE(371)] = 10978, + [SMALL_STATE(372)] = 10988, + [SMALL_STATE(373)] = 10998, + [SMALL_STATE(374)] = 11008, + [SMALL_STATE(375)] = 11018, + [SMALL_STATE(376)] = 11028, + [SMALL_STATE(377)] = 11038, + [SMALL_STATE(378)] = 11048, + [SMALL_STATE(379)] = 11058, + [SMALL_STATE(380)] = 11066, + [SMALL_STATE(381)] = 11076, + [SMALL_STATE(382)] = 11086, + [SMALL_STATE(383)] = 11094, + [SMALL_STATE(384)] = 11104, + [SMALL_STATE(385)] = 11112, + [SMALL_STATE(386)] = 11122, + [SMALL_STATE(387)] = 11132, + [SMALL_STATE(388)] = 11142, + [SMALL_STATE(389)] = 11152, + [SMALL_STATE(390)] = 11160, + [SMALL_STATE(391)] = 11170, + [SMALL_STATE(392)] = 11180, + [SMALL_STATE(393)] = 11190, + [SMALL_STATE(394)] = 11198, + [SMALL_STATE(395)] = 11208, + [SMALL_STATE(396)] = 11218, + [SMALL_STATE(397)] = 11228, + [SMALL_STATE(398)] = 11238, + [SMALL_STATE(399)] = 11248, + [SMALL_STATE(400)] = 11258, + [SMALL_STATE(401)] = 11268, + [SMALL_STATE(402)] = 11276, + [SMALL_STATE(403)] = 11286, + [SMALL_STATE(404)] = 11296, + [SMALL_STATE(405)] = 11306, + [SMALL_STATE(406)] = 11316, + [SMALL_STATE(407)] = 11323, + [SMALL_STATE(408)] = 11330, + [SMALL_STATE(409)] = 11337, + [SMALL_STATE(410)] = 11344, + [SMALL_STATE(411)] = 11351, + [SMALL_STATE(412)] = 11358, + [SMALL_STATE(413)] = 11365, + [SMALL_STATE(414)] = 11372, + [SMALL_STATE(415)] = 11379, + [SMALL_STATE(416)] = 11386, + [SMALL_STATE(417)] = 11393, + [SMALL_STATE(418)] = 11400, + [SMALL_STATE(419)] = 11407, + [SMALL_STATE(420)] = 11414, + [SMALL_STATE(421)] = 11421, + [SMALL_STATE(422)] = 11428, + [SMALL_STATE(423)] = 11435, + [SMALL_STATE(424)] = 11442, + [SMALL_STATE(425)] = 11449, + [SMALL_STATE(426)] = 11456, + [SMALL_STATE(427)] = 11463, + [SMALL_STATE(428)] = 11470, + [SMALL_STATE(429)] = 11477, + [SMALL_STATE(430)] = 11484, + [SMALL_STATE(431)] = 11491, + [SMALL_STATE(432)] = 11498, + [SMALL_STATE(433)] = 11505, + [SMALL_STATE(434)] = 11512, + [SMALL_STATE(435)] = 11519, + [SMALL_STATE(436)] = 11526, + [SMALL_STATE(437)] = 11533, + [SMALL_STATE(438)] = 11540, + [SMALL_STATE(439)] = 11547, + [SMALL_STATE(440)] = 11554, + [SMALL_STATE(441)] = 11561, + [SMALL_STATE(442)] = 11568, + [SMALL_STATE(443)] = 11575, + [SMALL_STATE(444)] = 11582, + [SMALL_STATE(445)] = 11589, + [SMALL_STATE(446)] = 11596, + [SMALL_STATE(447)] = 11603, + [SMALL_STATE(448)] = 11610, + [SMALL_STATE(449)] = 11617, + [SMALL_STATE(450)] = 11624, + [SMALL_STATE(451)] = 11631, + [SMALL_STATE(452)] = 11638, + [SMALL_STATE(453)] = 11645, + [SMALL_STATE(454)] = 11652, + [SMALL_STATE(455)] = 11659, + [SMALL_STATE(456)] = 11666, + [SMALL_STATE(457)] = 11673, + [SMALL_STATE(458)] = 11680, + [SMALL_STATE(459)] = 11687, + [SMALL_STATE(460)] = 11694, + [SMALL_STATE(461)] = 11701, + [SMALL_STATE(462)] = 11708, + [SMALL_STATE(463)] = 11715, + [SMALL_STATE(464)] = 11722, + [SMALL_STATE(465)] = 11729, + [SMALL_STATE(466)] = 11736, + [SMALL_STATE(467)] = 11743, + [SMALL_STATE(468)] = 11750, + [SMALL_STATE(469)] = 11757, + [SMALL_STATE(470)] = 11764, + [SMALL_STATE(471)] = 11771, + [SMALL_STATE(472)] = 11778, + [SMALL_STATE(473)] = 11785, + [SMALL_STATE(474)] = 11792, + [SMALL_STATE(475)] = 11799, + [SMALL_STATE(476)] = 11806, + [SMALL_STATE(477)] = 11813, + [SMALL_STATE(478)] = 11820, + [SMALL_STATE(479)] = 11827, + [SMALL_STATE(480)] = 11834, + [SMALL_STATE(481)] = 11841, + [SMALL_STATE(482)] = 11848, + [SMALL_STATE(483)] = 11855, + [SMALL_STATE(484)] = 11862, + [SMALL_STATE(485)] = 11869, + [SMALL_STATE(486)] = 11876, + [SMALL_STATE(487)] = 11883, + [SMALL_STATE(488)] = 11890, + [SMALL_STATE(489)] = 11897, + [SMALL_STATE(490)] = 11904, + [SMALL_STATE(491)] = 11911, + [SMALL_STATE(492)] = 11918, + [SMALL_STATE(493)] = 11925, + [SMALL_STATE(494)] = 11932, + [SMALL_STATE(495)] = 11939, + [SMALL_STATE(496)] = 11946, + [SMALL_STATE(497)] = 11953, + [SMALL_STATE(498)] = 11960, + [SMALL_STATE(499)] = 11967, + [SMALL_STATE(500)] = 11974, + [SMALL_STATE(501)] = 11981, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0, 0, 0), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [77] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8), - [80] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(31), - [83] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5), - [86] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), - [88] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(270), - [91] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(395), - [94] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(21), - [97] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(424), - [100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(425), - [103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(427), - [106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(363), - [109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(325), - [112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(436), - [115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(51), - [118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(482), - [121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(16), - [124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(64), - [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(63), - [130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(63), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access_expression, 3, 0, 27), - [139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access_expression, 3, 0, 27), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_expression, 1, 0, 0), - [145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__path_expression, 1, 0, 0), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__path_expression, 1, 0, 0), - [151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_expression, 1, 0, 0), - [153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), - [155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 3, 0, 0), - [157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 3, 0, 0), - [159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 4, 0, 0), - [161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 4, 0, 0), - [163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 2, 0, 0), - [165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 2, 0, 0), - [167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), - [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(408), - [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(445), - [175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(210), - [178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(450), - [181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(196), - [184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(421), - [187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(204), - [190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(207), - [193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(446), - [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(322), - [199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(468), - [202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(498), - [205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(449), - [208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2, 0, 0), - [210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_contract_body_repeat1, 2, 0, 0), SHIFT_REPEAT(377), - [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_contract_body_repeat1, 2, 0, 0), SHIFT_REPEAT(437), - [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_contract_body_repeat1, 2, 0, 0), SHIFT_REPEAT(210), - [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_contract_body_repeat1, 2, 0, 0), SHIFT_REPEAT(441), - [246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_contract_body_repeat1, 2, 0, 0), - [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_contract_body_repeat1, 2, 0, 0), SHIFT_REPEAT(204), - [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_contract_body_repeat1, 2, 0, 0), SHIFT_REPEAT(207), - [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_contract_body_repeat1, 2, 0, 0), SHIFT_REPEAT(373), - [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_contract_body_repeat1, 2, 0, 0), SHIFT_REPEAT(451), - [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_contract_body_repeat1, 2, 0, 0), SHIFT_REPEAT(456), - [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_contract_body_repeat1, 2, 0, 0), SHIFT_REPEAT(457), - [266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), - [268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1, 0, 0), - [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_trait_body_repeat1, 2, 0, 0), SHIFT_REPEAT(377), - [279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_trait_body_repeat1, 2, 0, 0), SHIFT_REPEAT(437), - [282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_trait_body_repeat1, 2, 0, 0), SHIFT_REPEAT(210), - [285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_trait_body_repeat1, 2, 0, 0), SHIFT_REPEAT(441), - [288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_body_repeat1, 2, 0, 0), - [290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_trait_body_repeat1, 2, 0, 0), SHIFT_REPEAT(204), - [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_trait_body_repeat1, 2, 0, 0), SHIFT_REPEAT(207), - [296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_trait_body_repeat1, 2, 0, 0), SHIFT_REPEAT(451), - [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_trait_body_repeat1, 2, 0, 0), SHIFT_REPEAT(456), - [302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_trait_body_repeat1, 2, 0, 0), SHIFT_REPEAT(457), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_argument_list, 3, 0, 0), - [311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instance_argument_list, 3, 0, 0), - [313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1, 0, 0), - [315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1, 0, 0), - [317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), - [325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), - [327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_argument_list, 2, 0, 0), - [329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instance_argument_list, 2, 0, 0), - [331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_call_expression, 2, 0, 12), - [333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_call_expression, 2, 0, 12), - [335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_expression, 2, 0, 12), - [337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instance_expression, 2, 0, 12), - [339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_assert_expression, 2, 0, 14), - [341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_assert_expression, 2, 0, 14), - [343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initOf, 3, 0, 23), - [349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initOf, 3, 0, 23), - [351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), - [353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), - [355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 0), - [357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 0), - [359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_argument_list, 4, 0, 0), - [361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instance_argument_list, 4, 0, 0), - [363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), - [365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), - [367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), - [369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), - [371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_call_expression, 4, 0, 39), - [373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_call_expression, 4, 0, 39), - [375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_argument_list, 5, 0, 0), - [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instance_argument_list, 5, 0, 0), - [379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), - [381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), - [383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 11), - [385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 11), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 26), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), - [413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 26), - [415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 38), - [417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 38), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 49), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 65), - [429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 65), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 9, 0, 79), - [435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 9, 0, 79), - [437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, 0, 78), - [439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, 0, 78), - [441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 2, 0, 0), - [443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 2, 0, 0), - [445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 46), - [447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 46), - [449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 5, 0, 66), - [451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 5, 0, 66), - [453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 73), - [455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 73), - [457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 66), - [459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 66), - [461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1, 0, 24), - [467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_statement, 3, 0, 47), - [471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_statement, 3, 0, 26), - [473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_argument, 3, 0, 48), - [475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_statement, 4, 0, 57), - [477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_after_id, 4, 0, 58), - [479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_after_id, 5, 0, 67), - [483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_constant, 6, 0, 43), - [485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_statement, 6, 0, 43), - [487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destruct_statement, 5, 0, 64), - [489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_constant, 7, 0, 60), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), - [499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(348), - [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 3, 0, 3), - [520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function, 7, 0, 53), - [522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant, 7, 0, 43), - [524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_function, 7, 0, 44), - [526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_function_body, 3, 0, 0), - [528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_function, 7, 0, 45), - [530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_function, 6, 0, 34), - [532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function, 6, 0, 36), - [534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function, 6, 0, 37), - [536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function, 4, 0, 10), - [538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 3, 0, 5), - [540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_contract, 4, 0, 17), - [542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_function_body, 2, 0, 0), - [544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_contract, 4, 0, 18), - [546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_function, 6, 0, 33), - [548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_message, 3, 0, 6), - [550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait, 4, 0, 19), - [552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant, 5, 0, 20), - [554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_body, 5, 0, 0), - [556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_body, 2, 0, 0), - [558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function, 7, 0, 52), - [560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function, 4, 0, 9), - [562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_native_function, 8, 0, 54), - [564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_function, 8, 0, 55), - [566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_function, 8, 0, 56), - [568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant, 6, 0, 41), - [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_function, 5, 0, 22), - [572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait, 4, 0, 17), - [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_item, 1, 0, 2), - [576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_contract, 3, 0, 5), - [578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant, 8, 0, 60), - [580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_native_function, 9, 0, 62), - [582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_function, 9, 0, 63), - [584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_body, 2, 0, 0), - [586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait, 3, 0, 5), - [588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_message, 4, 0, 15), - [590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_contract_body, 2, 0, 0), - [592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_body, 4, 0, 0), - [594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_body, 3, 0, 0), - [596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_contract_body, 3, 0, 0), - [598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_contract_body, 4, 0, 0), - [600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_native_function, 10, 0, 71), - [602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_body, 3, 0, 0), - [604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function, 5, 0, 29), - [606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive, 3, 0, 4), - [608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function, 5, 0, 30), - [610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_native_function, 11, 0, 77), - [612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_contract, 5, 0, 31), - [614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait, 5, 0, 32), - [616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_body, 4, 0, 0), - [618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_item, 1, 0, 1), - [620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_definition, 7, 0, 75), - [622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition, 7, 0, 75), - [624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_contract_body_repeat1, 1, 0, 2), - [626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_contract_body_repeat1, 1, 0, 2), - [628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_contract_body_repeat1, 2, 0, 0), - [630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_definition, 4, 0, 10), - [632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition, 4, 0, 10), - [634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receive_function, 4, 0, 51), - [636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receive_function, 4, 0, 51), - [638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function, 4, 0, 51), - [640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function, 4, 0, 51), - [642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receive_function, 5, 0, 59), - [644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receive_function, 5, 0, 59), - [646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounced_function, 5, 0, 59), - [648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounced_function, 5, 0, 59), - [650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function, 5, 0, 59), - [652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function, 5, 0, 59), - [654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_definition, 5, 0, 30), - [656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition, 5, 0, 30), - [658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_definition, 6, 0, 68), - [660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition, 6, 0, 68), - [662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_function, 3, 0, 40), - [664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_function, 3, 0, 40), - [666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_trait_body_repeat1, 1, 0, 2), - [668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_body_repeat1, 1, 0, 2), - [670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_trait_body_repeat1, 2, 0, 0), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_asm_function_body_repeat1, 2, 0, 0), SHIFT_REPEAT(500), - [697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_asm_function_body_repeat1, 2, 0, 0), - [699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_asm_function_body_repeat1, 2, 0, 0), SHIFT_REPEAT(505), - [702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_asm_function_body_repeat1, 2, 0, 0), SHIFT_REPEAT(200), - [705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_asm_function_body_repeat1, 2, 0, 0), SHIFT_REPEAT(477), - [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_attributes_repeat1, 2, 0, 0), SHIFT_REPEAT(202), - [713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_attributes_repeat1, 2, 0, 0), - [715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_attributes_repeat1, 2, 0, 0), SHIFT_REPEAT(207), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_attributes, 1, 0, 0), - [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_attribute, 1, 0, 0), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_asm_list_repeat1, 2, 0, 0), - [742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_asm_list_repeat1, 2, 0, 0), SHIFT_REPEAT(506), - [745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_asm_list_repeat1, 2, 0, 0), SHIFT_REPEAT(208), - [748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_asm_list_repeat1, 2, 0, 0), SHIFT_REPEAT(497), - [751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_attribute, 4, 0, 13), - [753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_attributes_repeat1, 1, 0, 0), - [755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_attributes_repeat1, 1, 0, 0), REDUCE(aux_sym_function_attributes_repeat1, 1, 0, 0), - [758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_attributes_repeat1, 1, 0, 0), - [760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_arrangement, 4, 0, 21), - [762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_arrangement, 3, 0, 7), - [768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_list, 4, 0, 0), - [770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__asm_instruction, 4, 0, 0), - [772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_arrangement, 3, 0, 8), - [774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_list, 5, 0, 0), - [776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_arrangement, 2, 0, 0), - [778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__asm_string, 4, 0, 0), - [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_type, 6, 0, 61), - [788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2, 0, 0), - [790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_type, 7, 0, 69), - [792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_type, 7, 0, 70), - [794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_type, 8, 0, 76), - [796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounced_type, 4, 0, 42), - [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration, 3, 0, 9), - [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_after_id, 2, 0, 4), - [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_attributes_repeat1, 2, 0, 0), - [816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_attributes_repeat1, 2, 0, 0), SHIFT_REPEAT(248), - [819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration, 4, 0, 29), - [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_attributes, 1, 0, 0), - [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tlb_serialization, 2, 0, 4), - [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_asm_arrangement_args_repeat1, 2, 0, 0), SHIFT_REPEAT(254), - [838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_arrangement_args_repeat1, 2, 0, 0), - [840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), - [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), - [848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration, 6, 0, 52), - [850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 5, 0, 0), - [852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_contract_attributes, 1, 0, 0), - [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_arrangement_args, 1, 0, 0), - [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), - [878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(267), - [881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_contract_attributes_repeat1, 2, 0, 0), - [883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_contract_attributes_repeat1, 2, 0, 0), SHIFT_REPEAT(449), - [886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 0), - [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration, 5, 0, 36), - [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_list_repeat1, 2, 0, 0), - [906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_list_repeat1, 2, 0, 0), SHIFT_REPEAT(475), - [909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), - [911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(379), - [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_contract_attributes_repeat1, 4, 0, 0), - [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(333), - [935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_arrangement_rets_repeat1, 2, 0, 0), - [945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_asm_arrangement_rets_repeat1, 2, 0, 0), SHIFT_REPEAT(287), - [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), - [964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(28), - [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_instance_argument_list_repeat1, 2, 0, 0), - [973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_instance_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(356), - [976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_after_id, 3, 0, 50), - [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_constant, 4, 0, 20), - [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_argument, 1, 0, 25), - [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [1004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destruct_bind, 1, 0, 25), - [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [1020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_constant, 5, 0, 41), - [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [1028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_list, 3, 0, 0), - [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [1034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_arrangement_rets, 2, 0, 0), - [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [1038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_destruct_bind_list_repeat1, 2, 0, 0), - [1040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_destruct_bind_list_repeat1, 2, 0, 0), SHIFT_REPEAT(389), - [1043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_list, 2, 0, 0), - [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [1063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_list, 4, 0, 0), - [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [1083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field, 2, 0, 28), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [1087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_list, 1, 0, 0), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [1093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_variable, 2, 0, 28), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [1111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__body_item_without_semicolon, 1, 0, 16), - [1113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destruct_bind, 3, 0, 72), - [1115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_until_statement, 6, 0, 74), - [1117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 35), - [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [1127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_identifier, 1, 0, 0), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [1135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destruct_bind_list, 2, 0, 0), - [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [1175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_message_value, 3, 0, 0), - [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [1207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destruct_bind_list, 3, 0, 0), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [1251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destruct_bind_list, 4, 0, 0), - [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [1265] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [1273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destruct_bind_list, 5, 0, 0), - [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [1285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destruct_bind_list, 6, 0, 0), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [75] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8), + [78] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(35), + [81] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6), + [84] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), + [86] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(274), + [89] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(377), + [92] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(24), + [95] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(440), + [98] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(442), + [101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(447), + [104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(380), + [107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(381), + [110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(450), + [113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(36), + [116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(494), + [119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(16), + [122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(82), + [125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(65), + [128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(65), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access_expression, 3, 0, 27), + [137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access_expression, 3, 0, 27), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_expression, 1, 0, 0), + [143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__path_expression, 1, 0, 0), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__path_expression, 1, 0, 0), + [149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_expression, 1, 0, 0), + [151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), + [153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 2, 0, 0), + [155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 2, 0, 0), + [157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 3, 0, 0), + [159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 3, 0, 0), + [161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 4, 0, 0), + [163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 4, 0, 0), + [165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), + [167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(468), + [170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(418), + [173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(220), + [176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(406), + [179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(213), + [182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(491), + [185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(218), + [188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(219), + [191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(478), + [194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(317), + [197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(426), + [200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(485), + [203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(492), + [206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2, 0, 0), + [208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_contract_body_repeat1, 2, 0, 0), SHIFT_REPEAT(334), + [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_contract_body_repeat1, 2, 0, 0), SHIFT_REPEAT(449), + [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_contract_body_repeat1, 2, 0, 0), SHIFT_REPEAT(220), + [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_contract_body_repeat1, 2, 0, 0), SHIFT_REPEAT(446), + [244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_contract_body_repeat1, 2, 0, 0), + [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_contract_body_repeat1, 2, 0, 0), SHIFT_REPEAT(218), + [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_contract_body_repeat1, 2, 0, 0), SHIFT_REPEAT(219), + [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_contract_body_repeat1, 2, 0, 0), SHIFT_REPEAT(333), + [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_contract_body_repeat1, 2, 0, 0), SHIFT_REPEAT(407), + [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_contract_body_repeat1, 2, 0, 0), SHIFT_REPEAT(421), + [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_contract_body_repeat1, 2, 0, 0), SHIFT_REPEAT(423), + [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), + [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1, 0, 0), + [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_trait_body_repeat1, 2, 0, 0), SHIFT_REPEAT(334), + [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_trait_body_repeat1, 2, 0, 0), SHIFT_REPEAT(449), + [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_trait_body_repeat1, 2, 0, 0), SHIFT_REPEAT(220), + [283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_trait_body_repeat1, 2, 0, 0), SHIFT_REPEAT(446), + [286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_body_repeat1, 2, 0, 0), + [288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_trait_body_repeat1, 2, 0, 0), SHIFT_REPEAT(218), + [291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_trait_body_repeat1, 2, 0, 0), SHIFT_REPEAT(219), + [294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_trait_body_repeat1, 2, 0, 0), SHIFT_REPEAT(407), + [297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_trait_body_repeat1, 2, 0, 0), SHIFT_REPEAT(421), + [300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_trait_body_repeat1, 2, 0, 0), SHIFT_REPEAT(423), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_asm_function_body_repeat1, 2, 0, 0), SHIFT_REPEAT(29), + [332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_function_body_repeat1, 2, 0, 0), + [334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_asm_function_body_repeat1, 2, 0, 0), + [336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_asm_function_body_repeat1, 2, 0, 0), SHIFT_REPEAT(471), + [339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_asm_function_body_repeat1, 2, 0, 0), SHIFT_REPEAT(134), + [342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_asm_function_body_repeat1, 2, 0, 0), SHIFT_REPEAT(206), + [345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_asm_function_body_repeat1, 2, 0, 0), SHIFT_REPEAT(212), + [348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_asm_function_body_repeat1, 2, 0, 0), SHIFT_REPEAT(134), + [351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_asm_function_body_repeat1, 2, 0, 0), SHIFT_REPEAT(184), + [354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_expression, 2, 0, 12), + [364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instance_expression, 2, 0, 12), + [366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), + [368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), + [370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initOf, 3, 0, 23), + [372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initOf, 3, 0, 23), + [374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), + [376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), + [378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_argument_list, 3, 0, 0), + [380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instance_argument_list, 3, 0, 0), + [382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_argument_list, 2, 0, 0), + [384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instance_argument_list, 2, 0, 0), + [386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_call_expression, 4, 0, 39), + [388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_call_expression, 4, 0, 39), + [390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), + [392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), + [394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_argument_list, 4, 0, 0), + [396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instance_argument_list, 4, 0, 0), + [398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 0), + [400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 0), + [402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_argument_list, 5, 0, 0), + [404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instance_argument_list, 5, 0, 0), + [406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_assert_expression, 2, 0, 14), + [412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_assert_expression, 2, 0, 14), + [414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_call_expression, 2, 0, 12), + [416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_call_expression, 2, 0, 12), + [418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1, 0, 0), + [420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1, 0, 0), + [422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 38), + [430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 38), + [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 26), + [436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 26), + [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 66), + [464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 66), + [466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 11), + [470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 11), + [472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 50), + [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_asm_function_body_repeat1, 2, 0, 0), SHIFT_REPEAT(201), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 2, 0, 0), + [489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 2, 0, 0), + [491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 47), + [493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 47), + [495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 67), + [497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 67), + [499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 74), + [501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 74), + [503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 5, 0, 67), + [505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 5, 0, 67), + [507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 9, 0, 80), + [509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 9, 0, 80), + [511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, 0, 79), + [513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, 0, 79), + [515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_statement, 3, 0, 48), + [525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_statement, 3, 0, 26), + [527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_argument, 3, 0, 49), + [529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1, 0, 24), + [531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_statement, 4, 0, 58), + [533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_after_id, 5, 0, 68), + [535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destruct_statement, 5, 0, 65), + [537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_after_id, 4, 0, 59), + [539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_statement, 6, 0, 43), + [541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_constant, 7, 0, 61), + [543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_constant, 6, 0, 43), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), + [559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(365), + [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_argument_list, 1, 0, 0), + [578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_asm_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(29), + [581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_asm_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(471), + [584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_asm_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(135), + [587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_asm_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(206), + [590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_asm_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(212), + [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_asm_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(135), + [596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_asm_argument_list_repeat1, 2, 0, 0), + [598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 3, 0, 3), + [600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_function, 8, 0, 56), + [602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_function, 6, 0, 33), + [604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_function, 6, 0, 34), + [606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function, 6, 0, 36), + [608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function, 6, 0, 37), + [610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_contract_body, 2, 0, 0), + [612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_contract, 4, 0, 17), + [614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_body, 2, 0, 0), + [616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_body, 2, 0, 0), + [618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait, 4, 0, 17), + [620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_item, 1, 0, 1), + [622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_body, 5, 0, 0), + [624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_contract, 4, 0, 18), + [626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function, 7, 0, 53), + [628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function, 7, 0, 54), + [630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_native_function, 8, 0, 55), + [632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait, 5, 0, 32), + [634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_function, 8, 0, 57), + [636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait, 4, 0, 19), + [638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant, 5, 0, 20), + [640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_item, 1, 0, 2), + [642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_function, 5, 0, 22), + [644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_body, 4, 0, 0), + [646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_contract_body, 4, 0, 0), + [648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function, 4, 0, 10), + [650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant, 8, 0, 61), + [652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_native_function, 9, 0, 63), + [654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_function, 9, 0, 64), + [656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant, 6, 0, 41), + [658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 3, 0, 5), + [660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_message, 4, 0, 15), + [662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_message, 3, 0, 6), + [664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant, 7, 0, 43), + [666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_function, 7, 0, 44), + [668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function, 4, 0, 9), + [670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_contract, 3, 0, 5), + [672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_native_function, 10, 0, 72), + [674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_function_body, 3, 0, 0), + [676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_body, 3, 0, 0), + [678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive, 3, 0, 4), + [680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_native_function, 11, 0, 78), + [682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_contract_body, 3, 0, 0), + [684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_function_body, 2, 0, 0), + [686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait, 3, 0, 5), + [688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_expression, 1, 0, 25), + [690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_expression, 1, 0, 25), + [692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_body, 3, 0, 0), + [694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_expression, 2, 0, 45), + [696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_expression, 2, 0, 45), + [698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_function, 7, 0, 46), + [700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function, 5, 0, 29), + [702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function, 5, 0, 30), + [704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_contract, 5, 0, 31), + [706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_body, 4, 0, 0), + [708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_definition, 4, 0, 10), + [710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition, 4, 0, 10), + [712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_definition, 5, 0, 30), + [714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition, 5, 0, 30), + [716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_definition, 6, 0, 69), + [718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition, 6, 0, 69), + [720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_contract_body_repeat1, 1, 0, 2), + [722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_contract_body_repeat1, 1, 0, 2), + [724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_function, 3, 0, 40), + [726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_function, 3, 0, 40), + [728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receive_function, 4, 0, 52), + [730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receive_function, 4, 0, 52), + [732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function, 4, 0, 52), + [734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function, 4, 0, 52), + [736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function, 5, 0, 60), + [738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function, 5, 0, 60), + [740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receive_function, 5, 0, 60), + [742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receive_function, 5, 0, 60), + [744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_definition, 7, 0, 76), + [746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition, 7, 0, 76), + [748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_contract_body_repeat1, 2, 0, 0), + [750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounced_function, 5, 0, 60), + [752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounced_function, 5, 0, 60), + [754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_boc_hex, 1, 0, 0), + [756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_boc_hex, 1, 0, 0), + [758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_trait_body_repeat1, 1, 0, 2), + [760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_body_repeat1, 1, 0, 2), + [762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_sequence, 3, 0, 0), + [764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_sequence, 3, 0, 0), + [766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_string, 3, 0, 0), + [768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_string, 3, 0, 0), + [770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_sequence, 2, 0, 0), + [772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_sequence, 2, 0, 0), + [774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_trait_body_repeat1, 2, 0, 0), + [776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_stack_register, 1, 0, 0), + [778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_stack_register, 1, 0, 0), + [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_attributes_repeat1, 2, 0, 0), SHIFT_REPEAT(215), + [791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_attributes_repeat1, 2, 0, 0), + [793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_attributes_repeat1, 2, 0, 0), SHIFT_REPEAT(219), + [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_attributes, 1, 0, 0), + [804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_attribute, 1, 0, 0), + [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_attributes_repeat1, 1, 0, 0), + [810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_attributes_repeat1, 1, 0, 0), REDUCE(aux_sym_function_attributes_repeat1, 1, 0, 0), + [813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_attributes_repeat1, 1, 0, 0), + [815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_attribute, 4, 0, 13), + [817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_arrangement, 3, 0, 8), + [819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_arrangement, 2, 0, 0), + [825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_arrangement, 4, 0, 21), + [827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_arrangement, 3, 0, 7), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_type, 8, 0, 77), + [837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounced_type, 4, 0, 42), + [839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2, 0, 0), + [841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_type, 7, 0, 70), + [843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_type, 6, 0, 62), + [845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_type, 7, 0, 71), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_after_id, 2, 0, 4), + [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_attributes_repeat1, 2, 0, 0), + [867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_attributes_repeat1, 2, 0, 0), SHIFT_REPEAT(254), + [870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration, 3, 0, 9), + [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_attributes, 1, 0, 0), + [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration, 4, 0, 29), + [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tlb_serialization, 2, 0, 4), + [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), + [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 5, 0, 0), + [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_arrangement_args, 1, 0, 0), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_asm_arrangement_args_repeat1, 2, 0, 0), SHIFT_REPEAT(267), + [917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_arrangement_args_repeat1, 2, 0, 0), + [919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 0), + [921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_contract_attributes_repeat1, 2, 0, 0), + [923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_contract_attributes_repeat1, 2, 0, 0), SHIFT_REPEAT(492), + [926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_contract_attributes, 1, 0, 0), + [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), + [936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration, 5, 0, 36), + [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration, 6, 0, 53), + [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(280), + [955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_destruct_bind_list_repeat1, 2, 0, 0), + [957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_destruct_bind_list_repeat1, 2, 0, 0), SHIFT_REPEAT(397), + [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), + [980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(339), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_arrangement_rets_repeat1, 2, 0, 0), + [989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_asm_arrangement_rets_repeat1, 2, 0, 0), SHIFT_REPEAT(290), + [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destruct_bind, 1, 0, 25), + [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [1004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_list_repeat1, 2, 0, 0), + [1006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_list_repeat1, 2, 0, 0), SHIFT_REPEAT(474), + [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [1015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_list, 2, 0, 0), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [1019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), + [1021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(28), + [1024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_constant, 4, 0, 20), + [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [1034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_constant, 5, 0, 41), + [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [1048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_contract_attributes_repeat1, 4, 0, 0), + [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [1072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_instance_argument_list_repeat1, 2, 0, 0), + [1074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_instance_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(371), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [1081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(353), + [1084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), + [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [1088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_argument, 1, 0, 25), + [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_list, 3, 0, 0), + [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_arrangement_rets, 2, 0, 0), + [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_after_id, 3, 0, 51), + [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destruct_bind, 3, 0, 73), + [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__body_item_without_semicolon, 1, 0, 16), + [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [1130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 35), + [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [1136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [1138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [1146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [1148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [1150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [1162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field, 2, 0, 28), + [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_variable, 2, 0, 28), + [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [1168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_list, 1, 0, 0), + [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_until_statement, 6, 0, 75), + [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_list, 4, 0, 0), + [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destruct_bind_list, 2, 0, 0), + [1186] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_message_value, 3, 0, 0), + [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [1224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_identifier, 1, 0, 0), + [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destruct_bind_list, 3, 0, 0), + [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destruct_bind_list, 4, 0, 0), + [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destruct_bind_list, 5, 0, 0), + [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destruct_bind_list, 6, 0, 0), + [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), }; #ifdef __cplusplus diff --git a/test/corpus/asm_function.txt b/test/corpus/asm_function.txt index 9493254..463b7ac 100644 --- a/test/corpus/asm_function.txt +++ b/test/corpus/asm_function.txt @@ -2,43 +2,65 @@ asm function ============================================ -/* - Not yet supported due to +": - { char " word 1 ' $+ } ::_ +" -*/ - asm(-> 1_0_1) fun pushInt(): Int { 42 PUSHINT } -asm fun pushIntWithNewWord(): Int { - { 42 PUSHINT } : mostly-harmless - mostly-harmless +asm fun sequences() { + <{ 42 PUSHINT }> PUSHCONT + <{ 42 PUSHINT }>CONT PUSHCONT } -asm(x -> 000) fun isIntAnInt(x: Int): Int { - <{ - TRY:<{ - 0 PUSHINT ADD DROP -1 PUSHINT - }>CATCH<{ - 2DROP 0 PUSHINT - }> - }>CONT 1 1 CALLXARGS +asm(x -> 000) fun inAndOut(x: Int): Int +{ +NOP } -asm fun moreInterestingExamples() { - x{00} @Defop NOP - { swap ({) over 2+ -roll swap (compile) (}) } : does - B{123} - b{0101} - char } - abort" }}} " +asm fun noWhitespace() {b{00} PUSHSLICE} + +asm fun otherSamples() { + // comments + /* comments */ + + // string + " YAYAYA " DEBUGSTR + + // hex bitstring + x{DEADBEEF_} PUSHSLICE + x{babecafe} SLICE + x{} SLICE + + // binary bitstring + b{} PUSHSLICE + b{1} SLICE + + // BoC in hex + B{DEADBEEF_} B>boc PUSHSLICE + B{babecafe} B>boc SLICE + B{} B>boc SLICE + PUSHREF + + // Control register + c0 PUSHCTR + c15 PUSH + + // Stack register + s0 PUSH + s15 POP + 16 s() PUSH + + // Number + 0 PUSHINT + 500 INT + -42 INT + 0b10 INT + 0x0f INT + 0xFF INT } --- (source_file - (comment) (asm_function arrangement: (asm_arrangement returns: (asm_arrangement_rets @@ -46,14 +68,34 @@ asm fun moreInterestingExamples() { name: (identifier) parameters: (parameter_list) result: (type_identifier) - body: (asm_function_body) + body: (asm_function_body + (asm_expression + arguments: (asm_argument_list + (asm_integer)) + name: (tvm_instruction)) + ) ) (asm_function name: (identifier) parameters: (parameter_list) - result: (type_identifier) body: (asm_function_body - (asm_list)) + (asm_expression + arguments: (asm_argument_list + (asm_sequence + (asm_expression + arguments: (asm_argument_list + (asm_integer)) + name: (tvm_instruction)))) + name: (tvm_instruction)) + (asm_expression + arguments: (asm_argument_list + (asm_sequence + (asm_expression + arguments: (asm_argument_list + (asm_integer)) + name: (tvm_instruction)))) + name: (tvm_instruction)) + ) ) (asm_function arrangement: (asm_arrangement @@ -65,15 +107,120 @@ asm fun moreInterestingExamples() { parameters: (parameter_list (parameter name: (identifier) - type: (type_identifier)) - ) + type: (type_identifier))) result: (type_identifier) - body: (asm_function_body) + body: (asm_function_body + (asm_expression + name: (tvm_instruction)) + ) ) (asm_function name: (identifier) parameters: (parameter_list) body: (asm_function_body - (asm_list)) + (asm_expression + arguments: (asm_argument_list + (asm_bin_bitstring)) + name: (tvm_instruction)) + ) + ) + (asm_function + name: (identifier) + parameters: (parameter_list) + body: (asm_function_body + (comment) + (comment) + (comment) + (asm_expression + arguments: (asm_argument_list + (asm_string)) + name: (tvm_instruction)) + (comment) + (asm_expression + arguments: (asm_argument_list + (asm_hex_bitstring)) + name: (tvm_instruction)) + (asm_expression + arguments: (asm_argument_list + (asm_hex_bitstring)) + name: (tvm_instruction)) + (asm_expression + arguments: (asm_argument_list + (asm_hex_bitstring)) + name: (tvm_instruction)) + (comment) + (asm_expression + arguments: (asm_argument_list + (asm_bin_bitstring)) + name: (tvm_instruction)) + (asm_expression + arguments: (asm_argument_list + (asm_bin_bitstring)) + name: (tvm_instruction)) + (comment) + (asm_expression + arguments: (asm_argument_list + (asm_boc_hex)) + name: (tvm_instruction)) + (asm_expression + arguments: (asm_argument_list + (asm_boc_hex)) + name: (tvm_instruction)) + (asm_expression + arguments: (asm_argument_list + (asm_boc_hex)) + name: (tvm_instruction)) + (asm_expression + arguments: (asm_argument_list + (asm_boc_hex)) + name: (tvm_instruction)) + (comment) + (asm_expression + arguments: (asm_argument_list + (asm_control_register)) + name: (tvm_instruction)) + (asm_expression + arguments: (asm_argument_list + (asm_control_register)) + name: (tvm_instruction)) + (comment) + (asm_expression + arguments: (asm_argument_list + (asm_stack_register)) + name: (tvm_instruction)) + (asm_expression + arguments: (asm_argument_list + (asm_stack_register)) + name: (tvm_instruction)) + (asm_expression + arguments: (asm_argument_list + (asm_stack_register)) + name: (tvm_instruction)) + (comment) + (asm_expression + arguments: (asm_argument_list + (asm_integer)) + name: (tvm_instruction)) + (asm_expression + arguments: (asm_argument_list + (asm_integer)) + name: (tvm_instruction)) + (asm_expression + arguments: (asm_argument_list + (asm_integer)) + name: (tvm_instruction)) + (asm_expression + arguments: (asm_argument_list + (asm_integer)) + name: (tvm_instruction)) + (asm_expression + arguments: (asm_argument_list + (asm_integer)) + name: (tvm_instruction)) + (asm_expression + arguments: (asm_argument_list + (asm_integer)) + name: (tvm_instruction)) + ) ) ) diff --git a/test/highlight/asm_function.tact b/test/highlight/asm_function.tact index afbd5e5..b02c89d 100644 --- a/test/highlight/asm_function.tact +++ b/test/highlight/asm_function.tact @@ -15,30 +15,62 @@ asm(-> 1_0_1) fun pushInt(): Int { 42 PUSHINT } -asm fun pushIntWithNewWord(): Int { - { 42 PUSHINT } : mostly-harmless - mostly-harmless +// TODO: highlighting queries! And indents too... And use that in my hx +// In a separate commit from now, yeah. + +asm fun sequences() { + <{ 42 PUSHINT }> PUSHCONT + + <{ 42 PUSHINT }>CONT PUSHCONT } -asm(x -> 000) fun isIntAnInt(x: Int): Int { +asm(x -> 000) fun inAndOut(x: Int): Int // <- keyword // ^ punctuation.bracket // ^ variable // ^ operator // ^ number // ^ punctuation.bracket - <{ - TRY:<{ - 0 PUSHINT ADD DROP -1 PUSHINT - }>CATCH<{ - 2DROP 0 PUSHINT - }> - }>CONT 1 1 CALLXARGS +{ +NOP } -asm fun moreInterestingExamples() { - x{00} @Defop NOP - { swap ({) over 2+ -roll swap (compile) (}) } : does - B{123} - b{0101} +asm fun noWhitespace() {b{00} PUSHSLICE} + +asm fun otherSamples() { + // comments + /* comments */ + + // string + " YAYAYA " DEBUGSTR + + // hex bitstring + x{DEADBEEF_} PUSHSLICE + x{babecafe} SLICE + x{} SLICE + + // binary bitstring + b{} PUSHSLICE + b{1} SLICE + + // BoC in hex + B{DEADBEEF_} B>boc PUSHSLICE + B{babecafe} B>boc SLICE + B{} B>boc SLICE + PUSHREF + + // Control register + c0 PUSHCTR + c15 PUSH + + // Stack register + s0 PUSH + s15 POP + 16 s() PUSH + + // Number + 0 PUSHINT + 500 INT + -42 INT } + diff --git a/test/sample/example.tact b/test/sample/example.tact index 2a05efb..b5d6c22 100644 --- a/test/sample/example.tact +++ b/test/sample/example.tact @@ -1,5 +1,10 @@ import "@stdlib/ownable"; +asm fun lol() { + NOP + s15 PUSH +} + struct SampleStruct { message: Int?; }