From 6a1a71d53b1d77cd90b87a4c35eeadec359669ba 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 | 103 +- src/grammar.json | 175 +- src/node-types.json | 134 +- src/parser.c | 14167 ++++++++++++++++----------------- test/corpus/asm_function.txt | 191 +- test/sample/example.tact | 5 + 8 files changed, 7412 insertions(+), 7372 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..3fce153 100644 --- a/grammar.js +++ b/grammar.js @@ -218,47 +218,94 @@ 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_number, ), - _asm_string: (_) => + // <{ ... }> + asm_sequence: ($) => + seq("<{", repeat($.asm_expression), choice("}>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 + asm_number: (_) => /-?\d+/, + + // 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..b7f2bf4 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -478,98 +478,125 @@ "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_number" } ] }, - "_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": "}>CONT" }, { - "type": "PATTERN", - "value": "\\s" - }, - { - "type": "PATTERN", - "value": "\\S" - }, - { - "type": "PATTERN", - "value": "\\s" + "type": "STRING", + "value": "}>" } ] - }, - { - "type": "PATTERN", - "value": "\\S+" } ] }, - "_asm_string": { + "asm_string": { "type": "SEQ", "members": [ { @@ -610,13 +637,55 @@ "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": "\\s" + "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": "\\d\\d?\\d?\\s+s\\(\\)" + } + ] + }, + "asm_number": { + "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..0c3870e 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_number", + "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_number", + "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,14 @@ "type": "}", "named": false }, + { + "type": "}>", + "named": false + }, + { + "type": "}>CONT", + "named": false + }, { "type": "~", "named": false diff --git a/src/parser.c b/src/parser.c index 88c0ae1..6a4086e 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 226 #define ALIAS_COUNT 3 -#define TOKEN_COUNT 108 +#define TOKEN_COUNT 116 #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,215 @@ 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_GTCONT = 21, + anon_sym_RBRACE_GT = 22, + anon_sym_abort_DQUOTE = 23, + anon_sym_DOT_DQUOTE = 24, + anon_sym_PLUS_DQUOTE = 25, + anon_sym_DQUOTE = 26, + aux_sym_asm_string_token1 = 27, + anon_sym_DQUOTE2 = 28, + sym_asm_hex_bitstring = 29, + sym_asm_bin_bitstring = 30, + aux_sym_asm_boc_hex_token1 = 31, + aux_sym_asm_boc_hex_token2 = 32, + sym_asm_control_register = 33, + aux_sym_asm_stack_register_token1 = 34, + aux_sym_asm_stack_register_token2 = 35, + sym_asm_number = 36, + sym_tvm_instruction = 37, + anon_sym_mutates = 38, + anon_sym_extends = 39, + anon_sym_inline = 40, + anon_sym_get = 41, + anon_sym_COMMA = 42, + anon_sym_struct = 43, + anon_sym_message = 44, + anon_sym_contract = 45, + anon_sym_trait = 46, + anon_sym_ATinterface = 47, + anon_sym_with = 48, + anon_sym_init = 49, + anon_sym_receive = 50, + anon_sym_bounced = 51, + anon_sym_external = 52, + anon_sym_let = 53, + anon_sym_DOT_DOT = 54, + anon_sym_return = 55, + anon_sym_PLUS_EQ = 56, + anon_sym_DASH_EQ = 57, + anon_sym_STAR_EQ = 58, + anon_sym_SLASH_EQ = 59, + anon_sym_PERCENT_EQ = 60, + anon_sym_AMP_EQ = 61, + anon_sym_PIPE_EQ = 62, + anon_sym_CARET_EQ = 63, + anon_sym_PIPE_PIPE_EQ = 64, + anon_sym_AMP_AMP_EQ = 65, + anon_sym_GT_GT_EQ = 66, + anon_sym_LT_LT_EQ = 67, + anon_sym_if = 68, + anon_sym_else = 69, + anon_sym_while = 70, + anon_sym_repeat = 71, + anon_sym_do = 72, + anon_sym_until = 73, + anon_sym_try = 74, + anon_sym_catch = 75, + anon_sym_foreach = 76, + anon_sym_in = 77, + anon_sym_QMARK = 78, + anon_sym_PIPE_PIPE = 79, + anon_sym_AMP_AMP = 80, + anon_sym_PIPE = 81, + anon_sym_CARET = 82, + anon_sym_AMP = 83, + anon_sym_BANG_EQ = 84, + anon_sym_EQ_EQ = 85, + anon_sym_GT = 86, + anon_sym_GT_EQ = 87, + anon_sym_LT = 88, + anon_sym_LT_EQ = 89, + anon_sym_GT_GT = 90, + anon_sym_LT_LT = 91, + anon_sym_PLUS = 92, + anon_sym_DASH = 93, + anon_sym_STAR = 94, + anon_sym_SLASH = 95, + anon_sym_PERCENT = 96, + anon_sym_BANG = 97, + anon_sym_TILDE = 98, + anon_sym_BANG_BANG = 99, + anon_sym_DOT = 100, + anon_sym_initOf = 101, + anon_sym_map = 102, + sym__type_identifier = 103, + anon_sym_as = 104, + sym__func_quoted_id = 105, + sym__func_plain_id = 106, + sym_self = 107, + sym__non_quote_or_backslash_char = 108, + sym_escape_sequence = 109, + anon_sym_true = 110, + anon_sym_false = 111, + sym_null = 112, + sym_integer = 113, + sym__decimal_integer = 114, + sym_comment = 115, + sym_source_file = 116, + sym_import = 117, + sym__module_item = 118, + sym_primitive = 119, + sym__constant = 120, + sym_constant_attributes = 121, + sym_native_function = 122, + sym_asm_function = 123, + sym_asm_arrangement = 124, + sym_asm_arrangement_args = 125, + sym_asm_arrangement_rets = 126, + sym_asm_function_body = 127, + sym_asm_expression = 128, + sym_asm_argument_list = 129, + sym__asm_primitive = 130, + sym_asm_sequence = 131, + sym_asm_string = 132, + sym_asm_boc_hex = 133, + sym_asm_stack_register = 134, + sym__function = 135, + sym__function_declaration = 136, + sym__function_definition = 137, + sym_function_attributes = 138, + sym_get_attribute = 139, + sym_parameter_list = 140, + sym_parameter = 141, + sym_struct = 142, + sym_message = 143, + sym_message_value = 144, + sym_struct_body = 145, + sym_field = 146, + sym_storage_constant = 147, + sym_storage_variable = 148, + sym__field_after_id = 149, + sym_contract = 150, + sym_trait = 151, + sym_contract_attributes = 152, + sym_trait_list = 153, + sym_contract_body = 154, + sym_trait_body = 155, + sym__body_item_without_semicolon = 156, + sym_init_function = 157, + sym__receiver_function = 158, + sym_receive_function = 159, + sym_bounced_function = 160, + sym_external_function = 161, + sym__statement = 162, + sym__statement_with_brace = 163, + sym__statement_without_semicolon = 164, + sym_let_statement = 165, + sym_destruct_statement = 166, + sym_destruct_bind_list = 167, + sym_destruct_bind = 168, + sym_block_statement = 169, + sym_return_statement = 170, + sym_expression_statement = 171, + sym_assignment_statement = 172, + sym_augmented_assignment_statement = 173, + sym_if_statement = 174, + sym_else_clause = 175, + sym_while_statement = 176, + sym_repeat_statement = 177, + sym_do_until_statement = 178, + sym_try_statement = 179, + sym_catch_clause = 180, + sym_foreach_statement = 181, + sym__path_expression = 182, + sym__expression = 183, + sym_ternary_expression = 184, + sym_binary_expression = 185, + sym_unary_expression = 186, + sym_value_expression = 187, + sym_non_null_assert_expression = 188, + sym_method_call_expression = 189, + sym_field_access_expression = 190, + sym_static_call_expression = 191, + sym_argument_list = 192, + sym_argument = 193, + sym_parenthesized_expression = 194, + sym_instance_expression = 195, + sym_instance_argument_list = 196, + sym_instance_argument = 197, + sym_initOf = 198, + sym__type = 199, + sym_map_type = 200, + sym_bounced_type = 201, + sym_optional_type = 202, + sym_tlb_serialization = 203, + sym_func_identifier = 204, + sym_string = 205, + sym_boolean = 206, + aux_sym_source_file_repeat1 = 207, + aux_sym_source_file_repeat2 = 208, + aux_sym_constant_attributes_repeat1 = 209, + aux_sym_asm_arrangement_args_repeat1 = 210, + aux_sym_asm_arrangement_rets_repeat1 = 211, + aux_sym_asm_function_body_repeat1 = 212, + aux_sym_asm_argument_list_repeat1 = 213, + aux_sym_function_attributes_repeat1 = 214, + aux_sym_parameter_list_repeat1 = 215, + aux_sym_struct_body_repeat1 = 216, + aux_sym_contract_attributes_repeat1 = 217, + aux_sym_trait_list_repeat1 = 218, + aux_sym_contract_body_repeat1 = 219, + aux_sym_trait_body_repeat1 = 220, + aux_sym_destruct_bind_list_repeat1 = 221, + aux_sym_block_statement_repeat1 = 222, + aux_sym_argument_list_repeat1 = 223, + aux_sym_instance_argument_list_repeat1 = 224, + aux_sym_string_repeat1 = 225, + alias_sym_function_body = 226, + alias_sym_message_body = 227, + alias_sym_trait_attributes = 228, }; static const char * const ts_symbol_names[] = { @@ -255,16 +267,24 @@ 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_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_number] = "asm_number", + [sym_tvm_instruction] = "tvm_instruction", [anon_sym_mutates] = "mutates", [anon_sym_extends] = "extends", [anon_sym_inline] = "inline", @@ -355,9 +375,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 +460,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 +499,24 @@ 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_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_number] = sym_asm_number, + [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 +607,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 +692,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 +791,16 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [aux_sym_asm_list_token1] = { - .visible = false, - .named = false, - }, - [anon_sym_char] = { + [anon_sym_LT_LBRACE] = { .visible = true, .named = false, }, - [aux_sym__asm_instruction_token1] = { - .visible = false, + [anon_sym_RBRACE_GTCONT] = { + .visible = true, .named = false, }, - [aux_sym__asm_instruction_token2] = { - .visible = false, + [anon_sym_RBRACE_GT] = { + .visible = true, .named = false, }, [anon_sym_abort_DQUOTE] = { @@ -787,7 +819,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 +827,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_number] = { + .visible = true, + .named = true, + }, + [sym_tvm_instruction] = { + .visible = true, + .named = true, + }, [anon_sym_mutates] = { .visible = true, .named = false, @@ -1155,18 +1223,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 +1564,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 +1742,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 +1928,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 +2107,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, }, }; @@ -2054,9 +2142,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1] = 1, [2] = 2, [3] = 3, - [4] = 4, - [5] = 2, - [6] = 3, + [4] = 3, + [5] = 5, + [6] = 2, [7] = 7, [8] = 8, [9] = 9, @@ -2148,7 +2236,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [95] = 95, [96] = 96, [97] = 97, - [98] = 98, + [98] = 97, [99] = 99, [100] = 100, [101] = 101, @@ -2178,17 +2266,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] = 10, + [137] = 11, + [138] = 12, [139] = 139, [140] = 140, [141] = 141, @@ -2251,8 +2339,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [198] = 198, [199] = 199, [200] = 200, - [201] = 201, - [202] = 202, + [201] = 190, + [202] = 191, [203] = 203, [204] = 204, [205] = 205, @@ -2293,8 +2381,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 +2510,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 +2535,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 +2633,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,1285 +2652,1023 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(57); + if (eof) ADVANCE(87); 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, + '!', 173, + '"', 111, + '%', 171, + '&', 152, + '(', 93, + ')', 94, + '*', 169, + '+', 165, + ',', 132, + '-', 168, + '.', 178, + '/', 170, + '0', 205, + ':', 89, + ';', 88, + '<', 160, + '=', 91, + '>', 156, + '?', 147, + '@', 46, + 'B', 193, + '\\', 56, + '^', 151, + '`', 84, + 'a', 189, + 'b', 194, + 'c', 196, + 's', 197, + 'x', 195, + '{', 96, + '|', 150, + '}', 97, + '~', 175, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(145); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(110); + lookahead == ' ') SKIP(85); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(209); if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(144); - if (lookahead != 0) ADVANCE(145); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(198); 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(111); + if (lookahead == '/') ADVANCE(199); + if (lookahead == '\\') ADVANCE(56); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(205); - if (lookahead != 0) ADVANCE(205); + lookahead == ' ') ADVANCE(202); + if (lookahead != 0) ADVANCE(203); 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, + '"', 111, + '%', 171, + '&', 152, + '(', 93, + ')', 94, + '*', 169, + '+', 165, + ',', 132, + '-', 167, + '.', 177, + '/', 170, + '0', 214, + ':', 89, + ';', 88, + '<', 159, + '=', 91, + '>', 156, + '?', 147, + '^', 151, + '{', 96, + '|', 150, + '}', 97, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(70); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(212); + lookahead == ' ') SKIP(3); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(214); 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, + '%', 171, + '&', 152, + '(', 93, + ')', 94, + '*', 169, + '+', 165, + ',', 132, + '-', 167, + '.', 177, + '/', 170, + '0', 214, + ':', 89, + ';', 88, + '<', 159, + '=', 91, + '>', 156, + '?', 147, + '^', 151, + '{', 96, + '|', 150, + '}', 97, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(70); - if (lookahead != 0) ADVANCE(88); + lookahead == ' ') SKIP(3); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(214); + END_STATE(); + case 4: + if (lookahead == '!') ADVANCE(176); + if (lookahead == '=') ADVANCE(153); 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(102); END_STATE(); case 6: - if (lookahead == '&') ADVANCE(20); - if (lookahead == '=') ADVANCE(160); + ADVANCE_MAP( + '"', 104, + ')', 94, + '+', 9, + '-', 22, + '.', 5, + '/', 13, + '<', 37, + 'B', 130, + 'a', 38, + 'b', 57, + 'c', 76, + 's', 77, + 'x', 58, + '}', 24, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(6); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(127); + if (lookahead == '#' || + lookahead == ':' || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(131); END_STATE(); case 7: - if (lookahead == ')') ADVANCE(64); - if (lookahead == '-') ADVANCE(24); - if (lookahead == '/') ADVANCE(8); + ADVANCE_MAP( + '"', 104, + '+', 9, + '-', 75, + '.', 5, + '/', 13, + '<', 37, + 'B', 130, + 'a', 38, + 'b', 57, + 'c', 76, + 's', 77, + 'x', 58, + '}', 97, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(70); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(201); + lookahead == ' ') SKIP(7); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(127); + if (lookahead == '#' || + lookahead == ':' || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(131); END_STATE(); case 8: - if (lookahead == '*') ADVANCE(11); - if (lookahead == '/') ADVANCE(214); + if (lookahead == '"') ADVANCE(101); END_STATE(); case 9: - if (lookahead == '*') ADVANCE(11); - if (lookahead == '/') ADVANCE(214); - if (lookahead == '=') ADVANCE(158); + if (lookahead == '"') ADVANCE(103); 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(94); + if (lookahead == '-') ADVANCE(21); + if (lookahead == '/') ADVANCE(13); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(11); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(198); END_STATE(); case 12: - if (lookahead == '.') ADVANCE(154); + if (lookahead == ')') ADVANCE(124); 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(216); 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(215); + 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(83); + if (lookahead == '/') ADVANCE(13); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(16); + if (lookahead == '#' || + ('0' <= lookahead && lookahead <= ':') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(131); END_STATE(); case 17: - if (lookahead == '=') ADVANCE(157); + if (lookahead == '.') ADVANCE(134); 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(181); + if (lookahead == '`') ADVANCE(184); + if (lookahead == '.' || + lookahead == '~') ADVANCE(33); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(19); + if (lookahead != 0 && + lookahead != '(' && + lookahead != ')' && + lookahead != ',' && + lookahead != ';' && + lookahead != '[' && + lookahead != ']') ADVANCE(187); END_STATE(); case 20: - if (lookahead == '=') ADVANCE(164); + if (lookahead == '/') ADVANCE(106); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(109); + if (lookahead != 0 && + lookahead != '"') ADVANCE(110); END_STATE(); case 21: - if (lookahead == '=') ADVANCE(166); + if (lookahead == '>') ADVANCE(95); END_STATE(); case 22: - if (lookahead == '=') ADVANCE(165); + if (lookahead == '>') ADVANCE(95); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(128); + if (lookahead == '#' || + lookahead == ':' || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(131); END_STATE(); case 23: - if (lookahead == '=') ADVANCE(163); + if (lookahead == '>') ADVANCE(36); END_STATE(); case 24: - if (lookahead == '>') ADVANCE(65); + if (lookahead == '>') ADVANCE(100); 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(115); END_STATE(); case 26: - if (lookahead == '`') ADVANCE(192); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(26); + if (lookahead == 'B') ADVANCE(23); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(26); END_STATE(); case 27: - if (lookahead == 'a') ADVANCE(35); + if (lookahead == 'N') ADVANCE(29); END_STATE(); case 28: - if (lookahead == 'a') ADVANCE(29); + if (lookahead == 'O') ADVANCE(27); END_STATE(); case 29: - if (lookahead == 'c') ADVANCE(32); + if (lookahead == 'T') ADVANCE(99); END_STATE(); case 30: - if (lookahead == 'e') ADVANCE(37); + if (lookahead == '_') ADVANCE(66); + if (lookahead == '}') ADVANCE(70); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(30); END_STATE(); case 31: - if (lookahead == 'e') ADVANCE(62); + if (lookahead == '_') ADVANCE(68); + if (lookahead == '}') ADVANCE(112); + 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(179); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(32); END_STATE(); case 33: - if (lookahead == 'f') ADVANCE(28); + if (lookahead == '`') ADVANCE(184); + if ((!eof && set_contains(sym__func_plain_id_character_set_1, 10, lookahead))) ADVANCE(187); END_STATE(); case 34: - if (lookahead == 'i') ADVANCE(36); - if (lookahead == 'n') ADVANCE(27); + if (lookahead == 'a') ADVANCE(47); END_STATE(); case 35: - if (lookahead == 'm') ADVANCE(31); + if (lookahead == 'a') ADVANCE(41); END_STATE(); case 36: - if (lookahead == 'n') ADVANCE(38); + if (lookahead == 'b') ADVANCE(50); END_STATE(); case 37: - if (lookahead == 'r') ADVANCE(33); + if (lookahead == 'b') ADVANCE(71); + if (lookahead == '{') ADVANCE(98); END_STATE(); case 38: - if (lookahead == 't') ADVANCE(30); + if (lookahead == 'b') ADVANCE(49); 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(25); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(39); 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 == 'c') ADVANCE(114); END_STATE(); case 41: - if (lookahead == '}') ADVANCE(206); + if (lookahead == 'c') ADVANCE(44); 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 == 'e') ADVANCE(51); 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(92); 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(133); 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 == 'f') ADVANCE(35); 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 == 'i') ADVANCE(48); + if (lookahead == 'n') ADVANCE(34); END_STATE(); case 47: - if (lookahead == '0' || - lookahead == '1') ADVANCE(209); + if (lookahead == 'm') ADVANCE(43); END_STATE(); case 48: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(210); + if (lookahead == 'n') ADVANCE(54); END_STATE(); case 49: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(208); + if (lookahead == 'o') ADVANCE(52); END_STATE(); case 50: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(212); + if (lookahead == 'o') ADVANCE(40); END_STATE(); case 51: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(211); + if (lookahead == 'r') ADVANCE(45); END_STATE(); case 52: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(206); + if (lookahead == 'r') ADVANCE(55); END_STATE(); case 53: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(46); + if (lookahead == 's') ADVANCE(10); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(53); END_STATE(); case 54: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(55); + if (lookahead == 't') ADVANCE(42); END_STATE(); case 55: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(52); + if (lookahead == 't') ADVANCE(8); 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, + 'u', 59, + 'x', 82, + '"', 204, + '\\', 204, + 'b', 204, + 'f', 204, + 'n', 204, + 'r', 204, + 't', 204, + 'v', 204, ); - 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); END_STATE(); case 57: - ACCEPT_TOKEN(ts_builtin_sym_end); + if (lookahead == '{') ADVANCE(67); END_STATE(); case 58: - ACCEPT_TOKEN(anon_sym_SEMI); + if (lookahead == '{') ADVANCE(31); END_STATE(); case 59: - ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == '{') ADVANCE(80); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(81); END_STATE(); case 60: - ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '}') ADVANCE(204); END_STATE(); case 61: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(174); + if (lookahead == '}') ADVANCE(204); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(62); END_STATE(); case 62: - ACCEPT_TOKEN(anon_sym_ATname); + if (lookahead == '}') ADVANCE(204); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(60); END_STATE(); case 63: - ACCEPT_TOKEN(anon_sym_LPAREN); + if (lookahead == '}') ADVANCE(204); + 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(204); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(63); END_STATE(); case 65: - ACCEPT_TOKEN(anon_sym_DASH_GT); + if (lookahead == '}') ADVANCE(204); + 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(70); END_STATE(); case 67: - ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(88); + if (lookahead == '}') ADVANCE(113); + if (lookahead == '0' || + lookahead == '1') ADVANCE(67); END_STATE(); case 68: - ACCEPT_TOKEN(anon_sym_RBRACE); + if (lookahead == '}') ADVANCE(112); END_STATE(); case 69: - ACCEPT_TOKEN(anon_sym_RBRACE); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(88); + if (lookahead == '0' || + lookahead == '1') ADVANCE(211); END_STATE(); case 70: - ACCEPT_TOKEN(aux_sym_asm_list_token1); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(26); END_STATE(); case 71: - ACCEPT_TOKEN(anon_sym_char); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(88); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(39); END_STATE(); case 72: - ACCEPT_TOKEN(aux_sym__asm_instruction_token1); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(212); END_STATE(); case 73: - ACCEPT_TOKEN(aux_sym__asm_instruction_token1); - if (lookahead == '*') ADVANCE(11); - if (lookahead == '/') ADVANCE(214); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(210); 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 <= '9')) ADVANCE(214); 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(128); + if (lookahead == '#' || + lookahead == ':' || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(131); 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(118); 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') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(204); 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(213); 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(65); 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(82); 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(78); 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 (lookahead == '#' || + ('0' <= lookahead && lookahead <= ':') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(131); 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); + lookahead != '\n' && + lookahead != '`') ADVANCE(32); 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 (eof) ADVANCE(87); + ADVANCE_MAP( + '!', 173, + '"', 104, + '%', 171, + '&', 152, + '(', 93, + ')', 94, + '*', 169, + '+', 165, + ',', 132, + '-', 168, + '.', 178, + '/', 170, + '0', 205, + ':', 89, + ';', 88, + '<', 160, + '=', 91, + '>', 156, + '?', 147, + '@', 46, + 'B', 193, + '^', 151, + '`', 84, + 'a', 189, + 'b', 194, + 'c', 196, + 's', 197, + 'x', 195, + '{', 96, + '|', 150, + '}', 97, + '~', 175, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(85); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(209); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(198); 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); + if (eof) ADVANCE(87); + ADVANCE_MAP( + '!', 172, + '"', 104, + '(', 93, + ')', 94, + '+', 164, + ',', 132, + '-', 166, + '.', 17, + '/', 13, + '0', 206, + ';', 88, + '<', 158, + '=', 90, + '>', 155, + '?', 147, + '@', 46, + '{', 96, + '}', 97, + '~', 174, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(86); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(210); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(198); 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); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 88: - ACCEPT_TOKEN(aux_sym__asm_instruction_token2); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(88); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 89: - ACCEPT_TOKEN(anon_sym_abort_DQUOTE); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(88); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 90: - ACCEPT_TOKEN(anon_sym_DOT_DQUOTE); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(88); + ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); case 91: - ACCEPT_TOKEN(anon_sym_PLUS_DQUOTE); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(88); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(154); END_STATE(); case 92: - ACCEPT_TOKEN(anon_sym_DQUOTE); + ACCEPT_TOKEN(anon_sym_ATname); END_STATE(); case 93: - ACCEPT_TOKEN(anon_sym_DQUOTE); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(88); + ACCEPT_TOKEN(anon_sym_LPAREN); 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_RPAREN); 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_DASH_GT); 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_LBRACE); 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_RBRACE); 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_LT_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_GTCONT); 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_RBRACE_GT); + if (lookahead == 'C') ADVANCE(28); 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_abort_DQUOTE); 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_DOT_DQUOTE); 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_PLUS_DQUOTE); 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_DQUOTE); 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); + ACCEPT_TOKEN(aux_sym_asm_string_token1); + if (lookahead == '\n') ADVANCE(110); if (lookahead != 0 && - lookahead != '"') ADVANCE(145); + lookahead != '"') ADVANCE(105); 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); + ACCEPT_TOKEN(aux_sym_asm_string_token1); + if (lookahead == '*') ADVANCE(108); + if (lookahead == '/') ADVANCE(105); if (lookahead != 0 && - lookahead != '"') ADVANCE(145); + lookahead != '"') ADVANCE(110); 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); + ACCEPT_TOKEN(aux_sym_asm_string_token1); + if (lookahead == '*') ADVANCE(107); + if (lookahead == '/') ADVANCE(110); if (lookahead != 0 && - lookahead != '"') ADVANCE(145); + lookahead != '"') ADVANCE(108); END_STATE(); case 108: - ACCEPT_TOKEN(aux_sym__asm_string_token1); - if (lookahead == '=') ADVANCE(145); - if (lookahead == '\n' || - lookahead == '\\') ADVANCE(150); + ACCEPT_TOKEN(aux_sym_asm_string_token1); + if (lookahead == '*') ADVANCE(107); if (lookahead != 0 && - lookahead != '"') ADVANCE(145); + lookahead != '"') ADVANCE(108); 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 == '/') ADVANCE(106); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(109); if (lookahead != 0 && - lookahead != '"') ADVANCE(145); + lookahead != '"') ADVANCE(110); 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 != 0 && - lookahead != '"') ADVANCE(145); + lookahead != '"') ADVANCE(110); 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); - if (lookahead != 0 && - lookahead != '"') ADVANCE(145); + ACCEPT_TOKEN(anon_sym_DQUOTE2); 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); - if (lookahead != 0 && - lookahead != '"') ADVANCE(145); + ACCEPT_TOKEN(sym_asm_hex_bitstring); 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); - if (lookahead != 0 && - lookahead != '"') ADVANCE(145); + ACCEPT_TOKEN(sym_asm_bin_bitstring); END_STATE(); case 114: - ACCEPT_TOKEN(aux_sym__asm_string_token1); - if (lookahead == 'a') ADVANCE(124); - if (lookahead == '\n' || - lookahead == '\\') ADVANCE(150); - if (lookahead != 0 && - lookahead != '"') ADVANCE(145); + ACCEPT_TOKEN(aux_sym_asm_boc_hex_token1); 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(aux_sym_asm_boc_hex_token2); 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_control_register); 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') || + ACCEPT_TOKEN(sym_asm_control_register); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(119); + if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); - if (lookahead != 0 && - lookahead != '"') ADVANCE(145); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(198); 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(sym_asm_control_register); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(116); 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(sym_asm_control_register); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(198); 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(aux_sym_asm_stack_register_token1); 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(aux_sym_asm_stack_register_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(123); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(198); END_STATE(); case 122: - ACCEPT_TOKEN(aux_sym__asm_string_token1); - if (lookahead == 'h') ADVANCE(116); - if (lookahead == '\n' || - lookahead == '\\') ADVANCE(150); + ACCEPT_TOKEN(aux_sym_asm_stack_register_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(120); + END_STATE(); + case 123: + 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); - 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(198); 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_token2); 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(sym_asm_number); + if (lookahead == 'l') ADVANCE(129); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(53); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(128); + if (lookahead == '#' || + lookahead == ':' || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(131); 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') || + ACCEPT_TOKEN(sym_asm_number); + if (lookahead == 'l') ADVANCE(129); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(53); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(125); + if (lookahead == '#' || + lookahead == ':' || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); - if (lookahead != 0 && - lookahead != '"') ADVANCE(145); + lookahead == '_') ADVANCE(131); END_STATE(); case 127: - ACCEPT_TOKEN(aux_sym__asm_string_token1); - if (lookahead == 'r') ADVANCE(144); - if (lookahead == '\n' || - lookahead == '\\') ADVANCE(150); - if (('0' <= lookahead && lookahead <= '9') || + ACCEPT_TOKEN(sym_asm_number); + if (lookahead == 'l') ADVANCE(129); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(53); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(126); + if (lookahead == '#' || + lookahead == ':' || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); - if (lookahead != 0 && - lookahead != '"') ADVANCE(145); + lookahead == '_') ADVANCE(131); 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') || + ACCEPT_TOKEN(sym_asm_number); + if (lookahead == 'l') ADVANCE(129); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(128); + if (lookahead == '#' || + lookahead == ':' || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); - if (lookahead != 0 && - lookahead != '"') ADVANCE(145); + lookahead == '_') ADVANCE(131); 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_tvm_instruction); 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_tvm_instruction); + if (lookahead == 'l') ADVANCE(129); + if (lookahead == '{') ADVANCE(30); + if (lookahead == '#' || + ('0' <= lookahead && lookahead <= ':') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); - if (lookahead != 0 && - lookahead != '"') ADVANCE(145); + lookahead == '_') ADVANCE(131); 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_tvm_instruction); + if (lookahead == 'l') ADVANCE(129); + if (lookahead == '#' || + ('0' <= lookahead && lookahead <= ':') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(131); 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(anon_sym_COMMA); 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(anon_sym_ATinterface); 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(anon_sym_DOT_DOT); 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(anon_sym_PLUS_EQ); END_STATE(); case 136: - 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(135); - if (lookahead != 0 && - lookahead != '"') ADVANCE(150); + ACCEPT_TOKEN(anon_sym_DASH_EQ); 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(anon_sym_STAR_EQ); 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(anon_sym_SLASH_EQ); END_STATE(); case 139: - ACCEPT_TOKEN(aux_sym__asm_string_token1); - if (lookahead == '}') ADVANCE(150); - if (lookahead != 0 && - lookahead != '"') ADVANCE(150); + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); 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_AMP_EQ); 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_PIPE_EQ); 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_CARET_EQ); 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_PIPE_PIPE_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_AMP_AMP_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_GT_GT_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_LT_LT_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_QMARK); 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_PIPE_PIPE); + if (lookahead == '=') ADVANCE(143); 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_AMP_AMP); + if (lookahead == '=') ADVANCE(144); END_STATE(); case 150: - ACCEPT_TOKEN(aux_sym__asm_string_token1); - if (lookahead != 0 && - lookahead != '"') ADVANCE(150); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(141); + if (lookahead == '|') ADVANCE(148); END_STATE(); case 151: - ACCEPT_TOKEN(anon_sym_DQUOTE2); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(142); END_STATE(); case 152: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(149); + if (lookahead == '=') ADVANCE(140); END_STATE(); case 153: - ACCEPT_TOKEN(anon_sym_ATinterface); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 154: - ACCEPT_TOKEN(anon_sym_DOT_DOT); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 155: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_GT); END_STATE(); case 156: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(157); + if (lookahead == '>') ADVANCE(162); END_STATE(); case 157: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 158: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_LT); END_STATE(); case 159: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(163); + if (lookahead == '=') ADVANCE(161); END_STATE(); case 160: - ACCEPT_TOKEN(anon_sym_AMP_EQ); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(163); + if (lookahead == '=') ADVANCE(161); + if (lookahead == '{') ADVANCE(98); END_STATE(); case 161: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 162: - ACCEPT_TOKEN(anon_sym_CARET_EQ); + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(145); END_STATE(); case 163: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE_EQ); + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(146); END_STATE(); case 164: - ACCEPT_TOKEN(anon_sym_AMP_AMP_EQ); + ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); case 165: - ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '=') ADVANCE(135); END_STATE(); case 166: - ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); case 167: - ACCEPT_TOKEN(anon_sym_QMARK); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(136); END_STATE(); case 168: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); - if (lookahead == '=') ADVANCE(163); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(136); + if (lookahead == '>') ADVANCE(95); END_STATE(); case 169: - ACCEPT_TOKEN(anon_sym_AMP_AMP); - if (lookahead == '=') ADVANCE(164); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '=') ADVANCE(137); END_STATE(); case 170: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(161); - if (lookahead == '|') ADVANCE(168); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(15); + if (lookahead == '/') ADVANCE(216); + if (lookahead == '=') ADVANCE(138); END_STATE(); case 171: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(162); + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(139); END_STATE(); case 172: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(169); - if (lookahead == '=') ADVANCE(160); + ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); case 173: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(153); END_STATE(); case 174: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); case 175: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(177); - if (lookahead == '>') ADVANCE(181); + ACCEPT_TOKEN(anon_sym_TILDE); + if (lookahead == '`') ADVANCE(84); END_STATE(); case 176: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '>') ADVANCE(22); + ACCEPT_TOKEN(anon_sym_BANG_BANG); END_STATE(); case 177: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); case 178: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(182); - if (lookahead == '=') ADVANCE(180); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '"') ADVANCE(102); + if (lookahead == '.') ADVANCE(134); + if (lookahead == '`') ADVANCE(84); END_STATE(); case 179: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(21); + ACCEPT_TOKEN(sym__func_quoted_id); END_STATE(); case 180: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(sym__func_quoted_id); + if ((!eof && set_contains(sym__func_plain_id_character_set_1, 10, lookahead))) ADVANCE(187); END_STATE(); case 181: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(165); + ACCEPT_TOKEN(sym__func_plain_id); + if (lookahead == '*') ADVANCE(183); + if (lookahead == '/') ADVANCE(186); + if ((!eof && set_contains(sym__func_plain_id_character_set_1, 10, lookahead))) ADVANCE(187); END_STATE(); case 182: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(166); + ACCEPT_TOKEN(sym__func_plain_id); + if (lookahead == '*') ADVANCE(182); + if (lookahead == '/') ADVANCE(187); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == '(' || + lookahead == ')' || + lookahead == ',' || + lookahead == '.' || + lookahead == ';' || + lookahead == '[' || + lookahead == ']' || + lookahead == '~') ADVANCE(15); + if (lookahead != 0) ADVANCE(183); END_STATE(); case 183: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '=') ADVANCE(155); + ACCEPT_TOKEN(sym__func_plain_id); + if (lookahead == '*') ADVANCE(182); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == '(' || + lookahead == ')' || + lookahead == ',' || + lookahead == '.' || + lookahead == ';' || + lookahead == '[' || + lookahead == ']' || + lookahead == '~') ADVANCE(15); + if (lookahead != 0) ADVANCE(183); END_STATE(); case 184: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(156); - END_STATE(); - case 185: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '=') ADVANCE(157); - 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); - END_STATE(); - case 192: - ACCEPT_TOKEN(sym__func_quoted_id); - END_STATE(); - case 193: - ACCEPT_TOKEN(sym__func_quoted_id); - if ((!eof && set_contains(sym__func_plain_id_character_set_1, 10, lookahead))) ADVANCE(200); - END_STATE(); - case 194: - 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); - END_STATE(); - case 195: - ACCEPT_TOKEN(sym__func_plain_id); - if (lookahead == '*') ADVANCE(195); - if (lookahead == '/') ADVANCE(200); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == '(' || - lookahead == ')' || - lookahead == ',' || - lookahead == '.' || - lookahead == ';' || - lookahead == '[' || - lookahead == ']' || - lookahead == '~') ADVANCE(11); - if (lookahead != 0) ADVANCE(196); - END_STATE(); - case 196: - ACCEPT_TOKEN(sym__func_plain_id); - if (lookahead == '*') ADVANCE(195); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == '(' || - lookahead == ')' || - lookahead == ',' || - lookahead == '.' || - lookahead == ';' || - lookahead == '[' || - lookahead == ']' || - lookahead == '~') ADVANCE(11); - if (lookahead != 0) ADVANCE(196); - END_STATE(); - case 197: ACCEPT_TOKEN(sym__func_plain_id); - if (lookahead == '`') ADVANCE(200); + if (lookahead == '`') ADVANCE(187); if (lookahead == '\t' || (0x0b <= lookahead && lookahead <= '\r') || lookahead == ' ' || @@ -3859,13 +3679,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ';' || lookahead == '[' || lookahead == ']' || - lookahead == '~') ADVANCE(26); + lookahead == '~') ADVANCE(32); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(198); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(185); END_STATE(); - case 198: + case 185: ACCEPT_TOKEN(sym__func_plain_id); - if (lookahead == '`') ADVANCE(193); + if (lookahead == '`') ADVANCE(180); if (lookahead == '\t' || (0x0b <= lookahead && lookahead <= '\r') || lookahead == ' ' || @@ -3876,11 +3696,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ';' || lookahead == '[' || lookahead == ']' || - lookahead == '~') ADVANCE(26); + lookahead == '~') ADVANCE(32); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(198); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(185); END_STATE(); - case 199: + case 186: ACCEPT_TOKEN(sym__func_plain_id); if (lookahead == '\t' || (0x0b <= lookahead && lookahead <= '\r') || @@ -3892,103 +3712,226 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ';' || lookahead == '[' || lookahead == ']' || - lookahead == '~') ADVANCE(214); + lookahead == '~') ADVANCE(216); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(199); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(186); END_STATE(); - case 200: + case 187: 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(187); END_STATE(); - case 201: + case 188: ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(101); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(201); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(198); END_STATE(); - case 202: + case 189: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'b') ADVANCE(190); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(198); + END_STATE(); + case 190: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(191); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(198); + END_STATE(); + case 191: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(192); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(198); + END_STATE(); + case 192: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(188); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(198); + END_STATE(); + case 193: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '{') ADVANCE(30); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(198); + END_STATE(); + case 194: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '{') ADVANCE(67); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(198); + END_STATE(); + case 195: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '{') ADVANCE(31); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(198); + END_STATE(); + case 196: + ACCEPT_TOKEN(sym_identifier); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(117); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(198); + END_STATE(); + case 197: + ACCEPT_TOKEN(sym_identifier); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(121); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(198); + END_STATE(); + case 198: + ACCEPT_TOKEN(sym_identifier); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(198); + END_STATE(); + case 199: ACCEPT_TOKEN(sym__non_quote_or_backslash_char); - if (lookahead == '*') ADVANCE(204); - if (lookahead == '/') ADVANCE(205); + if (lookahead == '*') ADVANCE(201); + if (lookahead == '/') ADVANCE(203); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(205); + lookahead != '\\') ADVANCE(203); END_STATE(); - case 203: + case 200: ACCEPT_TOKEN(sym__non_quote_or_backslash_char); - if (lookahead == '*') ADVANCE(203); - if (lookahead == '/') ADVANCE(205); + if (lookahead == '*') ADVANCE(200); + if (lookahead == '/') ADVANCE(203); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(204); + lookahead != '\\') ADVANCE(201); END_STATE(); - case 204: + case 201: ACCEPT_TOKEN(sym__non_quote_or_backslash_char); - if (lookahead == '*') ADVANCE(203); + if (lookahead == '*') ADVANCE(200); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(204); + lookahead != '\\') ADVANCE(201); END_STATE(); - case 205: + case 202: + ACCEPT_TOKEN(sym__non_quote_or_backslash_char); + if (lookahead == '/') ADVANCE(199); + if (lookahead == '\t' || + (0x0b <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(202); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != '"' && + lookahead != '\\') ADVANCE(203); + END_STATE(); + case 203: ACCEPT_TOKEN(sym__non_quote_or_backslash_char); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(205); + lookahead != '\\') ADVANCE(203); END_STATE(); - case 206: + case 204: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 207: + case 205: ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(49); + if (lookahead == '_') ADVANCE(73); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(47); + lookahead == 'b') ADVANCE(69); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(48); + lookahead == 'o') ADVANCE(72); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(51); + lookahead == 'x') ADVANCE(79); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(53); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(208); END_STATE(); + case 206: + ACCEPT_TOKEN(sym_integer); + if (lookahead == '_') ADVANCE(73); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(69); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(72); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(79); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(210); + END_STATE(); + case 207: + ACCEPT_TOKEN(sym_integer); + if (lookahead == '_') ADVANCE(73); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(53); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(210); + END_STATE(); case 208: ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(49); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(208); + if (lookahead == '_') ADVANCE(73); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(53); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(207); END_STATE(); case 209: ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(47); - if (lookahead == '0' || - lookahead == '1') ADVANCE(209); + if (lookahead == '_') ADVANCE(73); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(53); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(208); END_STATE(); case 210: ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(48); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(210); + if (lookahead == '_') ADVANCE(73); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(210); END_STATE(); case 211: ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(51); + if (lookahead == '_') ADVANCE(69); + if (lookahead == '0' || + lookahead == '1') ADVANCE(211); + END_STATE(); + case 212: + ACCEPT_TOKEN(sym_integer); + if (lookahead == '_') ADVANCE(72); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(212); + END_STATE(); + case 213: + ACCEPT_TOKEN(sym_integer); + if (lookahead == '_') ADVANCE(79); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(211); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(213); END_STATE(); - case 212: + case 214: ACCEPT_TOKEN(sym__decimal_integer); - if (lookahead == '_') ADVANCE(50); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(212); + if (lookahead == '_') ADVANCE(74); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(214); END_STATE(); - case 213: + case 215: ACCEPT_TOKEN(sym_comment); END_STATE(); - case 214: + case 216: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(214); + lookahead != '\n') ADVANCE(216); END_STATE(); default: return false; @@ -4021,6 +3964,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,67 +4529,67 @@ 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 = 86}, + [2] = {.lex_state = 86}, + [3] = {.lex_state = 86}, + [4] = {.lex_state = 86}, + [5] = {.lex_state = 86}, + [6] = {.lex_state = 86}, [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 = 86}, + [10] = {.lex_state = 86}, + [11] = {.lex_state = 86}, + [12] = {.lex_state = 86}, + [13] = {.lex_state = 86}, + [14] = {.lex_state = 86}, + [15] = {.lex_state = 86}, [16] = {.lex_state = 2}, - [17] = {.lex_state = 56}, - [18] = {.lex_state = 56}, - [19] = {.lex_state = 56}, + [17] = {.lex_state = 86}, + [18] = {.lex_state = 86}, + [19] = {.lex_state = 86}, [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}, + [21] = {.lex_state = 86}, + [22] = {.lex_state = 86}, + [23] = {.lex_state = 86}, + [24] = {.lex_state = 86}, + [25] = {.lex_state = 86}, + [26] = {.lex_state = 86}, + [27] = {.lex_state = 86}, + [28] = {.lex_state = 86}, + [29] = {.lex_state = 86}, + [30] = {.lex_state = 86}, + [31] = {.lex_state = 86}, + [32] = {.lex_state = 86}, + [33] = {.lex_state = 86}, + [34] = {.lex_state = 86}, + [35] = {.lex_state = 86}, + [36] = {.lex_state = 86}, + [37] = {.lex_state = 86}, + [38] = {.lex_state = 86}, + [39] = {.lex_state = 86}, + [40] = {.lex_state = 86}, + [41] = {.lex_state = 86}, + [42] = {.lex_state = 86}, + [43] = {.lex_state = 86}, + [44] = {.lex_state = 86}, + [45] = {.lex_state = 86}, + [46] = {.lex_state = 86}, + [47] = {.lex_state = 86}, + [48] = {.lex_state = 86}, + [49] = {.lex_state = 86}, + [50] = {.lex_state = 86}, + [51] = {.lex_state = 86}, + [52] = {.lex_state = 86}, + [53] = {.lex_state = 86}, + [54] = {.lex_state = 86}, + [55] = {.lex_state = 86}, + [56] = {.lex_state = 86}, + [57] = {.lex_state = 86}, + [58] = {.lex_state = 86}, + [59] = {.lex_state = 86}, + [60] = {.lex_state = 86}, + [61] = {.lex_state = 86}, [62] = {.lex_state = 2}, [63] = {.lex_state = 2}, [64] = {.lex_state = 2}, @@ -4666,32 +4611,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [80] = {.lex_state = 2}, [81] = {.lex_state = 2}, [82] = {.lex_state = 2}, - [83] = {.lex_state = 2}, + [83] = {.lex_state = 86}, [84] = {.lex_state = 2}, [85] = {.lex_state = 2}, [86] = {.lex_state = 2}, [87] = {.lex_state = 2}, [88] = {.lex_state = 2}, - [89] = {.lex_state = 56}, - [90] = {.lex_state = 2}, + [89] = {.lex_state = 2}, + [90] = {.lex_state = 6}, [91] = {.lex_state = 2}, [92] = {.lex_state = 2}, - [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}, + [93] = {.lex_state = 86}, + [94] = {.lex_state = 6}, + [95] = {.lex_state = 2}, + [96] = {.lex_state = 2}, + [97] = {.lex_state = 6}, + [98] = {.lex_state = 7}, + [99] = {.lex_state = 7}, + [100] = {.lex_state = 7}, + [101] = {.lex_state = 86}, + [102] = {.lex_state = 86}, + [103] = {.lex_state = 86}, + [104] = {.lex_state = 86}, + [105] = {.lex_state = 86}, + [106] = {.lex_state = 86}, + [107] = {.lex_state = 86}, + [108] = {.lex_state = 86}, [109] = {.lex_state = 2}, [110] = {.lex_state = 2}, [111] = {.lex_state = 2}, @@ -4702,7 +4647,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 +4656,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 = 86}, + [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 = 86}, + [137] = {.lex_state = 86}, + [138] = {.lex_state = 86}, + [139] = {.lex_state = 86}, + [140] = {.lex_state = 86}, + [141] = {.lex_state = 86}, + [142] = {.lex_state = 86}, + [143] = {.lex_state = 86}, + [144] = {.lex_state = 86}, + [145] = {.lex_state = 86}, + [146] = {.lex_state = 86}, + [147] = {.lex_state = 86}, + [148] = {.lex_state = 86}, + [149] = {.lex_state = 86}, + [150] = {.lex_state = 86}, + [151] = {.lex_state = 86}, + [152] = {.lex_state = 86}, + [153] = {.lex_state = 86}, + [154] = {.lex_state = 86}, + [155] = {.lex_state = 86}, + [156] = {.lex_state = 86}, + [157] = {.lex_state = 86}, + [158] = {.lex_state = 86}, + [159] = {.lex_state = 86}, + [160] = {.lex_state = 86}, + [161] = {.lex_state = 86}, + [162] = {.lex_state = 86}, + [163] = {.lex_state = 86}, + [164] = {.lex_state = 86}, + [165] = {.lex_state = 86}, + [166] = {.lex_state = 86}, + [167] = {.lex_state = 86}, + [168] = {.lex_state = 86}, + [169] = {.lex_state = 86}, + [170] = {.lex_state = 86}, + [171] = {.lex_state = 86}, + [172] = {.lex_state = 86}, + [173] = {.lex_state = 86}, + [174] = {.lex_state = 86}, + [175] = {.lex_state = 86}, + [176] = {.lex_state = 86}, + [177] = {.lex_state = 86}, + [178] = {.lex_state = 86}, + [179] = {.lex_state = 86}, + [180] = {.lex_state = 86}, + [181] = {.lex_state = 86}, + [182] = {.lex_state = 86}, + [183] = {.lex_state = 86}, + [184] = {.lex_state = 86}, + [185] = {.lex_state = 86}, + [186] = {.lex_state = 86}, + [187] = {.lex_state = 86}, + [188] = {.lex_state = 86}, + [189] = {.lex_state = 86}, + [190] = {.lex_state = 6}, + [191] = {.lex_state = 6}, + [192] = {.lex_state = 86}, + [193] = {.lex_state = 86}, + [194] = {.lex_state = 86}, + [195] = {.lex_state = 86}, + [196] = {.lex_state = 86}, + [197] = {.lex_state = 86}, + [198] = {.lex_state = 86}, + [199] = {.lex_state = 86}, + [200] = {.lex_state = 86}, + [201] = {.lex_state = 7}, + [202] = {.lex_state = 7}, + [203] = {.lex_state = 86}, + [204] = {.lex_state = 86}, + [205] = {.lex_state = 86}, + [206] = {.lex_state = 6}, + [207] = {.lex_state = 86}, + [208] = {.lex_state = 6}, + [209] = {.lex_state = 6}, + [210] = {.lex_state = 6}, + [211] = {.lex_state = 86}, + [212] = {.lex_state = 6}, + [213] = {.lex_state = 86}, + [214] = {.lex_state = 0}, + [215] = {.lex_state = 86}, + [216] = {.lex_state = 86}, + [217] = {.lex_state = 86}, + [218] = {.lex_state = 86}, + [219] = {.lex_state = 86}, + [220] = {.lex_state = 86}, + [221] = {.lex_state = 86}, + [222] = {.lex_state = 86}, + [223] = {.lex_state = 86}, + [224] = {.lex_state = 86}, + [225] = {.lex_state = 86}, + [226] = {.lex_state = 86}, + [227] = {.lex_state = 86}, + [228] = {.lex_state = 86}, + [229] = {.lex_state = 86}, + [230] = {.lex_state = 86}, + [231] = {.lex_state = 86}, + [232] = {.lex_state = 86}, + [233] = {.lex_state = 86}, + [234] = {.lex_state = 86}, + [235] = {.lex_state = 86}, + [236] = {.lex_state = 86}, + [237] = {.lex_state = 86}, + [238] = {.lex_state = 86}, + [239] = {.lex_state = 86}, + [240] = {.lex_state = 86}, + [241] = {.lex_state = 86}, + [242] = {.lex_state = 86}, + [243] = {.lex_state = 86}, + [244] = {.lex_state = 86}, + [245] = {.lex_state = 86}, + [246] = {.lex_state = 86}, + [247] = {.lex_state = 86}, + [248] = {.lex_state = 86}, + [249] = {.lex_state = 86}, + [250] = {.lex_state = 11}, + [251] = {.lex_state = 86}, + [252] = {.lex_state = 86}, + [253] = {.lex_state = 86}, + [254] = {.lex_state = 86}, + [255] = {.lex_state = 0}, + [256] = {.lex_state = 86}, + [257] = {.lex_state = 0}, + [258] = {.lex_state = 86}, + [259] = {.lex_state = 86}, + [260] = {.lex_state = 0}, + [261] = {.lex_state = 86}, + [262] = {.lex_state = 0}, + [263] = {.lex_state = 86}, + [264] = {.lex_state = 11}, + [265] = {.lex_state = 0}, + [266] = {.lex_state = 0}, + [267] = {.lex_state = 11}, + [268] = {.lex_state = 0}, + [269] = {.lex_state = 86}, + [270] = {.lex_state = 86}, + [271] = {.lex_state = 1}, + [272] = {.lex_state = 0}, + [273] = {.lex_state = 0}, + [274] = {.lex_state = 1}, + [275] = {.lex_state = 86}, + [276] = {.lex_state = 0}, + [277] = {.lex_state = 86}, + [278] = {.lex_state = 86}, + [279] = {.lex_state = 86}, + [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 = 86}, + [287] = {.lex_state = 86}, + [288] = {.lex_state = 0}, + [289] = {.lex_state = 86}, + [290] = {.lex_state = 2}, + [291] = {.lex_state = 0}, + [292] = {.lex_state = 0}, + [293] = {.lex_state = 0}, + [294] = {.lex_state = 86}, + [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 = 86}, + [306] = {.lex_state = 0}, + [307] = {.lex_state = 86}, + [308] = {.lex_state = 0}, + [309] = {.lex_state = 86}, + [310] = {.lex_state = 0}, + [311] = {.lex_state = 86}, + [312] = {.lex_state = 19}, + [313] = {.lex_state = 86}, + [314] = {.lex_state = 86}, + [315] = {.lex_state = 0}, + [316] = {.lex_state = 86}, + [317] = {.lex_state = 86}, + [318] = {.lex_state = 86}, + [319] = {.lex_state = 86}, + [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 = 86}, + [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 = 86}, + [340] = {.lex_state = 0}, + [341] = {.lex_state = 86}, + [342] = {.lex_state = 0}, + [343] = {.lex_state = 0}, + [344] = {.lex_state = 0}, + [345] = {.lex_state = 0}, + [346] = {.lex_state = 86}, + [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 = 86}, + [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 = 86}, + [366] = {.lex_state = 0}, + [367] = {.lex_state = 0}, + [368] = {.lex_state = 0}, + [369] = {.lex_state = 0}, + [370] = {.lex_state = 0}, + [371] = {.lex_state = 86}, + [372] = {.lex_state = 0}, + [373] = {.lex_state = 0}, + [374] = {.lex_state = 86}, + [375] = {.lex_state = 0}, + [376] = {.lex_state = 0}, + [377] = {.lex_state = 86}, + [378] = {.lex_state = 86}, + [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 = 86}, + [392] = {.lex_state = 0}, + [393] = {.lex_state = 0}, + [394] = {.lex_state = 0}, + [395] = {.lex_state = 0}, + [396] = {.lex_state = 0}, + [397] = {.lex_state = 86}, + [398] = {.lex_state = 0}, + [399] = {.lex_state = 0}, + [400] = {.lex_state = 0}, + [401] = {.lex_state = 0}, + [402] = {.lex_state = 86}, + [403] = {.lex_state = 0}, + [404] = {.lex_state = 0}, + [405] = {.lex_state = 0}, + [406] = {.lex_state = 0}, + [407] = {.lex_state = 0}, + [408] = {.lex_state = 86}, + [409] = {.lex_state = 0}, + [410] = {.lex_state = 0}, + [411] = {.lex_state = 86}, + [412] = {.lex_state = 0}, + [413] = {.lex_state = 0}, + [414] = {.lex_state = 2}, + [415] = {.lex_state = 86}, + [416] = {.lex_state = 86}, + [417] = {.lex_state = 0}, + [418] = {.lex_state = 86}, + [419] = {.lex_state = 86}, + [420] = {.lex_state = 86}, + [421] = {.lex_state = 0}, + [422] = {.lex_state = 86}, + [423] = {.lex_state = 0}, + [424] = {.lex_state = 86}, + [425] = {.lex_state = 86}, + [426] = {.lex_state = 86}, + [427] = {.lex_state = 86}, + [428] = {.lex_state = 86}, + [429] = {.lex_state = 86}, + [430] = {.lex_state = 86}, + [431] = {.lex_state = 0}, + [432] = {.lex_state = 86}, + [433] = {.lex_state = 86}, + [434] = {.lex_state = 86}, + [435] = {.lex_state = 0}, + [436] = {.lex_state = 0}, + [437] = {.lex_state = 86}, + [438] = {.lex_state = 86}, + [439] = {.lex_state = 0}, + [440] = {.lex_state = 0}, + [441] = {.lex_state = 86}, + [442] = {.lex_state = 0}, + [443] = {.lex_state = 86}, + [444] = {.lex_state = 0}, + [445] = {.lex_state = 0}, + [446] = {.lex_state = 86}, + [447] = {.lex_state = 0}, + [448] = {.lex_state = 0}, + [449] = {.lex_state = 86}, + [450] = {.lex_state = 0}, + [451] = {.lex_state = 86}, + [452] = {.lex_state = 0}, + [453] = {.lex_state = 0}, + [454] = {.lex_state = 0}, + [455] = {.lex_state = 16}, + [456] = {.lex_state = 0}, + [457] = {.lex_state = 86}, + [458] = {.lex_state = 0}, + [459] = {.lex_state = 0}, + [460] = {.lex_state = 86}, + [461] = {.lex_state = 0}, + [462] = {.lex_state = 86}, + [463] = {.lex_state = 86}, + [464] = {.lex_state = 0}, + [465] = {.lex_state = 0}, + [466] = {.lex_state = 0}, + [467] = {.lex_state = 0}, + [468] = {.lex_state = 86}, + [469] = {.lex_state = 0}, + [470] = {.lex_state = 86}, + [471] = {.lex_state = 20}, + [472] = {.lex_state = 0}, + [473] = {.lex_state = 0}, + [474] = {.lex_state = 86}, + [475] = {.lex_state = 86}, + [476] = {.lex_state = 86}, + [477] = {.lex_state = 0}, + [478] = {.lex_state = 86}, + [479] = {.lex_state = 86}, + [480] = {.lex_state = 86}, + [481] = {.lex_state = 0}, + [482] = {.lex_state = 0}, + [483] = {.lex_state = 86}, + [484] = {.lex_state = 0}, + [485] = {.lex_state = 86}, + [486] = {.lex_state = 86}, + [487] = {.lex_state = 0}, + [488] = {.lex_state = 86}, + [489] = {.lex_state = 0}, + [490] = {.lex_state = 0}, + [491] = {.lex_state = 86}, + [492] = {.lex_state = 0}, + [493] = {.lex_state = 0}, + [494] = {.lex_state = 86}, + [495] = {.lex_state = 0}, + [496] = {.lex_state = 86}, + [497] = {.lex_state = 86}, + [498] = {.lex_state = 86}, + [499] = {.lex_state = 16}, + [500] = {.lex_state = 86}, + [501] = {.lex_state = 86}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -5115,14 +5054,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 +5131,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 +5142,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(15), + [sym_primitive] = STATE(15), + [sym__constant] = STATE(150), + [sym_constant_attributes] = STATE(422), + [sym_native_function] = STATE(15), + [sym_asm_function] = STATE(15), + [sym__function] = STATE(160), + [sym_function_attributes] = STATE(428), + [sym_get_attribute] = STATE(218), + [sym_struct] = STATE(15), + [sym_message] = STATE(15), + [sym_contract] = STATE(15), + [sym_trait] = STATE(15), + [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(15), + [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 +5173,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(80), 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 +5243,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 8, + STATE(64), 8, sym_non_null_assert_expression, sym_method_call_expression, sym_static_call_expression, @@ -5312,7 +5252,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, @@ -5321,7 +5261,7 @@ static const uint16_t ts_small_parse_table[] = { sym_assignment_statement, sym_augmented_assignment_statement, sym_do_until_statement, - STATE(3), 9, + STATE(4), 9, sym__statement, sym__statement_with_brace, sym_block_statement, @@ -5331,54 +5271,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(80), 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 +5327,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 8, + STATE(64), 8, sym_non_null_assert_expression, sym_method_call_expression, sym_static_call_expression, @@ -5397,7 +5336,7 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - STATE(343), 8, + STATE(369), 8, sym__statement_without_semicolon, sym_let_statement, sym_destruct_statement, @@ -5406,7 +5345,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, @@ -5416,54 +5355,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(35), 1, sym_identifier, - ACTIONS(80), 1, + ACTIONS(37), 1, anon_sym_LPAREN, - ACTIONS(83), 1, + ACTIONS(39), 1, anon_sym_LBRACE, - ACTIONS(86), 1, - anon_sym_RBRACE, - ACTIONS(88), 1, + ACTIONS(43), 1, anon_sym_DQUOTE, - ACTIONS(91), 1, + ACTIONS(45), 1, anon_sym_let, - ACTIONS(94), 1, + ACTIONS(47), 1, anon_sym_return, - ACTIONS(97), 1, + ACTIONS(49), 1, anon_sym_if, - ACTIONS(100), 1, + ACTIONS(51), 1, anon_sym_while, - ACTIONS(103), 1, + ACTIONS(53), 1, anon_sym_repeat, - ACTIONS(106), 1, + ACTIONS(55), 1, anon_sym_do, - ACTIONS(109), 1, + ACTIONS(57), 1, anon_sym_try, - ACTIONS(112), 1, + ACTIONS(59), 1, anon_sym_foreach, - ACTIONS(118), 1, + ACTIONS(63), 1, anon_sym_initOf, - ACTIONS(121), 1, + ACTIONS(65), 1, sym_self, - ACTIONS(127), 1, + ACTIONS(69), 1, sym_null, - ACTIONS(130), 1, + ACTIONS(71), 1, sym_integer, + ACTIONS(75), 1, + anon_sym_RBRACE, STATE(16), 1, sym_field_access_expression, - STATE(65), 1, + STATE(80), 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(67), 2, anon_sym_true, anon_sym_false, - ACTIONS(115), 4, + ACTIONS(61), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, @@ -5473,7 +5411,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 8, + STATE(64), 8, sym_non_null_assert_expression, sym_method_call_expression, sym_static_call_expression, @@ -5482,7 +5420,7 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - STATE(428), 8, + STATE(372), 8, sym__statement_without_semicolon, sym_let_statement, sym_destruct_statement, @@ -5491,7 +5429,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, @@ -5501,54 +5439,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(77), 1, sym_identifier, - ACTIONS(39), 1, + ACTIONS(80), 1, anon_sym_LPAREN, - ACTIONS(41), 1, + ACTIONS(83), 1, anon_sym_LBRACE, - ACTIONS(45), 1, + ACTIONS(86), 1, + anon_sym_RBRACE, + ACTIONS(88), 1, anon_sym_DQUOTE, - ACTIONS(47), 1, + ACTIONS(91), 1, anon_sym_let, - ACTIONS(49), 1, + ACTIONS(94), 1, anon_sym_return, - ACTIONS(51), 1, + ACTIONS(97), 1, anon_sym_if, - ACTIONS(53), 1, + ACTIONS(100), 1, anon_sym_while, - ACTIONS(55), 1, + ACTIONS(103), 1, anon_sym_repeat, - ACTIONS(57), 1, + ACTIONS(106), 1, anon_sym_do, - ACTIONS(59), 1, + ACTIONS(109), 1, anon_sym_try, - ACTIONS(61), 1, + ACTIONS(112), 1, anon_sym_foreach, - ACTIONS(65), 1, + ACTIONS(118), 1, anon_sym_initOf, - ACTIONS(67), 1, + ACTIONS(121), 1, sym_self, - ACTIONS(71), 1, + ACTIONS(127), 1, sym_null, - ACTIONS(73), 1, + ACTIONS(130), 1, sym_integer, - ACTIONS(133), 1, - anon_sym_RBRACE, STATE(16), 1, sym_field_access_expression, - STATE(65), 1, + STATE(80), 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(124), 2, anon_sym_true, anon_sym_false, - ACTIONS(63), 4, + ACTIONS(115), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, @@ -5558,7 +5495,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 8, + STATE(64), 8, sym_non_null_assert_expression, sym_method_call_expression, sym_static_call_expression, @@ -5567,7 +5504,7 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - STATE(397), 8, + STATE(417), 8, sym__statement_without_semicolon, sym_let_statement, sym_destruct_statement, @@ -5576,7 +5513,7 @@ static const uint16_t ts_small_parse_table[] = { sym_assignment_statement, sym_augmented_assignment_statement, sym_do_until_statement, - STATE(6), 9, + STATE(5), 9, sym__statement, sym__statement_with_brace, sym_block_statement, @@ -5586,54 +5523,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(80), 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 +5579,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 8, + STATE(64), 8, sym_non_null_assert_expression, sym_method_call_expression, sym_static_call_expression, @@ -5652,7 +5588,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 +5597,7 @@ static const uint16_t ts_small_parse_table[] = { sym_assignment_statement, sym_augmented_assignment_statement, sym_do_until_statement, - STATE(4), 9, + STATE(3), 9, sym__statement, sym__statement_with_brace, sym_block_statement, @@ -5671,15 +5607,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(72), 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 +5630,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 +5655,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, + STATE(66), 1, sym_instance_argument_list, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(143), 9, + STATE(79), 1, + sym_argument_list, + ACTIONS(141), 9, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_QMARK, @@ -5744,7 +5678,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 +5691,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 +5706,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,52 +5721,49 @@ 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, - STATE(15), 9, + STATE(13), 9, sym__module_item, sym_primitive, sym_native_function, @@ -5840,11 +5773,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 +5786,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 +5816,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 +5829,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 +5859,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 +5872,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 +5902,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(165), 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 +5964,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(167), 1, + ts_builtin_sym_end, + ACTIONS(169), 1, anon_sym_primitive, - ACTIONS(11), 1, + ACTIONS(172), 1, anon_sym_const, - ACTIONS(15), 1, + ACTIONS(178), 1, anon_sym_ATname, - ACTIONS(17), 1, + ACTIONS(181), 1, anon_sym_asm, - ACTIONS(19), 1, + ACTIONS(184), 1, anon_sym_fun, - ACTIONS(25), 1, + ACTIONS(190), 1, anon_sym_get, - ACTIONS(27), 1, + ACTIONS(193), 1, anon_sym_struct, - ACTIONS(29), 1, + ACTIONS(196), 1, anon_sym_message, - ACTIONS(31), 1, + ACTIONS(199), 1, anon_sym_contract, - ACTIONS(33), 1, + ACTIONS(202), 1, anon_sym_trait, - ACTIONS(35), 1, + ACTIONS(205), 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(175), 3, anon_sym_virtual, anon_sym_override, anon_sym_abstract, - ACTIONS(23), 3, + ACTIONS(187), 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 +6026,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 +6039,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(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(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 +6088,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 +6103,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 +6116,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 +6131,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, - sym_identifier, - ACTIONS(212), 1, + [1278] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(208), 1, + sym_identifier, + 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 +6290,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, + STATE(66), 1, sym_instance_argument_list, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(151), 5, + STATE(79), 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,42 +6329,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG_BANG, anon_sym_DOT, - [1489] = 13, - ACTIONS(39), 1, + [1470] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(208), 1, + sym_identifier, + ACTIONS(210), 1, + anon_sym_const, + ACTIONS(214), 1, + anon_sym_fun, + ACTIONS(220), 1, + anon_sym_get, + ACTIONS(224), 1, + anon_sym_receive, + ACTIONS(226), 1, + anon_sym_bounced, + ACTIONS(228), 1, + anon_sym_external, + ACTIONS(264), 1, + anon_sym_RBRACE, + STATE(207), 1, + sym__function_definition, + STATE(256), 1, + aux_sym_constant_attributes_repeat1, + STATE(336), 1, + sym__function_declaration, + STATE(430), 1, + sym_constant_attributes, + STATE(463), 1, + sym_function_attributes, + STATE(218), 2, + sym_get_attribute, + aux_sym_function_attributes_repeat1, + ACTIONS(212), 3, + anon_sym_virtual, + anon_sym_override, + anon_sym_abstract, + ACTIONS(218), 3, + anon_sym_mutates, + anon_sym_extends, + anon_sym_inline, + STATE(344), 3, + sym_storage_constant, + sym_storage_variable, + sym__body_item_without_semicolon, + STATE(23), 5, + sym__receiver_function, + sym_receive_function, + sym_bounced_function, + sym_external_function, + aux_sym_trait_body_repeat1, + [1539] = 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, sym_identifier, - STATE(65), 1, + ACTIONS(268), 1, + anon_sym_RPAREN, + STATE(80), 1, sym_value_expression, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(69), 2, + STATE(321), 1, + sym_argument, + ACTIONS(67), 2, anon_sym_true, anon_sym_false, - ACTIONS(71), 2, + ACTIONS(69), 2, sym_self, sym_null, - ACTIONS(268), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - ACTIONS(63), 4, + ACTIONS(61), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_TILDE, - STATE(104), 4, + STATE(114), 4, sym__expression, sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 9, + STATE(64), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -6452,145 +6424,136 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [1547] = 19, - ACTIONS(210), 1, + [1598] = 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(270), 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(355), 3, sym_storage_constant, sym_storage_variable, sym__body_item_without_semicolon, - STATE(25), 5, + STATE(26), 5, sym__receiver_function, sym_receive_function, sym_bounced_function, sym_external_function, aux_sym_trait_body_repeat1, - [1617] = 19, - ACTIONS(210), 1, + [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(266), 1, sym_identifier, - ACTIONS(212), 1, - anon_sym_const, - ACTIONS(216), 1, - anon_sym_fun, - ACTIONS(222), 1, - anon_sym_get, - ACTIONS(226), 1, - anon_sym_receive, - ACTIONS(228), 1, - anon_sym_bounced, - ACTIONS(230), 1, - anon_sym_external, - ACTIONS(272), 1, + STATE(80), 1, + sym_value_expression, + ACTIONS(67), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(69), 2, + sym_self, + sym_null, + ACTIONS(272), 2, + anon_sym_SEMI, anon_sym_RBRACE, - STATE(194), 1, - sym__function_definition, - STATE(251), 1, - aux_sym_constant_attributes_repeat1, - STATE(378), 1, - sym__function_declaration, - STATE(459), 1, - sym_constant_attributes, - STATE(476), 1, - sym_function_attributes, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(61), 4, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_TILDE, + STATE(109), 4, + sym__expression, + sym_ternary_expression, + sym_binary_expression, + sym_unary_expression, + STATE(64), 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, + [1724] = 14, + ACTIONS(3), 1, sym_comment, - STATE(204), 2, - sym_get_attribute, - aux_sym_function_attributes_repeat1, - ACTIONS(214), 3, - anon_sym_virtual, - anon_sym_override, - anon_sym_abstract, - ACTIONS(220), 3, - anon_sym_mutates, - anon_sym_extends, - anon_sym_inline, - STATE(383), 3, - sym_storage_constant, - sym_storage_variable, - sym__body_item_without_semicolon, - STATE(22), 5, - sym__receiver_function, - sym_receive_function, - sym_bounced_function, - sym_external_function, - aux_sym_trait_body_repeat1, - [1687] = 14, - ACTIONS(39), 1, + 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, sym_identifier, ACTIONS(274), 1, anon_sym_RPAREN, - STATE(65), 1, + STATE(80), 1, sym_value_expression, - STATE(302), 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(64), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -6600,7 +6563,9 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [1747] = 19, + [1783] = 19, + ACTIONS(3), 1, + sym_comment, ACTIONS(276), 1, sym_identifier, ACTIONS(279), 1, @@ -6617,20 +6582,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bounced, ACTIONS(302), 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, @@ -6641,53 +6603,52 @@ static const uint16_t ts_small_parse_table[] = { 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, - STATE(25), 5, + STATE(26), 5, sym__receiver_function, sym_receive_function, sym_bounced_function, sym_external_function, aux_sym_trait_body_repeat1, - [1817] = 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, sym_identifier, ACTIONS(305), 1, anon_sym_RPAREN, - STATE(65), 1, + STATE(80), 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(64), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -6697,43 +6658,40 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [1877] = 14, - 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, sym_identifier, - ACTIONS(307), 1, - anon_sym_RPAREN, - STATE(65), 1, + STATE(80), 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(64), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -6743,41 +6701,38 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [1937] = 13, - ACTIONS(39), 1, + [1967] = 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, sym_identifier, - STATE(65), 1, + STATE(80), 1, sym_value_expression, - STATE(364), 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(131), 4, sym__expression, sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 9, + STATE(64), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -6787,39 +6742,38 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [1994] = 12, - ACTIONS(39), 1, + [2020] = 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, sym_identifier, - STATE(65), 1, + STATE(80), 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(92), 4, sym__expression, sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 9, + STATE(64), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -6829,39 +6783,38 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [2048] = 12, - ACTIONS(39), 1, + [2073] = 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, sym_identifier, - STATE(65), 1, + STATE(80), 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(81), 4, sym__expression, sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 9, + STATE(64), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -6871,39 +6824,38 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [2102] = 12, - ACTIONS(39), 1, + [2126] = 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, sym_identifier, - STATE(65), 1, + STATE(80), 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(124), 4, sym__expression, sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 9, + STATE(64), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -6913,39 +6865,38 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [2156] = 12, - ACTIONS(39), 1, + [2179] = 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, sym_identifier, - STATE(65), 1, + STATE(80), 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(125), 4, sym__expression, sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 9, + STATE(64), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -6955,39 +6906,38 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [2210] = 12, - ACTIONS(39), 1, + [2232] = 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, sym_identifier, - STATE(65), 1, + STATE(80), 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(96), 4, sym__expression, sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 9, + STATE(64), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -6997,39 +6947,38 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [2264] = 12, - ACTIONS(39), 1, + [2285] = 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, sym_identifier, - STATE(65), 1, + STATE(80), 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(132), 4, sym__expression, sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 9, + STATE(64), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -7039,39 +6988,38 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [2318] = 12, - ACTIONS(39), 1, + [2338] = 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, sym_identifier, - STATE(65), 1, + STATE(80), 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(123), 4, sym__expression, sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 9, + STATE(64), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -7081,39 +7029,38 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [2372] = 12, - ACTIONS(39), 1, + [2391] = 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, sym_identifier, - STATE(65), 1, + STATE(80), 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(126), 4, sym__expression, sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 9, + STATE(64), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -7123,29 +7070,28 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [2426] = 12, - ACTIONS(39), 1, + [2444] = 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, sym_identifier, - STATE(65), 1, + STATE(80), 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, @@ -7155,7 +7101,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 9, + STATE(64), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -7165,39 +7111,38 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [2480] = 12, - ACTIONS(39), 1, + [2497] = 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, sym_identifier, - STATE(65), 1, + STATE(80), 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(111), 4, sym__expression, sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 9, + STATE(64), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -7207,39 +7152,38 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [2534] = 12, - ACTIONS(39), 1, + [2550] = 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, sym_identifier, - STATE(65), 1, + STATE(80), 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(112), 4, sym__expression, sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 9, + STATE(64), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -7249,39 +7193,38 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [2588] = 12, - ACTIONS(39), 1, + [2603] = 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, sym_identifier, - STATE(65), 1, + STATE(80), 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(91), 4, sym__expression, sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 9, + STATE(64), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -7291,39 +7234,38 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [2642] = 12, - ACTIONS(39), 1, + [2656] = 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, sym_identifier, - STATE(65), 1, + STATE(80), 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(64), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -7333,39 +7275,38 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [2696] = 12, - ACTIONS(39), 1, + [2709] = 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, sym_identifier, - STATE(65), 1, + STATE(80), 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(64), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -7375,39 +7316,38 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [2750] = 12, - ACTIONS(39), 1, + [2762] = 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, sym_identifier, - STATE(65), 1, + STATE(80), 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(84), 4, sym__expression, sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 9, + STATE(64), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -7417,39 +7357,38 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [2804] = 12, - ACTIONS(39), 1, + [2815] = 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, sym_identifier, - STATE(65), 1, + STATE(80), 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(64), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -7459,39 +7398,38 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [2858] = 12, - ACTIONS(39), 1, + [2868] = 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, sym_identifier, - STATE(65), 1, + STATE(80), 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(64), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -7501,39 +7439,38 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [2912] = 12, - ACTIONS(39), 1, + [2921] = 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, sym_identifier, - STATE(65), 1, + STATE(80), 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(88), 4, sym__expression, sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 9, + STATE(64), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -7543,39 +7480,38 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [2966] = 12, - ACTIONS(39), 1, + [2974] = 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, sym_identifier, - STATE(65), 1, + STATE(80), 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(64), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -7585,39 +7521,38 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [3020] = 12, - ACTIONS(39), 1, + [3027] = 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, sym_identifier, - STATE(65), 1, + STATE(80), 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(64), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -7627,39 +7562,38 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [3074] = 12, - ACTIONS(39), 1, + [3080] = 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, sym_identifier, - STATE(65), 1, + STATE(80), 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(64), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -7669,39 +7603,38 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [3128] = 12, - ACTIONS(39), 1, + [3133] = 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, sym_identifier, - STATE(65), 1, + STATE(80), 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(64), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -7711,39 +7644,38 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [3182] = 12, - ACTIONS(39), 1, + [3186] = 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, sym_identifier, - STATE(65), 1, + STATE(80), 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(64), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -7753,39 +7685,38 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [3236] = 12, - ACTIONS(39), 1, + [3239] = 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, sym_identifier, - STATE(65), 1, + STATE(80), 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(64), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -7795,39 +7726,38 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [3290] = 12, - ACTIONS(39), 1, + [3292] = 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, sym_identifier, - STATE(65), 1, + STATE(80), 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(82), 4, sym__expression, sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 9, + STATE(64), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -7837,39 +7767,38 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [3344] = 12, - ACTIONS(39), 1, + [3345] = 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, sym_identifier, - STATE(65), 1, + STATE(80), 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(64), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -7880,80 +7809,37 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_boolean, [3398] = 12, - 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, + ACTIONS(3), 1, sym_comment, - ACTIONS(69), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(71), 2, - sym_self, - sym_null, - ACTIONS(63), 4, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_TILDE, - STATE(115), 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, - [3452] = 12, - ACTIONS(39), 1, + 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, sym_identifier, - STATE(65), 1, + STATE(80), 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(120), 4, sym__expression, sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 9, + STATE(64), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -7963,39 +7849,38 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [3506] = 12, - ACTIONS(39), 1, + [3451] = 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, sym_identifier, - STATE(65), 1, + STATE(80), 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(133), 4, sym__expression, sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 9, + STATE(64), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -8005,29 +7890,28 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [3560] = 12, - ACTIONS(39), 1, + [3504] = 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, sym_identifier, - STATE(65), 1, + STATE(80), 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, @@ -8037,7 +7921,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ternary_expression, sym_binary_expression, sym_unary_expression, - STATE(63), 9, + STATE(64), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -8047,39 +7931,38 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [3614] = 12, - ACTIONS(39), 1, + [3557] = 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, sym_identifier, - STATE(65), 1, + STATE(80), 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(64), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -8089,39 +7972,38 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [3668] = 12, - ACTIONS(39), 1, + [3610] = 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, sym_identifier, - STATE(65), 1, + STATE(80), 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(64), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -8131,39 +8013,38 @@ static const uint16_t ts_small_parse_table[] = { sym_initOf, sym_string, sym_boolean, - [3722] = 12, - ACTIONS(39), 1, + [3663] = 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, sym_identifier, - STATE(65), 1, + STATE(80), 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(64), 9, sym_non_null_assert_expression, sym_method_call_expression, sym_field_access_expression, @@ -8173,17 +8054,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, + [3716] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(311), 5, + ACTIONS(309), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, anon_sym_SLASH, - ACTIONS(309), 21, + ACTIONS(307), 21, anon_sym_SEMI, anon_sym_COLON, anon_sym_RPAREN, @@ -8205,17 +8085,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, + [3750] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(151), 5, + ACTIONS(313), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, anon_sym_SLASH, - ACTIONS(143), 21, + ACTIONS(311), 21, anon_sym_SEMI, anon_sym_COLON, anon_sym_RPAREN, @@ -8237,17 +8116,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, + [3784] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(315), 5, + ACTIONS(149), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, anon_sym_SLASH, - ACTIONS(313), 21, + ACTIONS(141), 21, anon_sym_SEMI, anon_sym_COLON, anon_sym_RPAREN, @@ -8269,19 +8147,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG_BANG, anon_sym_DOT, - [3881] = 4, - ACTIONS(321), 1, + [3818] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(317), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_SLASH, + ACTIONS(315), 21, + 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, + anon_sym_BANG_EQ, + 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, + anon_sym_BANG_BANG, anon_sym_DOT, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [3852] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(319), 5, + ACTIONS(321), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, anon_sym_SLASH, - ACTIONS(317), 20, + ACTIONS(319), 21, anon_sym_SEMI, anon_sym_COLON, anon_sym_RPAREN, @@ -8302,9 +8208,9 @@ 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, + [3886] = 3, + ACTIONS(3), 1, sym_comment, ACTIONS(325), 5, anon_sym_PIPE, @@ -8334,9 +8240,8 @@ 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, + [3920] = 3, + ACTIONS(3), 1, sym_comment, ACTIONS(329), 5, anon_sym_PIPE, @@ -8366,9 +8271,8 @@ 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, + [3954] = 3, + ACTIONS(3), 1, sym_comment, ACTIONS(333), 5, anon_sym_PIPE, @@ -8398,9 +8302,8 @@ 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, + [3988] = 3, + ACTIONS(3), 1, sym_comment, ACTIONS(337), 5, anon_sym_PIPE, @@ -8430,9 +8333,8 @@ 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, + [4022] = 3, + ACTIONS(3), 1, sym_comment, ACTIONS(341), 5, anon_sym_PIPE, @@ -8462,9 +8364,8 @@ 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, + [4056] = 3, + ACTIONS(3), 1, sym_comment, ACTIONS(345), 5, anon_sym_PIPE, @@ -8494,9 +8395,8 @@ 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, + [4090] = 3, + ACTIONS(3), 1, sym_comment, ACTIONS(349), 5, anon_sym_PIPE, @@ -8526,9 +8426,8 @@ 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, + [4124] = 3, + ACTIONS(3), 1, sym_comment, ACTIONS(353), 5, anon_sym_PIPE, @@ -8558,9 +8457,8 @@ 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, + [4158] = 3, + ACTIONS(3), 1, sym_comment, ACTIONS(357), 5, anon_sym_PIPE, @@ -8590,9 +8488,8 @@ 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, + [4192] = 3, + ACTIONS(3), 1, sym_comment, ACTIONS(361), 5, anon_sym_PIPE, @@ -8622,9 +8519,8 @@ 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, + [4226] = 3, + ACTIONS(3), 1, sym_comment, ACTIONS(365), 5, anon_sym_PIPE, @@ -8654,9 +8550,8 @@ 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, + [4260] = 3, + ACTIONS(3), 1, sym_comment, ACTIONS(369), 5, anon_sym_PIPE, @@ -8686,9 +8581,8 @@ 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, + [4294] = 3, + ACTIONS(3), 1, sym_comment, ACTIONS(373), 5, anon_sym_PIPE, @@ -8718,17 +8612,18 @@ 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, + [4328] = 4, + ACTIONS(3), 1, sym_comment, + ACTIONS(379), 1, + anon_sym_DOT, ACTIONS(377), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, anon_sym_SLASH, - ACTIONS(375), 21, + ACTIONS(375), 20, anon_sym_SEMI, anon_sym_COLON, anon_sym_RPAREN, @@ -8749,18 +8644,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PERCENT, anon_sym_BANG_BANG, - anon_sym_DOT, - [4408] = 3, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [4364] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(381), 5, + ACTIONS(385), 1, + anon_sym_BANG_BANG, + ACTIONS(383), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, anon_sym_SLASH, - ACTIONS(379), 21, + ACTIONS(381), 19, anon_sym_SEMI, anon_sym_COLON, anon_sym_RPAREN, @@ -8780,75 +8675,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, 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, + [4399] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(385), 5, + ACTIONS(383), 1, anon_sym_PIPE, + ACTIONS(385), 1, + anon_sym_BANG_BANG, + ACTIONS(387), 1, + anon_sym_CARET, + ACTIONS(389), 1, anon_sym_AMP, + ACTIONS(403), 1, + anon_sym_SLASH, + ACTIONS(391), 2, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + ACTIONS(393), 2, anon_sym_GT, anon_sym_LT, - anon_sym_SLASH, - ACTIONS(383), 19, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(395), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(397), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(399), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(401), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(381), 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, + [4452] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(409), 1, + anon_sym_catch, + STATE(108), 1, + sym_catch_clause, + ACTIONS(407), 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(405), 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, + [4489] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(385), 1, + anon_sym_BANG_BANG, + ACTIONS(387), 1, anon_sym_CARET, + ACTIONS(389), 1, + anon_sym_AMP, + ACTIONS(403), 1, + anon_sym_SLASH, + ACTIONS(413), 1, + anon_sym_QMARK, + ACTIONS(415), 1, + anon_sym_PIPE_PIPE, + ACTIONS(417), 1, + anon_sym_AMP_AMP, + ACTIONS(419), 1, + anon_sym_PIPE, + ACTIONS(391), 2, anon_sym_BANG_EQ, anon_sym_EQ_EQ, + ACTIONS(393), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(395), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(397), 2, anon_sym_GT_GT, anon_sym_LT_LT, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(401), 2, 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, + ACTIONS(411), 5, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + [4548] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(383), 1, anon_sym_PIPE, - ACTIONS(395), 1, - anon_sym_CARET, - ACTIONS(397), 1, + ACTIONS(385), 1, + anon_sym_BANG_BANG, + ACTIONS(389), 1, anon_sym_AMP, - ACTIONS(411), 1, + ACTIONS(403), 1, anon_sym_SLASH, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(399), 2, + ACTIONS(391), 2, anon_sym_BANG_EQ, anon_sym_EQ_EQ, - ACTIONS(401), 2, + ACTIONS(393), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(403), 2, + ACTIONS(395), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(405), 2, + ACTIONS(397), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(407), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(409), 2, + ACTIONS(401), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(389), 7, + ACTIONS(381), 9, anon_sym_SEMI, anon_sym_COLON, anon_sym_RPAREN, @@ -8856,39 +8827,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_QMARK, anon_sym_PIPE_PIPE, - [4535] = 13, - ACTIONS(387), 1, + anon_sym_AMP_AMP, + anon_sym_CARET, + [4599] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(385), 1, anon_sym_BANG_BANG, - ACTIONS(393), 1, + ACTIONS(403), 1, + anon_sym_SLASH, + ACTIONS(383), 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, + ACTIONS(391), 2, anon_sym_BANG_EQ, anon_sym_EQ_EQ, - ACTIONS(401), 2, + ACTIONS(393), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(403), 2, + ACTIONS(395), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(405), 2, + ACTIONS(397), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(407), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(409), 2, + ACTIONS(401), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(389), 8, + ACTIONS(381), 9, anon_sym_SEMI, anon_sym_COLON, anon_sym_RPAREN, @@ -8897,39 +8866,33 @@ 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, + [4648] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(385), 1, + anon_sym_BANG_BANG, + ACTIONS(403), 1, anon_sym_SLASH, - ACTIONS(413), 1, + ACTIONS(383), 2, 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_AMP, + ACTIONS(393), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(403), 2, + ACTIONS(395), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(405), 2, + ACTIONS(397), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(407), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(409), 2, + ACTIONS(401), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(389), 8, + ACTIONS(381), 11, anon_sym_SEMI, anon_sym_COLON, anon_sym_RPAREN, @@ -8938,37 +8901,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - [4643] = 12, - ACTIONS(387), 1, + anon_sym_CARET, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + [4695] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(385), 1, anon_sym_BANG_BANG, - ACTIONS(397), 1, + ACTIONS(387), 1, + anon_sym_CARET, + ACTIONS(389), 1, anon_sym_AMP, - ACTIONS(411), 1, + ACTIONS(403), 1, anon_sym_SLASH, - ACTIONS(413), 1, + ACTIONS(417), 1, + anon_sym_AMP_AMP, + ACTIONS(419), 1, anon_sym_PIPE, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(399), 2, + ACTIONS(391), 2, anon_sym_BANG_EQ, anon_sym_EQ_EQ, - ACTIONS(401), 2, + ACTIONS(393), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(403), 2, + ACTIONS(395), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(405), 2, + ACTIONS(397), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(407), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(409), 2, + ACTIONS(401), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(389), 9, + ACTIONS(381), 7, anon_sym_SEMI, anon_sym_COLON, anon_sym_RPAREN, @@ -8976,21 +8945,28 @@ static const uint16_t ts_small_parse_table[] = { 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, + [4750] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(413), 5, + ACTIONS(385), 1, + anon_sym_BANG_BANG, + ACTIONS(403), 1, + anon_sym_SLASH, + ACTIONS(397), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(399), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(401), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(383), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - anon_sym_SLASH, - ACTIONS(389), 19, + ACTIONS(381), 13, anon_sym_SEMI, anon_sym_COLON, anon_sym_RPAREN, @@ -9004,29 +8980,65 @@ 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, + [4793] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(421), 1, + anon_sym_LT_LBRACE, + ACTIONS(423), 1, + anon_sym_RBRACE_GTCONT, + ACTIONS(425), 1, + anon_sym_RBRACE_GT, + ACTIONS(435), 1, + sym_asm_number, + ACTIONS(437), 1, + sym_tvm_instruction, + STATE(499), 1, + sym_asm_argument_list, + ACTIONS(431), 2, + aux_sym_asm_boc_hex_token1, + aux_sym_asm_boc_hex_token2, + ACTIONS(433), 2, + aux_sym_asm_stack_register_token1, + aux_sym_asm_stack_register_token2, + STATE(97), 2, + sym_asm_expression, + aux_sym_asm_function_body_repeat1, + ACTIONS(429), 3, + sym_asm_hex_bitstring, + sym_asm_bin_bitstring, + sym_asm_control_register, + ACTIONS(427), 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, + [4846] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(385), 1, anon_sym_BANG_BANG, - ACTIONS(411), 1, + ACTIONS(403), 1, anon_sym_SLASH, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(409), 2, + ACTIONS(399), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(401), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(413), 4, + ACTIONS(383), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(389), 17, + ACTIONS(381), 15, anon_sym_SEMI, anon_sym_COLON, anon_sym_RPAREN, @@ -9042,28 +9054,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - [4771] = 7, - ACTIONS(387), 1, + [4887] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(385), 1, anon_sym_BANG_BANG, - ACTIONS(411), 1, + ACTIONS(403), 1, anon_sym_SLASH, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(407), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(409), 2, + ACTIONS(401), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(413), 4, + ACTIONS(383), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(389), 15, + ACTIONS(381), 17, anon_sym_SEMI, anon_sym_COLON, anon_sym_RPAREN, @@ -9079,15 +9085,16 @@ 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, + anon_sym_PLUS, + anon_sym_DASH, + [4926] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(417), 9, + ACTIONS(443), 1, + anon_sym_else, + STATE(107), 1, + sym_else_clause, + ACTIONS(441), 9, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -9097,7 +9104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, sym_integer, - ACTIONS(415), 14, + ACTIONS(439), 14, anon_sym_let, anon_sym_return, anon_sym_if, @@ -9112,69 +9119,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_null, - [4851] = 8, - ACTIONS(387), 1, + [4963] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(421), 1, + anon_sym_LT_LBRACE, + ACTIONS(435), 1, + sym_asm_number, + ACTIONS(437), 1, + sym_tvm_instruction, + ACTIONS(445), 1, + anon_sym_RBRACE_GTCONT, + ACTIONS(447), 1, + anon_sym_RBRACE_GT, + STATE(499), 1, + sym_asm_argument_list, + ACTIONS(431), 2, + aux_sym_asm_boc_hex_token1, + aux_sym_asm_boc_hex_token2, + ACTIONS(433), 2, + aux_sym_asm_stack_register_token1, + aux_sym_asm_stack_register_token2, + STATE(90), 2, + sym_asm_expression, + aux_sym_asm_function_body_repeat1, + ACTIONS(429), 3, + sym_asm_hex_bitstring, + sym_asm_bin_bitstring, + sym_asm_control_register, + ACTIONS(427), 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, + [5016] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(385), 1, anon_sym_BANG_BANG, - ACTIONS(411), 1, + ACTIONS(387), 1, + anon_sym_CARET, + ACTIONS(389), 1, + anon_sym_AMP, + ACTIONS(403), 1, anon_sym_SLASH, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - 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(413), 4, + ACTIONS(419), 1, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(389), 13, - 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, + ACTIONS(391), 2, anon_sym_BANG_EQ, anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [4895] = 10, - ACTIONS(387), 1, - anon_sym_BANG_BANG, - ACTIONS(411), 1, - anon_sym_SLASH, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(401), 2, + ACTIONS(393), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(403), 2, + ACTIONS(395), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(405), 2, + ACTIONS(397), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(407), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(409), 2, + ACTIONS(401), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(413), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(389), 11, + ACTIONS(381), 8, anon_sym_SEMI, anon_sym_COLON, anon_sym_RPAREN, @@ -9183,130 +9199,195 @@ 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, + [5069] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(385), 1, anon_sym_BANG_BANG, - ACTIONS(391), 1, - anon_sym_AMP_AMP, - ACTIONS(393), 1, + ACTIONS(451), 5, anon_sym_PIPE, - ACTIONS(395), 1, - anon_sym_CARET, - ACTIONS(397), 1, anon_sym_AMP, - ACTIONS(411), 1, + anon_sym_GT, + anon_sym_LT, anon_sym_SLASH, - ACTIONS(423), 1, + ACTIONS(449), 19, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_QMARK, - ACTIONS(425), 1, anon_sym_PIPE_PIPE, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(399), 2, + anon_sym_AMP_AMP, + anon_sym_CARET, 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(421), 5, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - [5003] = 11, - ACTIONS(387), 1, - anon_sym_BANG_BANG, - ACTIONS(411), 1, - anon_sym_SLASH, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [5104] = 13, + 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(413), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(389), 9, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, + ACTIONS(453), 1, + anon_sym_LT_LBRACE, + ACTIONS(456), 1, + anon_sym_RBRACE_GTCONT, + ACTIONS(458), 1, + anon_sym_RBRACE_GT, + ACTIONS(472), 1, + sym_asm_number, + ACTIONS(475), 1, + sym_tvm_instruction, + STATE(499), 1, + sym_asm_argument_list, + ACTIONS(466), 2, + aux_sym_asm_boc_hex_token1, + aux_sym_asm_boc_hex_token2, + ACTIONS(469), 2, + aux_sym_asm_stack_register_token1, + aux_sym_asm_stack_register_token2, + STATE(97), 2, + sym_asm_expression, + aux_sym_asm_function_body_repeat1, + ACTIONS(463), 3, + sym_asm_hex_bitstring, + sym_asm_bin_bitstring, + sym_asm_control_register, + ACTIONS(460), 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, + [5157] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(453), 1, + anon_sym_LT_LBRACE, + ACTIONS(456), 1, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_QMARK, - 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, + ACTIONS(472), 1, + sym_asm_number, + ACTIONS(478), 1, + sym_tvm_instruction, + STATE(455), 1, + sym_asm_argument_list, + ACTIONS(466), 2, + aux_sym_asm_boc_hex_token1, + aux_sym_asm_boc_hex_token2, + ACTIONS(469), 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(463), 3, + sym_asm_hex_bitstring, + sym_asm_bin_bitstring, + sym_asm_control_register, + ACTIONS(460), 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, + [5207] = 12, + ACTIONS(3), 1, sym_comment, - ACTIONS(429), 9, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(421), 1, + anon_sym_LT_LBRACE, + ACTIONS(435), 1, + sym_asm_number, + ACTIONS(481), 1, anon_sym_RBRACE, + ACTIONS(483), 1, + sym_tvm_instruction, + STATE(455), 1, + sym_asm_argument_list, + ACTIONS(431), 2, + aux_sym_asm_boc_hex_token1, + aux_sym_asm_boc_hex_token2, + ACTIONS(433), 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(429), 3, + sym_asm_hex_bitstring, + sym_asm_bin_bitstring, + sym_asm_control_register, + ACTIONS(427), 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, + [5257] = 12, + ACTIONS(3), 1, sym_comment, - ACTIONS(435), 9, + ACTIONS(421), 1, + anon_sym_LT_LBRACE, + ACTIONS(435), 1, + sym_asm_number, + ACTIONS(483), 1, + sym_tvm_instruction, + ACTIONS(485), 1, + anon_sym_RBRACE, + STATE(455), 1, + sym_asm_argument_list, + ACTIONS(431), 2, + aux_sym_asm_boc_hex_token1, + aux_sym_asm_boc_hex_token2, + ACTIONS(433), 2, + aux_sym_asm_stack_register_token1, + aux_sym_asm_stack_register_token2, + STATE(99), 2, + sym_asm_expression, + aux_sym_asm_function_body_repeat1, + ACTIONS(429), 3, + sym_asm_hex_bitstring, + sym_asm_bin_bitstring, + sym_asm_control_register, + ACTIONS(427), 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, + [5307] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(489), 9, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -9316,7 +9397,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 +9412,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, + [5338] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(439), 9, + ACTIONS(493), 9, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -9345,7 +9425,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 +9440,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, + [5369] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(443), 9, + ACTIONS(497), 9, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -9374,7 +9453,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 +9468,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, + [5400] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(447), 9, + ACTIONS(501), 9, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -9403,7 +9481,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 +9496,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, + [5431] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(451), 9, + ACTIONS(505), 9, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -9432,7 +9509,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 +9524,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, + [5462] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(455), 9, + ACTIONS(509), 9, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -9461,7 +9537,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 +9552,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, + [5493] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(459), 9, + ACTIONS(513), 9, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -9490,7 +9565,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 +9580,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, + [5524] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(463), 9, + ACTIONS(517), 9, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -9519,7 +9593,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 +9608,769 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_null, - [5347] = 16, - ACTIONS(387), 1, + [5555] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(385), 1, anon_sym_BANG_BANG, - ACTIONS(391), 1, - anon_sym_AMP_AMP, - ACTIONS(393), 1, - anon_sym_PIPE, - ACTIONS(395), 1, + ACTIONS(387), 1, anon_sym_CARET, - ACTIONS(397), 1, + ACTIONS(389), 1, anon_sym_AMP, - ACTIONS(411), 1, + ACTIONS(403), 1, anon_sym_SLASH, - ACTIONS(423), 1, + ACTIONS(413), 1, anon_sym_QMARK, - ACTIONS(425), 1, + ACTIONS(415), 1, anon_sym_PIPE_PIPE, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(399), 2, + ACTIONS(417), 1, + anon_sym_AMP_AMP, + ACTIONS(419), 1, + anon_sym_PIPE, + ACTIONS(391), 2, anon_sym_BANG_EQ, anon_sym_EQ_EQ, - ACTIONS(401), 2, + ACTIONS(393), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(403), 2, + ACTIONS(395), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(405), 2, + ACTIONS(397), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(407), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(409), 2, + ACTIONS(401), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(465), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [5404] = 16, - ACTIONS(387), 1, + ACTIONS(519), 2, + anon_sym_SEMI, + anon_sym_RBRACE, + [5611] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(385), 1, anon_sym_BANG_BANG, - ACTIONS(391), 1, - anon_sym_AMP_AMP, - ACTIONS(393), 1, - anon_sym_PIPE, - ACTIONS(395), 1, + ACTIONS(387), 1, anon_sym_CARET, - ACTIONS(397), 1, + ACTIONS(389), 1, anon_sym_AMP, - ACTIONS(411), 1, + ACTIONS(403), 1, anon_sym_SLASH, - ACTIONS(423), 1, + ACTIONS(413), 1, anon_sym_QMARK, - ACTIONS(425), 1, + ACTIONS(415), 1, anon_sym_PIPE_PIPE, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(399), 2, + ACTIONS(417), 1, + anon_sym_AMP_AMP, + ACTIONS(419), 1, + anon_sym_PIPE, + ACTIONS(391), 2, anon_sym_BANG_EQ, anon_sym_EQ_EQ, - ACTIONS(401), 2, + ACTIONS(393), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(403), 2, + ACTIONS(395), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(405), 2, + ACTIONS(397), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(407), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(409), 2, + ACTIONS(401), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(467), 2, + ACTIONS(521), 2, anon_sym_SEMI, anon_sym_RBRACE, - [5461] = 16, - ACTIONS(387), 1, + [5667] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(385), 1, anon_sym_BANG_BANG, - ACTIONS(391), 1, - anon_sym_AMP_AMP, - ACTIONS(393), 1, - anon_sym_PIPE, - ACTIONS(395), 1, + ACTIONS(387), 1, anon_sym_CARET, - ACTIONS(397), 1, + ACTIONS(389), 1, anon_sym_AMP, - ACTIONS(411), 1, + ACTIONS(403), 1, anon_sym_SLASH, - ACTIONS(423), 1, + ACTIONS(413), 1, anon_sym_QMARK, - ACTIONS(425), 1, + ACTIONS(415), 1, anon_sym_PIPE_PIPE, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(399), 2, + ACTIONS(417), 1, + anon_sym_AMP_AMP, + ACTIONS(419), 1, + anon_sym_PIPE, + ACTIONS(391), 2, anon_sym_BANG_EQ, anon_sym_EQ_EQ, - ACTIONS(401), 2, + ACTIONS(393), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(403), 2, + ACTIONS(395), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(405), 2, + ACTIONS(397), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(407), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(409), 2, + ACTIONS(401), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(469), 2, + ACTIONS(523), 2, anon_sym_SEMI, anon_sym_RBRACE, - [5518] = 16, - ACTIONS(387), 1, + [5723] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(385), 1, anon_sym_BANG_BANG, - ACTIONS(391), 1, - anon_sym_AMP_AMP, - ACTIONS(393), 1, - anon_sym_PIPE, - ACTIONS(395), 1, + ACTIONS(387), 1, anon_sym_CARET, - ACTIONS(397), 1, + ACTIONS(389), 1, anon_sym_AMP, - ACTIONS(411), 1, + ACTIONS(403), 1, anon_sym_SLASH, - ACTIONS(423), 1, + ACTIONS(413), 1, anon_sym_QMARK, - ACTIONS(425), 1, + ACTIONS(415), 1, anon_sym_PIPE_PIPE, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(399), 2, + ACTIONS(417), 1, + anon_sym_AMP_AMP, + ACTIONS(419), 1, + anon_sym_PIPE, + ACTIONS(391), 2, anon_sym_BANG_EQ, anon_sym_EQ_EQ, - ACTIONS(401), 2, + ACTIONS(393), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(403), 2, + ACTIONS(395), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(405), 2, + ACTIONS(397), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(407), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(409), 2, + ACTIONS(401), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(471), 2, + ACTIONS(525), 2, anon_sym_SEMI, anon_sym_RBRACE, - [5575] = 16, - ACTIONS(387), 1, + [5779] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(385), 1, anon_sym_BANG_BANG, - ACTIONS(391), 1, - anon_sym_AMP_AMP, - ACTIONS(393), 1, - anon_sym_PIPE, - ACTIONS(395), 1, + ACTIONS(387), 1, anon_sym_CARET, - ACTIONS(397), 1, + ACTIONS(389), 1, anon_sym_AMP, - ACTIONS(411), 1, + ACTIONS(403), 1, anon_sym_SLASH, - ACTIONS(423), 1, + ACTIONS(413), 1, anon_sym_QMARK, - ACTIONS(425), 1, + ACTIONS(415), 1, anon_sym_PIPE_PIPE, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(399), 2, + ACTIONS(417), 1, + anon_sym_AMP_AMP, + ACTIONS(419), 1, + anon_sym_PIPE, + ACTIONS(391), 2, anon_sym_BANG_EQ, anon_sym_EQ_EQ, - ACTIONS(401), 2, + ACTIONS(393), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(403), 2, + ACTIONS(395), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(405), 2, + ACTIONS(397), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(407), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(409), 2, + ACTIONS(401), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(473), 2, + ACTIONS(527), 2, anon_sym_RBRACE, anon_sym_COMMA, - [5632] = 16, - ACTIONS(387), 1, + [5835] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(385), 1, anon_sym_BANG_BANG, - ACTIONS(391), 1, - anon_sym_AMP_AMP, - ACTIONS(393), 1, - anon_sym_PIPE, - ACTIONS(395), 1, + ACTIONS(387), 1, anon_sym_CARET, - ACTIONS(397), 1, + ACTIONS(389), 1, anon_sym_AMP, - ACTIONS(411), 1, + ACTIONS(403), 1, anon_sym_SLASH, - ACTIONS(423), 1, + ACTIONS(413), 1, anon_sym_QMARK, - ACTIONS(425), 1, + ACTIONS(415), 1, anon_sym_PIPE_PIPE, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(399), 2, + ACTIONS(417), 1, + anon_sym_AMP_AMP, + ACTIONS(419), 1, + anon_sym_PIPE, + ACTIONS(391), 2, anon_sym_BANG_EQ, anon_sym_EQ_EQ, - ACTIONS(401), 2, + ACTIONS(393), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(403), 2, + ACTIONS(395), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(405), 2, + ACTIONS(397), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(407), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(409), 2, + ACTIONS(401), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(475), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [5689] = 16, - ACTIONS(387), 1, + ACTIONS(529), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [5891] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(385), 1, anon_sym_BANG_BANG, - ACTIONS(391), 1, - anon_sym_AMP_AMP, - ACTIONS(393), 1, - anon_sym_PIPE, - ACTIONS(395), 1, + ACTIONS(387), 1, anon_sym_CARET, - ACTIONS(397), 1, + ACTIONS(389), 1, anon_sym_AMP, - ACTIONS(411), 1, + ACTIONS(403), 1, anon_sym_SLASH, - ACTIONS(423), 1, + ACTIONS(413), 1, anon_sym_QMARK, - ACTIONS(425), 1, + ACTIONS(415), 1, anon_sym_PIPE_PIPE, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(399), 2, + ACTIONS(417), 1, + anon_sym_AMP_AMP, + ACTIONS(419), 1, + anon_sym_PIPE, + ACTIONS(391), 2, anon_sym_BANG_EQ, anon_sym_EQ_EQ, - ACTIONS(401), 2, + ACTIONS(393), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(403), 2, + ACTIONS(395), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(405), 2, + ACTIONS(397), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(407), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(409), 2, + ACTIONS(401), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(477), 2, + ACTIONS(531), 2, anon_sym_SEMI, anon_sym_RBRACE, - [5746] = 16, - ACTIONS(387), 1, + [5947] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(385), 1, anon_sym_BANG_BANG, - ACTIONS(391), 1, - anon_sym_AMP_AMP, - ACTIONS(393), 1, - anon_sym_PIPE, - ACTIONS(395), 1, + ACTIONS(387), 1, anon_sym_CARET, - ACTIONS(397), 1, + ACTIONS(389), 1, anon_sym_AMP, - ACTIONS(411), 1, + ACTIONS(403), 1, anon_sym_SLASH, - ACTIONS(423), 1, + ACTIONS(413), 1, anon_sym_QMARK, - ACTIONS(425), 1, + ACTIONS(415), 1, anon_sym_PIPE_PIPE, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(399), 2, + ACTIONS(417), 1, + anon_sym_AMP_AMP, + ACTIONS(419), 1, + anon_sym_PIPE, + ACTIONS(391), 2, anon_sym_BANG_EQ, anon_sym_EQ_EQ, - ACTIONS(401), 2, + ACTIONS(393), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(403), 2, + ACTIONS(395), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(405), 2, + ACTIONS(397), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(407), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(409), 2, + ACTIONS(401), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(479), 2, + ACTIONS(533), 2, anon_sym_SEMI, anon_sym_RBRACE, - [5803] = 16, - ACTIONS(387), 1, + [6003] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(385), 1, anon_sym_BANG_BANG, - ACTIONS(391), 1, - anon_sym_AMP_AMP, - ACTIONS(393), 1, - anon_sym_PIPE, - ACTIONS(395), 1, + ACTIONS(387), 1, anon_sym_CARET, - ACTIONS(397), 1, + ACTIONS(389), 1, anon_sym_AMP, - ACTIONS(411), 1, + ACTIONS(403), 1, anon_sym_SLASH, - ACTIONS(423), 1, + ACTIONS(413), 1, anon_sym_QMARK, - ACTIONS(425), 1, + ACTIONS(415), 1, anon_sym_PIPE_PIPE, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(399), 2, + ACTIONS(417), 1, + anon_sym_AMP_AMP, + ACTIONS(419), 1, + anon_sym_PIPE, + ACTIONS(391), 2, anon_sym_BANG_EQ, anon_sym_EQ_EQ, - ACTIONS(401), 2, + ACTIONS(393), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(403), 2, + ACTIONS(395), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(405), 2, + ACTIONS(397), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(407), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(409), 2, + ACTIONS(401), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(481), 2, + ACTIONS(535), 2, anon_sym_SEMI, anon_sym_RBRACE, - [5860] = 16, - ACTIONS(387), 1, + [6059] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(385), 1, anon_sym_BANG_BANG, - ACTIONS(391), 1, - anon_sym_AMP_AMP, - ACTIONS(393), 1, - anon_sym_PIPE, - ACTIONS(395), 1, + ACTIONS(387), 1, anon_sym_CARET, - ACTIONS(397), 1, + ACTIONS(389), 1, anon_sym_AMP, - ACTIONS(411), 1, + ACTIONS(403), 1, anon_sym_SLASH, - ACTIONS(423), 1, + ACTIONS(413), 1, anon_sym_QMARK, - ACTIONS(425), 1, + ACTIONS(415), 1, anon_sym_PIPE_PIPE, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(399), 2, + ACTIONS(417), 1, + anon_sym_AMP_AMP, + ACTIONS(419), 1, + anon_sym_PIPE, + ACTIONS(391), 2, anon_sym_BANG_EQ, anon_sym_EQ_EQ, - ACTIONS(401), 2, + ACTIONS(393), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(403), 2, + ACTIONS(395), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(405), 2, + ACTIONS(397), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(407), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(409), 2, + ACTIONS(401), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(483), 2, + ACTIONS(537), 2, anon_sym_SEMI, anon_sym_RBRACE, - [5917] = 16, - ACTIONS(387), 1, + [6115] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(385), 1, anon_sym_BANG_BANG, - ACTIONS(391), 1, - anon_sym_AMP_AMP, - ACTIONS(393), 1, - anon_sym_PIPE, - ACTIONS(395), 1, + ACTIONS(387), 1, anon_sym_CARET, - ACTIONS(397), 1, + ACTIONS(389), 1, anon_sym_AMP, - ACTIONS(411), 1, + ACTIONS(403), 1, anon_sym_SLASH, - ACTIONS(423), 1, + ACTIONS(413), 1, anon_sym_QMARK, - ACTIONS(425), 1, + ACTIONS(415), 1, anon_sym_PIPE_PIPE, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(399), 2, + ACTIONS(417), 1, + anon_sym_AMP_AMP, + ACTIONS(419), 1, + anon_sym_PIPE, + ACTIONS(391), 2, anon_sym_BANG_EQ, anon_sym_EQ_EQ, - ACTIONS(401), 2, + ACTIONS(393), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(403), 2, + ACTIONS(395), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(405), 2, + ACTIONS(397), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(407), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(409), 2, + ACTIONS(401), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(485), 2, + ACTIONS(539), 2, anon_sym_SEMI, anon_sym_RBRACE, - [5974] = 16, - ACTIONS(387), 1, + [6171] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(385), 1, anon_sym_BANG_BANG, - ACTIONS(391), 1, - anon_sym_AMP_AMP, - ACTIONS(393), 1, - anon_sym_PIPE, - ACTIONS(395), 1, + ACTIONS(387), 1, anon_sym_CARET, - ACTIONS(397), 1, + ACTIONS(389), 1, anon_sym_AMP, - ACTIONS(411), 1, + ACTIONS(403), 1, anon_sym_SLASH, - ACTIONS(423), 1, + ACTIONS(413), 1, anon_sym_QMARK, - ACTIONS(425), 1, + ACTIONS(415), 1, anon_sym_PIPE_PIPE, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(399), 2, + ACTIONS(417), 1, + anon_sym_AMP_AMP, + ACTIONS(419), 1, + anon_sym_PIPE, + ACTIONS(391), 2, anon_sym_BANG_EQ, anon_sym_EQ_EQ, - ACTIONS(401), 2, + ACTIONS(393), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(403), 2, + ACTIONS(395), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(405), 2, + ACTIONS(397), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(407), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(409), 2, + ACTIONS(401), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(487), 2, + ACTIONS(541), 2, anon_sym_SEMI, anon_sym_RBRACE, - [6031] = 16, - ACTIONS(387), 1, + [6227] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(385), 1, anon_sym_BANG_BANG, - ACTIONS(391), 1, - anon_sym_AMP_AMP, - ACTIONS(393), 1, - anon_sym_PIPE, - ACTIONS(395), 1, + ACTIONS(387), 1, anon_sym_CARET, - ACTIONS(397), 1, + ACTIONS(389), 1, anon_sym_AMP, - ACTIONS(411), 1, + ACTIONS(403), 1, anon_sym_SLASH, - ACTIONS(423), 1, + ACTIONS(413), 1, anon_sym_QMARK, - ACTIONS(425), 1, + ACTIONS(415), 1, anon_sym_PIPE_PIPE, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(399), 2, + ACTIONS(417), 1, + anon_sym_AMP_AMP, + ACTIONS(419), 1, + anon_sym_PIPE, + ACTIONS(391), 2, anon_sym_BANG_EQ, anon_sym_EQ_EQ, - ACTIONS(401), 2, + ACTIONS(393), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(403), 2, + ACTIONS(395), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(405), 2, + ACTIONS(397), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(407), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(409), 2, + ACTIONS(401), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(489), 2, + ACTIONS(543), 2, anon_sym_SEMI, anon_sym_RBRACE, - [6088] = 16, - ACTIONS(387), 1, + [6283] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(385), 1, anon_sym_BANG_BANG, - ACTIONS(391), 1, - anon_sym_AMP_AMP, - ACTIONS(393), 1, - anon_sym_PIPE, - ACTIONS(395), 1, + ACTIONS(387), 1, anon_sym_CARET, - ACTIONS(397), 1, + ACTIONS(389), 1, anon_sym_AMP, - ACTIONS(411), 1, + ACTIONS(403), 1, anon_sym_SLASH, - ACTIONS(423), 1, + ACTIONS(413), 1, anon_sym_QMARK, - ACTIONS(425), 1, + ACTIONS(415), 1, anon_sym_PIPE_PIPE, - ACTIONS(491), 1, - anon_sym_COLON, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(399), 2, + ACTIONS(417), 1, + anon_sym_AMP_AMP, + ACTIONS(419), 1, + anon_sym_PIPE, + ACTIONS(545), 1, + anon_sym_RPAREN, + ACTIONS(391), 2, anon_sym_BANG_EQ, anon_sym_EQ_EQ, - ACTIONS(401), 2, + ACTIONS(393), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(403), 2, + ACTIONS(395), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(405), 2, + ACTIONS(397), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(407), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(409), 2, + ACTIONS(401), 2, anon_sym_STAR, anon_sym_PERCENT, - [6144] = 16, - ACTIONS(387), 1, + [6338] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(385), 1, anon_sym_BANG_BANG, - ACTIONS(391), 1, + ACTIONS(387), 1, + anon_sym_CARET, + ACTIONS(389), 1, + anon_sym_AMP, + ACTIONS(403), 1, + anon_sym_SLASH, + ACTIONS(413), 1, + anon_sym_QMARK, + ACTIONS(415), 1, + anon_sym_PIPE_PIPE, + ACTIONS(417), 1, anon_sym_AMP_AMP, - ACTIONS(393), 1, + ACTIONS(419), 1, anon_sym_PIPE, - ACTIONS(395), 1, + ACTIONS(547), 1, + anon_sym_RPAREN, + ACTIONS(391), 2, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + ACTIONS(393), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(395), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(397), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(399), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(401), 2, + anon_sym_STAR, + anon_sym_PERCENT, + [6393] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(385), 1, + anon_sym_BANG_BANG, + ACTIONS(387), 1, anon_sym_CARET, - ACTIONS(397), 1, + ACTIONS(389), 1, anon_sym_AMP, - ACTIONS(411), 1, + ACTIONS(403), 1, anon_sym_SLASH, - ACTIONS(423), 1, + ACTIONS(413), 1, anon_sym_QMARK, - ACTIONS(425), 1, + ACTIONS(415), 1, anon_sym_PIPE_PIPE, - ACTIONS(493), 1, + ACTIONS(417), 1, + anon_sym_AMP_AMP, + ACTIONS(419), 1, + anon_sym_PIPE, + ACTIONS(549), 1, anon_sym_SEMI, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(399), 2, + ACTIONS(391), 2, anon_sym_BANG_EQ, anon_sym_EQ_EQ, - ACTIONS(401), 2, + ACTIONS(393), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(403), 2, + ACTIONS(395), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(405), 2, + ACTIONS(397), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(407), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(409), 2, + ACTIONS(401), 2, anon_sym_STAR, anon_sym_PERCENT, - [6200] = 16, - ACTIONS(387), 1, + [6448] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(385), 1, anon_sym_BANG_BANG, - ACTIONS(391), 1, + ACTIONS(387), 1, + anon_sym_CARET, + ACTIONS(389), 1, + anon_sym_AMP, + ACTIONS(403), 1, + anon_sym_SLASH, + ACTIONS(413), 1, + anon_sym_QMARK, + ACTIONS(415), 1, + anon_sym_PIPE_PIPE, + ACTIONS(417), 1, anon_sym_AMP_AMP, - ACTIONS(393), 1, + ACTIONS(419), 1, anon_sym_PIPE, - ACTIONS(395), 1, + ACTIONS(551), 1, + anon_sym_RPAREN, + ACTIONS(391), 2, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + ACTIONS(393), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(395), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(397), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(399), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(401), 2, + anon_sym_STAR, + anon_sym_PERCENT, + [6503] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(385), 1, + anon_sym_BANG_BANG, + ACTIONS(387), 1, anon_sym_CARET, - ACTIONS(397), 1, + ACTIONS(389), 1, anon_sym_AMP, - ACTIONS(411), 1, + ACTIONS(403), 1, anon_sym_SLASH, - ACTIONS(423), 1, + ACTIONS(413), 1, anon_sym_QMARK, - ACTIONS(425), 1, + ACTIONS(415), 1, anon_sym_PIPE_PIPE, - ACTIONS(495), 1, + ACTIONS(417), 1, + anon_sym_AMP_AMP, + ACTIONS(419), 1, + anon_sym_PIPE, + ACTIONS(553), 1, anon_sym_RPAREN, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(399), 2, + ACTIONS(391), 2, anon_sym_BANG_EQ, anon_sym_EQ_EQ, + ACTIONS(393), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(395), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(397), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(399), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(401), 2, + anon_sym_STAR, + anon_sym_PERCENT, + [6558] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(385), 1, + anon_sym_BANG_BANG, + ACTIONS(387), 1, + anon_sym_CARET, + ACTIONS(389), 1, + anon_sym_AMP, + ACTIONS(403), 1, + anon_sym_SLASH, + ACTIONS(413), 1, + anon_sym_QMARK, + ACTIONS(415), 1, + anon_sym_PIPE_PIPE, + ACTIONS(417), 1, + anon_sym_AMP_AMP, + ACTIONS(419), 1, + anon_sym_PIPE, + ACTIONS(555), 1, + anon_sym_SEMI, + ACTIONS(391), 2, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + ACTIONS(393), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(403), 2, + ACTIONS(395), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(405), 2, + ACTIONS(397), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(407), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(409), 2, + ACTIONS(401), 2, anon_sym_STAR, anon_sym_PERCENT, - [6256] = 4, - ACTIONS(499), 1, - anon_sym_import, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [6613] = 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 +10389,267 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_contract, anon_sym_trait, anon_sym_ATinterface, - [6288] = 16, - ACTIONS(387), 1, + [6644] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(385), 1, anon_sym_BANG_BANG, - ACTIONS(391), 1, - anon_sym_AMP_AMP, - ACTIONS(393), 1, - anon_sym_PIPE, - ACTIONS(395), 1, + ACTIONS(387), 1, anon_sym_CARET, - ACTIONS(397), 1, + ACTIONS(389), 1, anon_sym_AMP, - ACTIONS(411), 1, + ACTIONS(403), 1, anon_sym_SLASH, - ACTIONS(423), 1, + ACTIONS(413), 1, anon_sym_QMARK, - ACTIONS(425), 1, + ACTIONS(415), 1, anon_sym_PIPE_PIPE, - ACTIONS(502), 1, - anon_sym_RPAREN, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(399), 2, + ACTIONS(417), 1, + anon_sym_AMP_AMP, + ACTIONS(419), 1, + anon_sym_PIPE, + ACTIONS(562), 1, + anon_sym_COLON, + ACTIONS(391), 2, anon_sym_BANG_EQ, anon_sym_EQ_EQ, - ACTIONS(401), 2, + ACTIONS(393), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(403), 2, + ACTIONS(395), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(405), 2, + ACTIONS(397), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(407), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(409), 2, + ACTIONS(401), 2, anon_sym_STAR, anon_sym_PERCENT, - [6344] = 16, - ACTIONS(387), 1, + [6699] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(385), 1, anon_sym_BANG_BANG, - ACTIONS(391), 1, - anon_sym_AMP_AMP, - ACTIONS(393), 1, - anon_sym_PIPE, - ACTIONS(395), 1, + ACTIONS(387), 1, anon_sym_CARET, - ACTIONS(397), 1, + ACTIONS(389), 1, anon_sym_AMP, - ACTIONS(411), 1, + ACTIONS(403), 1, anon_sym_SLASH, - ACTIONS(423), 1, + ACTIONS(413), 1, anon_sym_QMARK, - ACTIONS(425), 1, + ACTIONS(415), 1, anon_sym_PIPE_PIPE, - ACTIONS(504), 1, + ACTIONS(417), 1, + anon_sym_AMP_AMP, + ACTIONS(419), 1, + anon_sym_PIPE, + ACTIONS(564), 1, anon_sym_RPAREN, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(399), 2, + ACTIONS(391), 2, anon_sym_BANG_EQ, anon_sym_EQ_EQ, - ACTIONS(401), 2, + ACTIONS(393), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(403), 2, + ACTIONS(395), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(405), 2, + ACTIONS(397), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(407), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(409), 2, + ACTIONS(401), 2, anon_sym_STAR, anon_sym_PERCENT, - [6400] = 16, - ACTIONS(387), 1, + [6754] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(385), 1, anon_sym_BANG_BANG, - ACTIONS(391), 1, - anon_sym_AMP_AMP, - ACTIONS(393), 1, - anon_sym_PIPE, - ACTIONS(395), 1, + ACTIONS(387), 1, anon_sym_CARET, - ACTIONS(397), 1, + ACTIONS(389), 1, anon_sym_AMP, - ACTIONS(411), 1, + ACTIONS(403), 1, anon_sym_SLASH, - ACTIONS(423), 1, + ACTIONS(413), 1, anon_sym_QMARK, - ACTIONS(425), 1, + ACTIONS(415), 1, anon_sym_PIPE_PIPE, - ACTIONS(506), 1, + ACTIONS(417), 1, + anon_sym_AMP_AMP, + ACTIONS(419), 1, + anon_sym_PIPE, + ACTIONS(566), 1, anon_sym_RPAREN, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(399), 2, + ACTIONS(391), 2, anon_sym_BANG_EQ, anon_sym_EQ_EQ, - ACTIONS(401), 2, + ACTIONS(393), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(403), 2, + ACTIONS(395), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(405), 2, + ACTIONS(397), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(407), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(409), 2, + ACTIONS(401), 2, anon_sym_STAR, anon_sym_PERCENT, - [6456] = 16, - ACTIONS(387), 1, + [6809] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(385), 1, anon_sym_BANG_BANG, - ACTIONS(391), 1, - anon_sym_AMP_AMP, - ACTIONS(393), 1, - anon_sym_PIPE, - ACTIONS(395), 1, + ACTIONS(387), 1, anon_sym_CARET, - ACTIONS(397), 1, + ACTIONS(389), 1, anon_sym_AMP, - ACTIONS(411), 1, + ACTIONS(403), 1, anon_sym_SLASH, - ACTIONS(423), 1, + ACTIONS(413), 1, anon_sym_QMARK, - ACTIONS(425), 1, + ACTIONS(415), 1, anon_sym_PIPE_PIPE, - ACTIONS(508), 1, + ACTIONS(417), 1, + anon_sym_AMP_AMP, + ACTIONS(419), 1, + anon_sym_PIPE, + ACTIONS(568), 1, anon_sym_RPAREN, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(399), 2, + ACTIONS(391), 2, anon_sym_BANG_EQ, anon_sym_EQ_EQ, - ACTIONS(401), 2, + ACTIONS(393), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(403), 2, + ACTIONS(395), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(405), 2, + ACTIONS(397), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(407), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(409), 2, + ACTIONS(401), 2, anon_sym_STAR, anon_sym_PERCENT, - [6512] = 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(510), 1, - anon_sym_RPAREN, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [6864] = 16, + 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, - [6568] = 16, - ACTIONS(387), 1, + ACTIONS(385), 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, - 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, - 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, + ACTIONS(389), 1, anon_sym_AMP, - ACTIONS(411), 1, + ACTIONS(403), 1, anon_sym_SLASH, - ACTIONS(423), 1, + ACTIONS(413), 1, anon_sym_QMARK, - ACTIONS(425), 1, + ACTIONS(415), 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(417), 1, anon_sym_AMP_AMP, - ACTIONS(393), 1, + ACTIONS(419), 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(516), 1, + ACTIONS(570), 1, anon_sym_RPAREN, - ACTIONS(21), 2, - aux_sym_asm_list_token1, - sym_comment, - ACTIONS(399), 2, + ACTIONS(391), 2, anon_sym_BANG_EQ, anon_sym_EQ_EQ, - ACTIONS(401), 2, + ACTIONS(393), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(403), 2, + ACTIONS(395), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(405), 2, + ACTIONS(397), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(407), 2, + ACTIONS(399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(409), 2, + ACTIONS(401), 2, anon_sym_STAR, anon_sym_PERCENT, - [6736] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [6919] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(421), 1, + anon_sym_LT_LBRACE, + ACTIONS(574), 1, + sym_asm_number, + ACTIONS(576), 1, + sym_tvm_instruction, + ACTIONS(431), 2, + aux_sym_asm_boc_hex_token1, + aux_sym_asm_boc_hex_token2, + ACTIONS(433), 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(427), 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, + [6959] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(578), 1, + anon_sym_LT_LBRACE, + ACTIONS(593), 1, + sym_asm_number, + 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, + [6999] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(157), 19, + ACTIONS(155), 19, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -10559,11 +10669,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, + [7024] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(161), 19, + ACTIONS(159), 19, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -10583,11 +10692,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, + [7049] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(165), 19, + ACTIONS(163), 19, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -10607,11 +10715,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, + [7074] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(518), 19, + ACTIONS(598), 19, ts_builtin_sym_end, anon_sym_import, anon_sym_primitive, @@ -10631,11 +10738,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, + [7099] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(520), 18, + ACTIONS(600), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -10654,11 +10760,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, + [7123] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(522), 18, + ACTIONS(602), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -10677,11 +10782,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, + [7147] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(524), 18, + ACTIONS(604), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -10700,11 +10804,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, + [7171] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(526), 18, + ACTIONS(606), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -10723,11 +10826,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, + [7195] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(528), 18, + ACTIONS(608), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -10746,11 +10848,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, + [7219] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(530), 18, + ACTIONS(610), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -10769,11 +10870,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, + [7243] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(532), 18, + ACTIONS(612), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -10792,11 +10892,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, + [7267] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(534), 18, + ACTIONS(614), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -10815,11 +10914,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, + [7291] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(536), 18, + ACTIONS(616), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -10838,11 +10936,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, + [7315] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(538), 18, + ACTIONS(618), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -10861,11 +10958,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, + [7339] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(540), 18, + ACTIONS(620), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -10884,11 +10980,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, + [7363] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(542), 18, + ACTIONS(622), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -10907,11 +11002,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, + [7387] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(544), 18, + ACTIONS(624), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -10930,11 +11024,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, + [7411] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(546), 18, + ACTIONS(626), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -10953,11 +11046,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, + [7435] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(548), 18, + ACTIONS(628), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -10976,11 +11068,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, + [7459] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(550), 18, + ACTIONS(630), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -10999,11 +11090,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, + [7483] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(552), 18, + ACTIONS(632), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11022,11 +11112,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, + [7507] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(554), 18, + ACTIONS(634), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11045,11 +11134,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, + [7531] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(556), 18, + ACTIONS(636), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11068,11 +11156,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, + [7555] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(558), 18, + ACTIONS(638), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11091,11 +11178,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, + [7579] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(560), 18, + ACTIONS(640), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11114,11 +11200,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, + [7603] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(562), 18, + ACTIONS(642), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11137,11 +11222,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, + [7627] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(564), 18, + ACTIONS(644), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11160,11 +11244,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, + [7651] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(566), 18, + ACTIONS(646), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11183,11 +11266,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, + [7675] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(568), 18, + ACTIONS(648), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11206,11 +11288,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, + [7699] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(570), 18, + ACTIONS(650), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11229,11 +11310,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, + [7723] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(572), 18, + ACTIONS(652), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11252,11 +11332,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, + [7747] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(574), 18, + ACTIONS(654), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11275,11 +11354,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, + [7771] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(576), 18, + ACTIONS(656), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11298,11 +11376,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, + [7795] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(578), 18, + ACTIONS(658), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11321,11 +11398,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, + [7819] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(580), 18, + ACTIONS(660), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11344,11 +11420,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, + [7843] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(582), 18, + ACTIONS(662), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11367,11 +11442,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, + [7867] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(584), 18, + ACTIONS(664), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11390,11 +11464,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, + [7891] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(586), 18, + ACTIONS(666), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11413,11 +11486,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, + [7915] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(588), 18, + ACTIONS(668), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11436,11 +11508,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, + [7939] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(590), 18, + ACTIONS(670), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11459,11 +11530,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, + [7963] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(592), 18, + ACTIONS(672), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11482,11 +11552,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, + [7987] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(594), 18, + ACTIONS(674), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11505,11 +11574,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, + [8011] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(596), 18, + ACTIONS(676), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11528,11 +11596,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, + [8035] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(598), 18, + ACTIONS(678), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11551,11 +11618,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, + [8059] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(600), 18, + ACTIONS(680), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11574,11 +11640,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, + [8083] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(602), 18, + ACTIONS(682), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11597,11 +11662,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, + [8107] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(604), 18, + ACTIONS(684), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11620,11 +11684,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, + [8131] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(606), 18, + ACTIONS(686), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11643,11 +11706,10 @@ 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, + [8155] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(608), 18, + ACTIONS(688), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11666,11 +11728,10 @@ 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, + [8179] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(610), 18, + ACTIONS(690), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11689,11 +11750,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, + [8203] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(612), 18, + ACTIONS(692), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11712,11 +11772,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, + [8227] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(614), 18, + ACTIONS(694), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11735,11 +11794,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, + [8251] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(616), 18, + ACTIONS(696), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11758,11 +11816,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, + [8275] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(618), 18, + ACTIONS(698), 18, ts_builtin_sym_end, anon_sym_primitive, anon_sym_const, @@ -11781,13 +11838,54 @@ 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, + [8299] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(702), 3, + anon_sym_RBRACE_GT, + sym_asm_number, + sym_tvm_instruction, + ACTIONS(700), 13, + anon_sym_LT_LBRACE, + 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, + [8323] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(706), 3, + anon_sym_RBRACE_GT, + sym_asm_number, + sym_tvm_instruction, + ACTIONS(704), 13, + anon_sym_LT_LBRACE, + 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, + [8347] = 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 +11900,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, + [8370] = 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 +11920,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, + [8393] = 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 +11940,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, + [8416] = 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 +11960,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, + [8439] = 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 +11980,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, + [8462] = 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 +12000,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, + [8485] = 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 +12020,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, + [8508] = 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 +12040,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, + [8531] = 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 +12060,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bounced, anon_sym_external, sym_identifier, - [8306] = 3, - ACTIONS(656), 1, + [8554] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(702), 2, + sym_asm_number, + sym_tvm_instruction, + ACTIONS(700), 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, + [8577] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(706), 2, + sym_asm_number, + sym_tvm_instruction, + ACTIONS(704), 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, + [8600] = 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 +12120,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, + [8623] = 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 +12140,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, + [8646] = 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 +12160,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, + [8669] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(756), 2, + sym_asm_number, + 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, + [8691] = 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,14 +12198,70 @@ 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, + [8713] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(670), 13, - anon_sym_const, + ACTIONS(764), 2, + sym_asm_number, + 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, + [8735] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(768), 2, + sym_asm_number, + 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, + [8757] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(772), 2, + sym_asm_number, + 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, + [8779] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, + anon_sym_RBRACE, + ACTIONS(774), 13, + anon_sym_const, anon_sym_virtual, anon_sym_override, anon_sym_abstract, @@ -12073,37 +12274,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bounced, anon_sym_external, sym_identifier, - [8424] = 8, - ACTIONS(25), 1, + [8801] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(778), 2, + sym_asm_number, + 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, + [8823] = 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, + [8854] = 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 +12334,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, + [8875] = 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, + [8898] = 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, + [8923] = 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, + [8948] = 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, + [8971] = 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 +12423,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, anon_sym_inline, anon_sym_get, - [8744] = 7, + [8989] = 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, + [9008] = 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, + [9023] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(760), 8, + ACTIONS(817), 8, anon_sym_virtual, anon_sym_override, anon_sym_abstract, @@ -12382,13 +12463,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, + [9037] = 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 +12476,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, + [9053] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(766), 8, + ACTIONS(823), 8, anon_sym_virtual, anon_sym_override, anon_sym_abstract, @@ -12409,39 +12488,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, + [9067] = 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 +12500,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, anon_sym_inline, anon_sym_get, - [8903] = 3, + [9081] = 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 +12512,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, anon_sym_inline, anon_sym_get, - [8935] = 3, + [9095] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(829), 1, + anon_sym_bounced, + ACTIONS(831), 1, + anon_sym_map, + ACTIONS(833), 1, + sym__type_identifier, + STATE(276), 4, + sym__type, + sym_map_type, + sym_bounced_type, + sym_optional_type, + [9114] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(21), 1, - aux_sym_asm_list_token1, - ACTIONS(778), 8, + ACTIONS(835), 7, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_RPAREN, 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_COMMA, + anon_sym_as, + [9127] = 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(301), 4, + sym__type, + sym_map_type, + sym_bounced_type, + sym_optional_type, + [9146] = 5, + ACTIONS(3), 1, sym_comment, - STATE(409), 4, + ACTIONS(829), 1, + anon_sym_bounced, + ACTIONS(831), 1, + anon_sym_map, + ACTIONS(833), 1, + sym__type_identifier, + STATE(298), 4, sym__type, sym_map_type, sym_bounced_type, sym_optional_type, - [8972] = 5, - ACTIONS(780), 1, + [9165] = 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, + STATE(337), 4, + sym__type, + sym_map_type, + sym_bounced_type, + sym_optional_type, + [9184] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(829), 1, + anon_sym_bounced, + ACTIONS(831), 1, + anon_sym_map, + ACTIONS(833), 1, sym__type_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + STATE(303), 4, + sym__type, + sym_map_type, + sym_bounced_type, + sym_optional_type, + [9203] = 5, + ACTIONS(3), 1, sym_comment, - STATE(288), 4, + ACTIONS(829), 1, + anon_sym_bounced, + ACTIONS(831), 1, + anon_sym_map, + ACTIONS(833), 1, + sym__type_identifier, + STATE(335), 4, sym__type, sym_map_type, sym_bounced_type, sym_optional_type, - [8992] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [9222] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(786), 7, + ACTIONS(837), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RPAREN, @@ -12533,131 +12618,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COMMA, anon_sym_as, - [9006] = 5, - ACTIONS(780), 1, + [9235] = 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(373), 4, sym__type, sym_map_type, sym_bounced_type, sym_optional_type, - [9026] = 5, - ACTIONS(780), 1, + [9254] = 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(363), 4, sym__type, sym_map_type, sym_bounced_type, sym_optional_type, - [9046] = 5, - ACTIONS(780), 1, + [9273] = 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(413), 4, sym__type, sym_map_type, sym_bounced_type, sym_optional_type, - [9066] = 5, - ACTIONS(780), 1, + [9292] = 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(405), 4, sym__type, sym_map_type, sym_bounced_type, sym_optional_type, - [9086] = 5, - ACTIONS(780), 1, + [9311] = 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(273), 4, sym__type, sym_map_type, sym_bounced_type, sym_optional_type, - [9106] = 5, - ACTIONS(780), 1, + [9330] = 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(304), 4, sym__type, sym_map_type, sym_bounced_type, sym_optional_type, - [9126] = 5, - ACTIONS(780), 1, + [9349] = 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(362), 4, + STATE(439), 4, sym__type, sym_map_type, sym_bounced_type, sym_optional_type, - [9146] = 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(376), 4, - sym__type, - sym_map_type, - sym_bounced_type, - sym_optional_type, - [9166] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [9368] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(788), 7, + ACTIONS(839), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RPAREN, @@ -12665,23 +12727,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COMMA, anon_sym_as, - [9180] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [9381] = 5, + ACTIONS(3), 1, 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, + ACTIONS(829), 1, + anon_sym_bounced, + ACTIONS(831), 1, + anon_sym_map, + ACTIONS(833), 1, + sym__type_identifier, + STATE(464), 4, + sym__type, + sym_map_type, + sym_bounced_type, + sym_optional_type, + [9400] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(792), 7, + ACTIONS(841), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RPAREN, @@ -12689,71 +12752,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COMMA, anon_sym_as, - [9208] = 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, + [9413] = 5, + ACTIONS(3), 1, sym_comment, - STATE(247), 4, - sym__type, - sym_map_type, - sym_bounced_type, - sym_optional_type, - [9228] = 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(300), 4, + STATE(349), 4, sym__type, sym_map_type, sym_bounced_type, sym_optional_type, - [9248] = 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, + [9432] = 5, + ACTIONS(3), 1, sym_comment, - STATE(394), 4, - sym__type, - sym_map_type, - sym_bounced_type, - sym_optional_type, - [9268] = 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(258), 4, + STATE(396), 4, sym__type, sym_map_type, sym_bounced_type, sym_optional_type, - [9288] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [9451] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(794), 7, + ACTIONS(843), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RPAREN, @@ -12761,41 +12791,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COMMA, anon_sym_as, - [9302] = 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(385), 4, - sym__type, - sym_map_type, - sym_bounced_type, - sym_optional_type, - [9322] = 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(294), 4, - sym__type, - sym_map_type, - sym_bounced_type, - sym_optional_type, - [9342] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [9464] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(796), 7, + ACTIONS(845), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RPAREN, @@ -12803,3256 +12802,2924 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COMMA, anon_sym_as, - [9356] = 5, - ACTIONS(780), 1, + [9477] = 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, + [9496] = 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, + [9518] = 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, + [9535] = 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, + [9552] = 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, + [9569] = 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, + [9584] = 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, + [9601] = 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, + [9616] = 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, + [9633] = 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, + [9644] = 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, + [9660] = 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, + [9670] = 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, + [9686] = 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, + [9696] = 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, + [9712] = 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, + [9726] = 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(187), 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, + [9742] = 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, + [9758] = 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, + [9772] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(881), 2, - anon_sym_contract, + ACTIONS(919), 4, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [9782] = 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, + [9796] = 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, - [9790] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [9810] = 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, + [9824] = 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, + [9834] = 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, + [9848] = 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, + [9862] = 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, + [9878] = 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, + [9892] = 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, sym_block_statement, sym_if_statement, - [9846] = 5, - ACTIONS(842), 1, + [9906] = 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, + [9922] = 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, + [9938] = 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, + [9952] = 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, + [9965] = 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(185), 1, sym_asm_function_body, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [9978] = 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, + [9991] = 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, + [10004] = 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, + [10017] = 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, + [10030] = 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, + [10043] = 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, + [10056] = 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, + [10069] = 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, + [10082] = 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, + [10093] = 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, + [10106] = 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, + [10119] = 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, + [10132] = 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, + [10145] = 4, + ACTIONS(3), 1, sym_comment, - [10143] = 4, - ACTIONS(866), 1, + ACTIONS(962), 1, anon_sym_LBRACE, - ACTIONS(960), 1, + ACTIONS(1009), 1, + anon_sym_COLON, + STATE(141), 1, + sym_asm_function_body, + [10158] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(962), 1, + anon_sym_LBRACE, + ACTIONS(1011), 1, + anon_sym_COLON, + STATE(142), 1, + sym_asm_function_body, + [10171] = 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, + [10184] = 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, + [10197] = 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, + [10210] = 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, + [10221] = 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, + [10234] = 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, + [10247] = 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, + [10258] = 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, + [10271] = 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, + [10284] = 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, + [10297] = 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, + [10310] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1048), 3, + anon_sym_contract, + anon_sym_trait, + anon_sym_ATinterface, + [10319] = 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, + [10332] = 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, + [10345] = 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, + [10356] = 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, + [10369] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(983), 1, + sym_identifier, + ACTIONS(1060), 1, + anon_sym_RBRACE, + STATE(347), 1, + sym_instance_argument, + [10382] = 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, + [10395] = 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, + [10408] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1066), 1, + anon_sym_LPAREN, + ACTIONS(1068), 1, + sym__type_identifier, + STATE(470), 1, + sym_message_value, + [10421] = 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, + [10434] = 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, + [10447] = 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, + [10460] = 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, + [10473] = 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, + [10486] = 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, + [10497] = 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, + [10510] = 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, + [10523] = 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, + [10536] = 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, + [10547] = 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, + [10560] = 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, + [10568] = 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, + [10578] = 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, + [10588] = 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, + [10598] = 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, + [10608] = 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, + [10618] = 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, + [10628] = 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, + [10636] = 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, + [10646] = 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, + [10656] = 3, + ACTIONS(3), 1, sym_comment, - [10637] = 3, - ACTIONS(75), 1, + ACTIONS(853), 1, + sym_identifier, + STATE(351), 1, + sym_parameter, + [10666] = 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, + [10676] = 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, + [10686] = 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, + [10696] = 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, + [10706] = 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(270), 1, + anon_sym_RBRACE, + ACTIONS(1126), 1, + anon_sym_SEMI, + [10716] = 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, + [10724] = 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, + [10734] = 2, + ACTIONS(3), 1, sym_comment, - [10714] = 3, - ACTIONS(1055), 1, + ACTIONS(1072), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [10742] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(139), 1, anon_sym_LPAREN, - STATE(266), 1, + STATE(68), 1, + sym_argument_list, + [10752] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1130), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [10760] = 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, + [10770] = 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, + [10778] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(904), 2, + ACTIONS(892), 1, anon_sym_LBRACE, - anon_sym_COMMA, - [10734] = 3, - ACTIONS(1061), 1, + STATE(188), 1, + sym_contract_body, + [10788] = 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, + [10798] = 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, + [10808] = 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, + [10818] = 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, + [10828] = 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, + [10838] = 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, + [10848] = 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, + [10858] = 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, + [10868] = 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, + [10878] = 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, + [10888] = 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, + [10898] = 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, + [10908] = 3, + ACTIONS(3), 1, sym_comment, - [10866] = 3, - ACTIONS(41), 1, + ACTIONS(43), 1, + anon_sym_DQUOTE, + STATE(435), 1, + sym_string, + [10918] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, anon_sym_LBRACE, - STATE(101), 1, + STATE(93), 1, sym_block_statement, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [10928] = 3, + ACTIONS(3), 1, sym_comment, - [10877] = 3, - ACTIONS(41), 1, + ACTIONS(39), 1, anon_sym_LBRACE, - STATE(99), 1, + STATE(106), 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, + [10938] = 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, + [10948] = 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, + [10958] = 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, + [10968] = 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, + [10978] = 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, + [10988] = 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, + [10998] = 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, + [11008] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1114), 1, + anon_sym_LPAREN, + STATE(296), 1, + sym_parameter_list, + [11018] = 3, + ACTIONS(3), 1, sym_comment, - [11027] = 2, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + ACTIONS(1114), 1, + anon_sym_LPAREN, + STATE(297), 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(1154), 1, + sym_identifier, + ACTIONS(1156), 1, + sym__type_identifier, + [11038] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1158), 1, + anon_sym_contract, + ACTIONS(1160), 1, + anon_sym_trait, + [11048] = 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, + [11056] = 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, + [11066] = 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(83), 1, + sym_block_statement, + [11076] = 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, + [11084] = 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(75), 1, + anon_sym_RBRACE, + ACTIONS(1144), 1, + anon_sym_SEMI, + [11094] = 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, - sym_comment, [11102] = 3, - ACTIONS(1055), 1, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1120), 1, + anon_sym_LBRACE, + STATE(170), 1, + sym_struct_body, + [11112] = 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, + [11122] = 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, + [11132] = 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, + [11142] = 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, + [11150] = 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, + [11160] = 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, + [11170] = 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, + [11180] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 2, + ACTIONS(1170), 2, anon_sym_SEMI, anon_sym_RBRACE, - [11226] = 3, - ACTIONS(41), 1, + [11188] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, anon_sym_LBRACE, - STATE(96), 1, + STATE(103), 1, sym_block_statement, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [11198] = 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, + [11208] = 3, + ACTIONS(3), 1, sym_comment, - [11248] = 3, - ACTIONS(856), 1, + ACTIONS(962), 1, + anon_sym_LBRACE, + STATE(173), 1, + sym_asm_function_body, + [11218] = 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, + [11228] = 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, + [11238] = 3, + ACTIONS(3), 1, sym_comment, - [11281] = 3, - ACTIONS(41), 1, + ACTIONS(39), 1, anon_sym_LBRACE, - STATE(95), 1, + STATE(104), 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, + [11248] = 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, + [11258] = 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, + [11266] = 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, + [11276] = 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, + [11286] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(909), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [11332] = 3, - ACTIONS(135), 1, + ACTIONS(73), 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, + [11296] = 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, + [11306] = 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, + [11313] = 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, + [11320] = 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, + [11327] = 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, + [11334] = 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, + [11341] = 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, + [11348] = 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, + [11355] = 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, + [11362] = 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, + [11369] = 2, + ACTIONS(3), 1, sym_comment, - [11464] = 2, - ACTIONS(1147), 1, + ACTIONS(1196), 1, sym_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [11376] = 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, + [11383] = 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, + [11390] = 2, + ACTIONS(3), 1, sym_comment, - [11488] = 2, - ACTIONS(1153), 1, + ACTIONS(1200), 1, sym_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [11397] = 2, + ACTIONS(3), 1, sym_comment, - [11496] = 2, - ACTIONS(1155), 1, + ACTIONS(1202), 1, sym_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [11404] = 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, + [11411] = 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, + [11418] = 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, + [11425] = 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, + [11432] = 2, + ACTIONS(3), 1, sym_comment, - [11536] = 2, - ACTIONS(1165), 1, + ACTIONS(1212), 1, sym_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [11439] = 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, + [11446] = 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, + [11453] = 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, + [11460] = 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, + [11467] = 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, + [11474] = 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, + [11481] = 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, + [11488] = 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, + [11495] = 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, + [11502] = 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, + [11509] = 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, + [11516] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1236), 1, + anon_sym_RPAREN, + [11523] = 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, + [11530] = 2, + ACTIONS(3), 1, sym_comment, - [11640] = 2, - ACTIONS(1187), 1, + ACTIONS(1240), 1, sym_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [11537] = 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, + [11544] = 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, + [11551] = 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, + [11558] = 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, + [11565] = 2, + ACTIONS(3), 1, sym_comment, - [11680] = 2, - ACTIONS(1197), 1, + ACTIONS(1250), 1, sym_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [11572] = 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, + [11579] = 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, + [11586] = 2, + ACTIONS(3), 1, sym_comment, - [11704] = 2, - ACTIONS(1203), 1, + ACTIONS(1256), 1, sym_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [11593] = 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, + [11600] = 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, + [11607] = 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, + [11614] = 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, + [11621] = 2, + ACTIONS(3), 1, sym_comment, - [11784] = 2, - ACTIONS(1223), 1, + ACTIONS(1266), 1, sym_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [11628] = 2, + ACTIONS(3), 1, sym_comment, - [11792] = 2, - ACTIONS(1225), 1, + ACTIONS(1268), 1, + anon_sym_SEMI, + [11635] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1270), 1, anon_sym_RPAREN, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [11642] = 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, + [11649] = 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, + [11656] = 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, + [11663] = 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, + [11670] = 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, + [11677] = 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, + [11684] = 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, + [11691] = 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, + [11698] = 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, + [11705] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1288), 1, + anon_sym_fun, + [11712] = 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, + [11719] = 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, + [11726] = 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, + [11733] = 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, + [11740] = 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, + [11747] = 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, + [11754] = 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, + [11761] = 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, + [11768] = 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, + [11775] = 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, + [11782] = 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, + [11789] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 1, + sym__type_identifier, + [11796] = 2, + ACTIONS(3), 1, sym_comment, - [11968] = 2, - ACTIONS(1061), 1, + ACTIONS(1310), 1, sym_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [11803] = 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, + [11810] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1314), 1, + sym__type_identifier, + [11817] = 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, + [11824] = 2, + ACTIONS(3), 1, sym_comment, - [11992] = 2, - ACTIONS(1271), 1, + ACTIONS(1318), 1, sym_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [11831] = 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, + [11838] = 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, + [11845] = 2, + ACTIONS(3), 1, sym_comment, - [12024] = 2, - ACTIONS(1279), 1, + ACTIONS(1324), 1, sym_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [11852] = 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, + [11859] = 2, + ACTIONS(3), 1, sym_comment, - [12040] = 2, - ACTIONS(1283), 1, + ACTIONS(1326), 1, sym_identifier, - ACTIONS(21), 2, - aux_sym_asm_list_token1, + [11866] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1328), 1, + anon_sym_fun, + [11873] = 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, + [11880] = 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, + [11887] = 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, + [11894] = 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, + [11901] = 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, + [11908] = 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, + [11915] = 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, + [11922] = 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, + [11929] = 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, + [11936] = 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, + [11943] = 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, + [11950] = 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, + [11957] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1354), 1, + sym_tvm_instruction, + [11964] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1356), 1, + anon_sym_native, + [11971] = 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(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(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)] = 1598, + [SMALL_STATE(24)] = 1667, + [SMALL_STATE(25)] = 1724, + [SMALL_STATE(26)] = 1783, + [SMALL_STATE(27)] = 1852, + [SMALL_STATE(28)] = 1911, + [SMALL_STATE(29)] = 1967, + [SMALL_STATE(30)] = 2020, + [SMALL_STATE(31)] = 2073, + [SMALL_STATE(32)] = 2126, + [SMALL_STATE(33)] = 2179, + [SMALL_STATE(34)] = 2232, + [SMALL_STATE(35)] = 2285, + [SMALL_STATE(36)] = 2338, + [SMALL_STATE(37)] = 2391, + [SMALL_STATE(38)] = 2444, + [SMALL_STATE(39)] = 2497, + [SMALL_STATE(40)] = 2550, + [SMALL_STATE(41)] = 2603, + [SMALL_STATE(42)] = 2656, + [SMALL_STATE(43)] = 2709, + [SMALL_STATE(44)] = 2762, + [SMALL_STATE(45)] = 2815, + [SMALL_STATE(46)] = 2868, + [SMALL_STATE(47)] = 2921, + [SMALL_STATE(48)] = 2974, + [SMALL_STATE(49)] = 3027, + [SMALL_STATE(50)] = 3080, + [SMALL_STATE(51)] = 3133, + [SMALL_STATE(52)] = 3186, + [SMALL_STATE(53)] = 3239, + [SMALL_STATE(54)] = 3292, + [SMALL_STATE(55)] = 3345, + [SMALL_STATE(56)] = 3398, + [SMALL_STATE(57)] = 3451, + [SMALL_STATE(58)] = 3504, + [SMALL_STATE(59)] = 3557, + [SMALL_STATE(60)] = 3610, + [SMALL_STATE(61)] = 3663, + [SMALL_STATE(62)] = 3716, + [SMALL_STATE(63)] = 3750, + [SMALL_STATE(64)] = 3784, + [SMALL_STATE(65)] = 3818, + [SMALL_STATE(66)] = 3852, + [SMALL_STATE(67)] = 3886, + [SMALL_STATE(68)] = 3920, + [SMALL_STATE(69)] = 3954, + [SMALL_STATE(70)] = 3988, + [SMALL_STATE(71)] = 4022, + [SMALL_STATE(72)] = 4056, + [SMALL_STATE(73)] = 4090, + [SMALL_STATE(74)] = 4124, + [SMALL_STATE(75)] = 4158, + [SMALL_STATE(76)] = 4192, + [SMALL_STATE(77)] = 4226, + [SMALL_STATE(78)] = 4260, + [SMALL_STATE(79)] = 4294, + [SMALL_STATE(80)] = 4328, + [SMALL_STATE(81)] = 4364, + [SMALL_STATE(82)] = 4399, + [SMALL_STATE(83)] = 4452, + [SMALL_STATE(84)] = 4489, + [SMALL_STATE(85)] = 4548, + [SMALL_STATE(86)] = 4599, + [SMALL_STATE(87)] = 4648, + [SMALL_STATE(88)] = 4695, + [SMALL_STATE(89)] = 4750, + [SMALL_STATE(90)] = 4793, + [SMALL_STATE(91)] = 4846, + [SMALL_STATE(92)] = 4887, + [SMALL_STATE(93)] = 4926, + [SMALL_STATE(94)] = 4963, + [SMALL_STATE(95)] = 5016, + [SMALL_STATE(96)] = 5069, + [SMALL_STATE(97)] = 5104, + [SMALL_STATE(98)] = 5157, + [SMALL_STATE(99)] = 5207, + [SMALL_STATE(100)] = 5257, + [SMALL_STATE(101)] = 5307, + [SMALL_STATE(102)] = 5338, + [SMALL_STATE(103)] = 5369, + [SMALL_STATE(104)] = 5400, + [SMALL_STATE(105)] = 5431, + [SMALL_STATE(106)] = 5462, + [SMALL_STATE(107)] = 5493, + [SMALL_STATE(108)] = 5524, + [SMALL_STATE(109)] = 5555, + [SMALL_STATE(110)] = 5611, + [SMALL_STATE(111)] = 5667, + [SMALL_STATE(112)] = 5723, + [SMALL_STATE(113)] = 5779, + [SMALL_STATE(114)] = 5835, + [SMALL_STATE(115)] = 5891, + [SMALL_STATE(116)] = 5947, + [SMALL_STATE(117)] = 6003, + [SMALL_STATE(118)] = 6059, + [SMALL_STATE(119)] = 6115, + [SMALL_STATE(120)] = 6171, + [SMALL_STATE(121)] = 6227, + [SMALL_STATE(122)] = 6283, + [SMALL_STATE(123)] = 6338, + [SMALL_STATE(124)] = 6393, + [SMALL_STATE(125)] = 6448, + [SMALL_STATE(126)] = 6503, + [SMALL_STATE(127)] = 6558, + [SMALL_STATE(128)] = 6613, + [SMALL_STATE(129)] = 6644, + [SMALL_STATE(130)] = 6699, + [SMALL_STATE(131)] = 6754, + [SMALL_STATE(132)] = 6809, + [SMALL_STATE(133)] = 6864, + [SMALL_STATE(134)] = 6919, + [SMALL_STATE(135)] = 6959, + [SMALL_STATE(136)] = 6999, + [SMALL_STATE(137)] = 7024, + [SMALL_STATE(138)] = 7049, + [SMALL_STATE(139)] = 7074, + [SMALL_STATE(140)] = 7099, + [SMALL_STATE(141)] = 7123, + [SMALL_STATE(142)] = 7147, + [SMALL_STATE(143)] = 7171, + [SMALL_STATE(144)] = 7195, + [SMALL_STATE(145)] = 7219, + [SMALL_STATE(146)] = 7243, + [SMALL_STATE(147)] = 7267, + [SMALL_STATE(148)] = 7291, + [SMALL_STATE(149)] = 7315, + [SMALL_STATE(150)] = 7339, + [SMALL_STATE(151)] = 7363, + [SMALL_STATE(152)] = 7387, + [SMALL_STATE(153)] = 7411, + [SMALL_STATE(154)] = 7435, + [SMALL_STATE(155)] = 7459, + [SMALL_STATE(156)] = 7483, + [SMALL_STATE(157)] = 7507, + [SMALL_STATE(158)] = 7531, + [SMALL_STATE(159)] = 7555, + [SMALL_STATE(160)] = 7579, + [SMALL_STATE(161)] = 7603, + [SMALL_STATE(162)] = 7627, + [SMALL_STATE(163)] = 7651, + [SMALL_STATE(164)] = 7675, + [SMALL_STATE(165)] = 7699, + [SMALL_STATE(166)] = 7723, + [SMALL_STATE(167)] = 7747, + [SMALL_STATE(168)] = 7771, + [SMALL_STATE(169)] = 7795, + [SMALL_STATE(170)] = 7819, + [SMALL_STATE(171)] = 7843, + [SMALL_STATE(172)] = 7867, + [SMALL_STATE(173)] = 7891, + [SMALL_STATE(174)] = 7915, + [SMALL_STATE(175)] = 7939, + [SMALL_STATE(176)] = 7963, + [SMALL_STATE(177)] = 7987, + [SMALL_STATE(178)] = 8011, + [SMALL_STATE(179)] = 8035, + [SMALL_STATE(180)] = 8059, + [SMALL_STATE(181)] = 8083, + [SMALL_STATE(182)] = 8107, + [SMALL_STATE(183)] = 8131, + [SMALL_STATE(184)] = 8155, + [SMALL_STATE(185)] = 8179, + [SMALL_STATE(186)] = 8203, + [SMALL_STATE(187)] = 8227, + [SMALL_STATE(188)] = 8251, + [SMALL_STATE(189)] = 8275, + [SMALL_STATE(190)] = 8299, + [SMALL_STATE(191)] = 8323, + [SMALL_STATE(192)] = 8347, + [SMALL_STATE(193)] = 8370, + [SMALL_STATE(194)] = 8393, + [SMALL_STATE(195)] = 8416, + [SMALL_STATE(196)] = 8439, + [SMALL_STATE(197)] = 8462, + [SMALL_STATE(198)] = 8485, + [SMALL_STATE(199)] = 8508, + [SMALL_STATE(200)] = 8531, + [SMALL_STATE(201)] = 8554, + [SMALL_STATE(202)] = 8577, + [SMALL_STATE(203)] = 8600, + [SMALL_STATE(204)] = 8623, + [SMALL_STATE(205)] = 8646, + [SMALL_STATE(206)] = 8669, + [SMALL_STATE(207)] = 8691, + [SMALL_STATE(208)] = 8713, + [SMALL_STATE(209)] = 8735, + [SMALL_STATE(210)] = 8757, + [SMALL_STATE(211)] = 8779, + [SMALL_STATE(212)] = 8801, + [SMALL_STATE(213)] = 8823, [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(215)] = 8875, + [SMALL_STATE(216)] = 8898, + [SMALL_STATE(217)] = 8923, + [SMALL_STATE(218)] = 8948, + [SMALL_STATE(219)] = 8971, + [SMALL_STATE(220)] = 8989, + [SMALL_STATE(221)] = 9008, + [SMALL_STATE(222)] = 9023, + [SMALL_STATE(223)] = 9037, + [SMALL_STATE(224)] = 9053, + [SMALL_STATE(225)] = 9067, + [SMALL_STATE(226)] = 9081, + [SMALL_STATE(227)] = 9095, + [SMALL_STATE(228)] = 9114, + [SMALL_STATE(229)] = 9127, [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(231)] = 9165, + [SMALL_STATE(232)] = 9184, + [SMALL_STATE(233)] = 9203, + [SMALL_STATE(234)] = 9222, + [SMALL_STATE(235)] = 9235, + [SMALL_STATE(236)] = 9254, + [SMALL_STATE(237)] = 9273, + [SMALL_STATE(238)] = 9292, + [SMALL_STATE(239)] = 9311, + [SMALL_STATE(240)] = 9330, + [SMALL_STATE(241)] = 9349, + [SMALL_STATE(242)] = 9368, + [SMALL_STATE(243)] = 9381, + [SMALL_STATE(244)] = 9400, + [SMALL_STATE(245)] = 9413, + [SMALL_STATE(246)] = 9432, + [SMALL_STATE(247)] = 9451, + [SMALL_STATE(248)] = 9464, + [SMALL_STATE(249)] = 9477, + [SMALL_STATE(250)] = 9496, + [SMALL_STATE(251)] = 9518, [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(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(253)] = 9552, + [SMALL_STATE(254)] = 9569, + [SMALL_STATE(255)] = 9584, + [SMALL_STATE(256)] = 9601, + [SMALL_STATE(257)] = 9616, + [SMALL_STATE(258)] = 9633, + [SMALL_STATE(259)] = 9644, + [SMALL_STATE(260)] = 9660, + [SMALL_STATE(261)] = 9670, + [SMALL_STATE(262)] = 9686, + [SMALL_STATE(263)] = 9696, + [SMALL_STATE(264)] = 9712, + [SMALL_STATE(265)] = 9726, + [SMALL_STATE(266)] = 9742, + [SMALL_STATE(267)] = 9758, + [SMALL_STATE(268)] = 9772, + [SMALL_STATE(269)] = 9782, + [SMALL_STATE(270)] = 9796, + [SMALL_STATE(271)] = 9810, + [SMALL_STATE(272)] = 9824, + [SMALL_STATE(273)] = 9834, + [SMALL_STATE(274)] = 9848, + [SMALL_STATE(275)] = 9862, + [SMALL_STATE(276)] = 9878, + [SMALL_STATE(277)] = 9892, + [SMALL_STATE(278)] = 9906, + [SMALL_STATE(279)] = 9922, + [SMALL_STATE(280)] = 9938, + [SMALL_STATE(281)] = 9952, + [SMALL_STATE(282)] = 9965, + [SMALL_STATE(283)] = 9978, + [SMALL_STATE(284)] = 9991, + [SMALL_STATE(285)] = 10004, + [SMALL_STATE(286)] = 10017, + [SMALL_STATE(287)] = 10030, + [SMALL_STATE(288)] = 10043, + [SMALL_STATE(289)] = 10056, + [SMALL_STATE(290)] = 10069, + [SMALL_STATE(291)] = 10082, + [SMALL_STATE(292)] = 10093, + [SMALL_STATE(293)] = 10106, + [SMALL_STATE(294)] = 10119, + [SMALL_STATE(295)] = 10132, + [SMALL_STATE(296)] = 10145, + [SMALL_STATE(297)] = 10158, + [SMALL_STATE(298)] = 10171, + [SMALL_STATE(299)] = 10184, + [SMALL_STATE(300)] = 10197, + [SMALL_STATE(301)] = 10210, + [SMALL_STATE(302)] = 10221, + [SMALL_STATE(303)] = 10234, + [SMALL_STATE(304)] = 10247, + [SMALL_STATE(305)] = 10258, + [SMALL_STATE(306)] = 10271, + [SMALL_STATE(307)] = 10284, + [SMALL_STATE(308)] = 10297, + [SMALL_STATE(309)] = 10310, + [SMALL_STATE(310)] = 10319, + [SMALL_STATE(311)] = 10332, + [SMALL_STATE(312)] = 10345, + [SMALL_STATE(313)] = 10356, + [SMALL_STATE(314)] = 10369, + [SMALL_STATE(315)] = 10382, + [SMALL_STATE(316)] = 10395, + [SMALL_STATE(317)] = 10408, + [SMALL_STATE(318)] = 10421, + [SMALL_STATE(319)] = 10434, + [SMALL_STATE(320)] = 10447, + [SMALL_STATE(321)] = 10460, + [SMALL_STATE(322)] = 10473, + [SMALL_STATE(323)] = 10486, + [SMALL_STATE(324)] = 10497, + [SMALL_STATE(325)] = 10510, + [SMALL_STATE(326)] = 10523, + [SMALL_STATE(327)] = 10536, + [SMALL_STATE(328)] = 10547, + [SMALL_STATE(329)] = 10560, + [SMALL_STATE(330)] = 10568, + [SMALL_STATE(331)] = 10578, + [SMALL_STATE(332)] = 10588, + [SMALL_STATE(333)] = 10598, + [SMALL_STATE(334)] = 10608, + [SMALL_STATE(335)] = 10618, + [SMALL_STATE(336)] = 10628, + [SMALL_STATE(337)] = 10636, + [SMALL_STATE(338)] = 10646, + [SMALL_STATE(339)] = 10656, + [SMALL_STATE(340)] = 10666, + [SMALL_STATE(341)] = 10676, + [SMALL_STATE(342)] = 10686, + [SMALL_STATE(343)] = 10696, + [SMALL_STATE(344)] = 10706, + [SMALL_STATE(345)] = 10716, + [SMALL_STATE(346)] = 10724, + [SMALL_STATE(347)] = 10734, + [SMALL_STATE(348)] = 10742, + [SMALL_STATE(349)] = 10752, + [SMALL_STATE(350)] = 10760, + [SMALL_STATE(351)] = 10770, + [SMALL_STATE(352)] = 10778, + [SMALL_STATE(353)] = 10788, + [SMALL_STATE(354)] = 10798, + [SMALL_STATE(355)] = 10808, + [SMALL_STATE(356)] = 10818, + [SMALL_STATE(357)] = 10828, + [SMALL_STATE(358)] = 10838, + [SMALL_STATE(359)] = 10848, + [SMALL_STATE(360)] = 10858, + [SMALL_STATE(361)] = 10868, + [SMALL_STATE(362)] = 10878, + [SMALL_STATE(363)] = 10888, + [SMALL_STATE(364)] = 10898, + [SMALL_STATE(365)] = 10908, + [SMALL_STATE(366)] = 10918, + [SMALL_STATE(367)] = 10928, + [SMALL_STATE(368)] = 10938, + [SMALL_STATE(369)] = 10948, + [SMALL_STATE(370)] = 10958, + [SMALL_STATE(371)] = 10968, + [SMALL_STATE(372)] = 10978, + [SMALL_STATE(373)] = 10988, + [SMALL_STATE(374)] = 10998, + [SMALL_STATE(375)] = 11008, + [SMALL_STATE(376)] = 11018, + [SMALL_STATE(377)] = 11028, + [SMALL_STATE(378)] = 11038, + [SMALL_STATE(379)] = 11048, + [SMALL_STATE(380)] = 11056, + [SMALL_STATE(381)] = 11066, + [SMALL_STATE(382)] = 11076, + [SMALL_STATE(383)] = 11084, + [SMALL_STATE(384)] = 11094, + [SMALL_STATE(385)] = 11102, + [SMALL_STATE(386)] = 11112, + [SMALL_STATE(387)] = 11122, + [SMALL_STATE(388)] = 11132, + [SMALL_STATE(389)] = 11142, + [SMALL_STATE(390)] = 11150, + [SMALL_STATE(391)] = 11160, + [SMALL_STATE(392)] = 11170, + [SMALL_STATE(393)] = 11180, + [SMALL_STATE(394)] = 11188, + [SMALL_STATE(395)] = 11198, + [SMALL_STATE(396)] = 11208, + [SMALL_STATE(397)] = 11218, + [SMALL_STATE(398)] = 11228, + [SMALL_STATE(399)] = 11238, + [SMALL_STATE(400)] = 11248, + [SMALL_STATE(401)] = 11258, + [SMALL_STATE(402)] = 11266, + [SMALL_STATE(403)] = 11276, + [SMALL_STATE(404)] = 11286, + [SMALL_STATE(405)] = 11296, + [SMALL_STATE(406)] = 11306, + [SMALL_STATE(407)] = 11313, + [SMALL_STATE(408)] = 11320, + [SMALL_STATE(409)] = 11327, + [SMALL_STATE(410)] = 11334, + [SMALL_STATE(411)] = 11341, + [SMALL_STATE(412)] = 11348, + [SMALL_STATE(413)] = 11355, + [SMALL_STATE(414)] = 11362, + [SMALL_STATE(415)] = 11369, + [SMALL_STATE(416)] = 11376, + [SMALL_STATE(417)] = 11383, + [SMALL_STATE(418)] = 11390, + [SMALL_STATE(419)] = 11397, + [SMALL_STATE(420)] = 11404, + [SMALL_STATE(421)] = 11411, + [SMALL_STATE(422)] = 11418, + [SMALL_STATE(423)] = 11425, + [SMALL_STATE(424)] = 11432, + [SMALL_STATE(425)] = 11439, + [SMALL_STATE(426)] = 11446, + [SMALL_STATE(427)] = 11453, + [SMALL_STATE(428)] = 11460, + [SMALL_STATE(429)] = 11467, + [SMALL_STATE(430)] = 11474, + [SMALL_STATE(431)] = 11481, + [SMALL_STATE(432)] = 11488, + [SMALL_STATE(433)] = 11495, + [SMALL_STATE(434)] = 11502, + [SMALL_STATE(435)] = 11509, + [SMALL_STATE(436)] = 11516, + [SMALL_STATE(437)] = 11523, + [SMALL_STATE(438)] = 11530, + [SMALL_STATE(439)] = 11537, + [SMALL_STATE(440)] = 11544, + [SMALL_STATE(441)] = 11551, + [SMALL_STATE(442)] = 11558, + [SMALL_STATE(443)] = 11565, + [SMALL_STATE(444)] = 11572, + [SMALL_STATE(445)] = 11579, + [SMALL_STATE(446)] = 11586, + [SMALL_STATE(447)] = 11593, + [SMALL_STATE(448)] = 11600, + [SMALL_STATE(449)] = 11607, + [SMALL_STATE(450)] = 11614, + [SMALL_STATE(451)] = 11621, + [SMALL_STATE(452)] = 11628, + [SMALL_STATE(453)] = 11635, + [SMALL_STATE(454)] = 11642, + [SMALL_STATE(455)] = 11649, + [SMALL_STATE(456)] = 11656, + [SMALL_STATE(457)] = 11663, + [SMALL_STATE(458)] = 11670, + [SMALL_STATE(459)] = 11677, + [SMALL_STATE(460)] = 11684, + [SMALL_STATE(461)] = 11691, + [SMALL_STATE(462)] = 11698, + [SMALL_STATE(463)] = 11705, + [SMALL_STATE(464)] = 11712, + [SMALL_STATE(465)] = 11719, + [SMALL_STATE(466)] = 11726, + [SMALL_STATE(467)] = 11733, + [SMALL_STATE(468)] = 11740, + [SMALL_STATE(469)] = 11747, + [SMALL_STATE(470)] = 11754, + [SMALL_STATE(471)] = 11761, + [SMALL_STATE(472)] = 11768, + [SMALL_STATE(473)] = 11775, + [SMALL_STATE(474)] = 11782, + [SMALL_STATE(475)] = 11789, + [SMALL_STATE(476)] = 11796, + [SMALL_STATE(477)] = 11803, + [SMALL_STATE(478)] = 11810, + [SMALL_STATE(479)] = 11817, + [SMALL_STATE(480)] = 11824, + [SMALL_STATE(481)] = 11831, + [SMALL_STATE(482)] = 11838, + [SMALL_STATE(483)] = 11845, + [SMALL_STATE(484)] = 11852, + [SMALL_STATE(485)] = 11859, + [SMALL_STATE(486)] = 11866, + [SMALL_STATE(487)] = 11873, + [SMALL_STATE(488)] = 11880, + [SMALL_STATE(489)] = 11887, + [SMALL_STATE(490)] = 11894, + [SMALL_STATE(491)] = 11901, + [SMALL_STATE(492)] = 11908, + [SMALL_STATE(493)] = 11915, + [SMALL_STATE(494)] = 11922, + [SMALL_STATE(495)] = 11929, + [SMALL_STATE(496)] = 11936, + [SMALL_STATE(497)] = 11943, + [SMALL_STATE(498)] = 11950, + [SMALL_STATE(499)] = 11957, + [SMALL_STATE(500)] = 11964, + [SMALL_STATE(501)] = 11971, }; 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), + [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(33), + [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(34), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), [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), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), [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), + [80] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(33), + [83] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6), [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), + [88] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(274), + [91] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(377), + [94] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(24), + [97] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(440), + [100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(442), + [103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(447), + [106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(380), + [109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(381), + [112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(450), + [115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(34), + [118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(494), [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), + [124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(77), + [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(64), + [130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(64), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [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(22), + [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, 3, 0, 0), + [155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 3, 0, 0), + [157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 2, 0, 0), + [159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 2, 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(sym_source_file, 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), + [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(468), + [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(418), + [175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(220), + [178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(406), + [181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(213), + [184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(491), + [187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(218), + [190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(219), + [193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(478), + [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(317), + [199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(426), + [202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(485), + [205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(492), + [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 = 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), + [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1, 0, 0), + [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_trait_body_repeat1, 2, 0, 0), SHIFT_REPEAT(334), + [279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_trait_body_repeat1, 2, 0, 0), SHIFT_REPEAT(449), + [282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_trait_body_repeat1, 2, 0, 0), SHIFT_REPEAT(220), + [285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_trait_body_repeat1, 2, 0, 0), SHIFT_REPEAT(446), [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), + [290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_trait_body_repeat1, 2, 0, 0), SHIFT_REPEAT(218), + [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_trait_body_repeat1, 2, 0, 0), SHIFT_REPEAT(219), + [296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_trait_body_repeat1, 2, 0, 0), SHIFT_REPEAT(407), + [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_trait_body_repeat1, 2, 0, 0), SHIFT_REPEAT(421), + [302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_trait_body_repeat1, 2, 0, 0), SHIFT_REPEAT(423), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), + [309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), + [311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_expression, 2, 0, 12), + [321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instance_expression, 2, 0, 12), + [323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initOf, 3, 0, 23), + [329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initOf, 3, 0, 23), + [331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), + [333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), + [335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_argument_list, 3, 0, 0), + [337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instance_argument_list, 3, 0, 0), + [339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_argument_list, 2, 0, 0), + [341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instance_argument_list, 2, 0, 0), + [343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_call_expression, 4, 0, 39), + [345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_call_expression, 4, 0, 39), + [347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), + [349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), + [351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_argument_list, 4, 0, 0), + [353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instance_argument_list, 4, 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), + [359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_argument_list, 5, 0, 0), + [361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instance_argument_list, 5, 0, 0), + [363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1, 0, 0), + [365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1, 0, 0), + [367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_assert_expression, 2, 0, 14), + [369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_assert_expression, 2, 0, 14), + [371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_call_expression, 2, 0, 12), + [373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_call_expression, 2, 0, 12), + [375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 26), + [383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 26), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 38), + [407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 38), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 50), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 66), + [441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 66), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 11), + [451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 11), + [453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_asm_function_body_repeat1, 2, 0, 0), SHIFT_REPEAT(94), + [456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_function_body_repeat1, 2, 0, 0), + [458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_asm_function_body_repeat1, 2, 0, 0), + [460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_asm_function_body_repeat1, 2, 0, 0), SHIFT_REPEAT(471), + [463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_asm_function_body_repeat1, 2, 0, 0), SHIFT_REPEAT(134), + [466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_asm_function_body_repeat1, 2, 0, 0), SHIFT_REPEAT(206), + [469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_asm_function_body_repeat1, 2, 0, 0), SHIFT_REPEAT(212), + [472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_asm_function_body_repeat1, 2, 0, 0), SHIFT_REPEAT(134), + [475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_asm_function_body_repeat1, 2, 0, 0), SHIFT_REPEAT(190), + [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(177), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [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_else_clause, 2, 0, 0), + [493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, 0, 79), + [497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, 0, 79), + [499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 9, 0, 80), + [501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 9, 0, 80), + [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_while_statement, 5, 0, 67), + [509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 67), + [511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 74), + [513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 74), + [515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 47), + [517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 47), + [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(94), + [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_trait_body, 3, 0, 0), + [690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_function, 7, 0, 46), + [692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function, 5, 0, 29), + [694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function, 5, 0, 30), + [696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_contract, 5, 0, 31), + [698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_body, 4, 0, 0), + [700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_expression, 1, 0, 25), + [702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_expression, 1, 0, 25), + [704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_expression, 2, 0, 45), + [706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_expression, 2, 0, 45), + [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(39), + [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [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(35), + [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(48), + [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(186), + [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(65), + [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(63), + [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(100), + [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(71), + [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(53), + [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(56), + [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [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(76), + [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [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(62), + [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(70), + [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(52), + [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(189), + [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [1136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [1138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [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(32), + [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(55), + [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(36), + [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [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(38), + [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(49), + [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(50), + [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(191), + [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), }; #ifdef __cplusplus diff --git a/test/corpus/asm_function.txt b/test/corpus/asm_function.txt index 9493254..dc3ecd5 100644 --- a/test/corpus/asm_function.txt +++ b/test/corpus/asm_function.txt @@ -2,43 +2,62 @@ 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 " + + // 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 } --- (source_file - (comment) (asm_function arrangement: (asm_arrangement returns: (asm_arrangement_rets @@ -46,14 +65,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_number)) + 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_number)) + name: (tvm_instruction)))) + name: (tvm_instruction)) + (asm_expression + arguments: (asm_argument_list + (asm_sequence + (asm_expression + arguments: (asm_argument_list + (asm_number)) + name: (tvm_instruction)))) + name: (tvm_instruction)) + ) ) (asm_function arrangement: (asm_arrangement @@ -65,15 +104,105 @@ 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) + (comment) + (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_number)) + name: (tvm_instruction)) + (asm_expression + arguments: (asm_argument_list + (asm_number)) + name: (tvm_instruction)) + (asm_expression + arguments: (asm_argument_list + (asm_number)) + name: (tvm_instruction)) + ) ) ) 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?; }