From f51b452e7511a7a74f05c0dd255d0f729cb0da57 Mon Sep 17 00:00:00 2001 From: Igor Prusov Date: Thu, 31 Oct 2024 23:22:57 +0300 Subject: [PATCH] re-generate parser --- src/grammar.json | 75 +- src/node-types.json | 75 +- src/parser.c | 24477 +++++++++++++++++++++--------------------- 3 files changed, 12373 insertions(+), 12254 deletions(-) diff --git a/src/grammar.json b/src/grammar.json index 67bda40..6466ce6 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -294,45 +294,70 @@ } ] }, - "_node_reference": { + "path_node": { "type": "SEQ", "members": [ { "type": "STRING", - "value": "&{" + "value": "/" }, { "type": "FIELD", - "name": "path", + "name": "name", "content": { - "type": "SYMBOL", - "name": "node_identifier" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_node_or_property" + }, + "named": true, + "value": "identifier" } }, { - "type": "FIELD", - "name": "address", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "@" - }, - { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "@" + }, + { + "type": "FIELD", + "name": "address", + "content": { "type": "SYMBOL", "name": "unit_address" } - ] - }, - { - "type": "BLANK" - } - ] - } + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "path": { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "path_node" + } + }, + "_node_reference": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "&{" + }, + { + "type": "SYMBOL", + "name": "path" }, { "type": "STRING", diff --git a/src/node-types.json b/src/node-types.json index 279f6db..1a87858 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -831,6 +831,47 @@ ] } }, + { + "type": "path", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "path_node", + "named": true + } + ] + } + }, + { + "type": "path_node", + "named": true, + "fields": { + "address": { + "multiple": false, + "required": false, + "types": [ + { + "type": "unit_address", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + } + }, { "type": "plugin", "named": true, @@ -1541,20 +1582,6 @@ "type": "reference", "named": true, "fields": { - "address": { - "multiple": true, - "required": false, - "types": [ - { - "type": "@", - "named": false - }, - { - "type": "unit_address", - "named": true - } - ] - }, "label": { "multiple": false, "required": false, @@ -1564,17 +1591,17 @@ "named": true } ] - }, - "path": { - "multiple": false, - "required": false, - "types": [ - { - "type": "identifier", - "named": true - } - ] } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "path", + "named": true + } + ] } }, { diff --git a/src/parser.c b/src/parser.c index fdd8d64..8270a36 100644 --- a/src/parser.c +++ b/src/parser.c @@ -13,15 +13,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 1250 +#define STATE_COUNT 1253 #define LARGE_STATE_COUNT 2 -#define SYMBOL_COUNT 134 +#define SYMBOL_COUNT 137 #define ALIAS_COUNT 0 #define TOKEN_COUNT 74 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 20 #define MAX_ALIAS_SEQUENCE_LENGTH 8 -#define PRODUCTION_ID_COUNT 40 +#define PRODUCTION_ID_COUNT 39 enum ts_symbol_identifiers { anon_sym_COLON = 1, @@ -37,37 +37,37 @@ enum ts_symbol_identifiers { sym__property_starts_with_number = 11, sym_unit_address = 12, anon_sym_AMP = 13, - anon_sym_AMP_LBRACE = 14, + anon_sym_SLASH = 14, anon_sym_AT = 15, - anon_sym_RBRACE = 16, - anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH = 17, - anon_sym_LBRACE = 18, - anon_sym_SLASHbits_SLASH = 19, - anon_sym_EQ = 20, - anon_sym_COMMA = 21, - anon_sym_SLASHdelete_DASHnode_SLASH = 22, - anon_sym_SLASHdelete_DASHproperty_SLASH = 23, - anon_sym_SLASHincbin_SLASH = 24, - anon_sym_LPAREN = 25, - anon_sym_RPAREN = 26, - anon_sym_LT = 27, - anon_sym_GT = 28, - anon_sym_DQUOTE = 29, - aux_sym_string_literal_token1 = 30, - sym_escape_sequence = 31, - sym_system_lib_string = 32, - anon_sym_LBRACK = 33, - anon_sym_RBRACK = 34, - sym__byte_string_item = 35, - sym_integer_literal = 36, - sym_identifier = 37, - anon_sym_QMARK = 38, - anon_sym_BANG = 39, - anon_sym_TILDE = 40, - anon_sym_DASH = 41, - anon_sym_PLUS = 42, - anon_sym_STAR = 43, - anon_sym_SLASH = 44, + anon_sym_AMP_LBRACE = 16, + anon_sym_RBRACE = 17, + anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH = 18, + anon_sym_LBRACE = 19, + anon_sym_SLASHbits_SLASH = 20, + anon_sym_EQ = 21, + anon_sym_COMMA = 22, + anon_sym_SLASHdelete_DASHnode_SLASH = 23, + anon_sym_SLASHdelete_DASHproperty_SLASH = 24, + anon_sym_SLASHincbin_SLASH = 25, + anon_sym_LPAREN = 26, + anon_sym_RPAREN = 27, + anon_sym_LT = 28, + anon_sym_GT = 29, + anon_sym_DQUOTE = 30, + aux_sym_string_literal_token1 = 31, + sym_escape_sequence = 32, + sym_system_lib_string = 33, + anon_sym_LBRACK = 34, + anon_sym_RBRACK = 35, + sym__byte_string_item = 36, + sym_integer_literal = 37, + sym_identifier = 38, + anon_sym_QMARK = 39, + anon_sym_BANG = 40, + anon_sym_TILDE = 41, + anon_sym_DASH = 42, + anon_sym_PLUS = 43, + anon_sym_STAR = 44, anon_sym_PERCENT = 45, anon_sym_PIPE_PIPE = 46, anon_sym_AMP_AMP = 47, @@ -105,58 +105,61 @@ enum ts_symbol_identifiers { sym_memory_reservation = 79, sym_reference = 80, sym__label_reference = 81, - sym__node_reference = 82, - sym_omit_if_no_ref = 83, - sym_node = 84, - sym__bits = 85, - sym_property = 86, - sym__node_members = 87, - sym_delete_node = 88, - sym_delete_property = 89, - sym_incbin = 90, - sym__property_value = 91, - sym_integer_cells = 92, - sym__integer_cell_items = 93, - sym_string_literal = 94, - sym_byte_string_literal = 95, - sym__expression = 96, - sym_call_expression = 97, - sym_argument_list = 98, - sym_conditional_expression = 99, - sym_unary_expression = 100, - sym_binary_expression = 101, - sym_dtsi_include = 102, - sym_preproc_include = 103, - sym_preproc_def = 104, - sym_preproc_function_def = 105, - sym_preproc_params = 106, - sym_preproc_undef = 107, - sym_preproc_if = 108, - sym_preproc_ifdef = 109, - sym_preproc_else = 110, - sym_preproc_elif = 111, - sym_preproc_elifdef = 112, - sym_preproc_if_in_node = 113, - sym_preproc_ifdef_in_node = 114, - sym_preproc_else_in_node = 115, - sym_preproc_elif_in_node = 116, - sym__preproc_expression = 117, - sym_preproc_parenthesized_expression = 118, - sym_preproc_defined = 119, - sym_preproc_unary_expression = 120, - sym_preproc_call_expression = 121, - sym_preproc_argument_list = 122, - sym_preproc_binary_expression = 123, - aux_sym_document_repeat1 = 124, - aux_sym_memory_reservation_repeat1 = 125, - aux_sym_node_repeat1 = 126, - aux_sym_property_repeat1 = 127, - aux_sym_integer_cells_repeat1 = 128, - aux_sym_string_literal_repeat1 = 129, - aux_sym_byte_string_literal_repeat1 = 130, - aux_sym_argument_list_repeat1 = 131, - aux_sym_preproc_params_repeat1 = 132, - aux_sym_preproc_argument_list_repeat1 = 133, + sym_path_node = 82, + sym_path = 83, + sym__node_reference = 84, + sym_omit_if_no_ref = 85, + sym_node = 86, + sym__bits = 87, + sym_property = 88, + sym__node_members = 89, + sym_delete_node = 90, + sym_delete_property = 91, + sym_incbin = 92, + sym__property_value = 93, + sym_integer_cells = 94, + sym__integer_cell_items = 95, + sym_string_literal = 96, + sym_byte_string_literal = 97, + sym__expression = 98, + sym_call_expression = 99, + sym_argument_list = 100, + sym_conditional_expression = 101, + sym_unary_expression = 102, + sym_binary_expression = 103, + sym_dtsi_include = 104, + sym_preproc_include = 105, + sym_preproc_def = 106, + sym_preproc_function_def = 107, + sym_preproc_params = 108, + sym_preproc_undef = 109, + sym_preproc_if = 110, + sym_preproc_ifdef = 111, + sym_preproc_else = 112, + sym_preproc_elif = 113, + sym_preproc_elifdef = 114, + sym_preproc_if_in_node = 115, + sym_preproc_ifdef_in_node = 116, + sym_preproc_else_in_node = 117, + sym_preproc_elif_in_node = 118, + sym__preproc_expression = 119, + sym_preproc_parenthesized_expression = 120, + sym_preproc_defined = 121, + sym_preproc_unary_expression = 122, + sym_preproc_call_expression = 123, + sym_preproc_argument_list = 124, + sym_preproc_binary_expression = 125, + aux_sym_document_repeat1 = 126, + aux_sym_memory_reservation_repeat1 = 127, + aux_sym_path_repeat1 = 128, + aux_sym_node_repeat1 = 129, + aux_sym_property_repeat1 = 130, + aux_sym_integer_cells_repeat1 = 131, + aux_sym_string_literal_repeat1 = 132, + aux_sym_byte_string_literal_repeat1 = 133, + aux_sym_argument_list_repeat1 = 134, + aux_sym_preproc_params_repeat1 = 135, + aux_sym_preproc_argument_list_repeat1 = 136, }; static const char * const ts_symbol_names[] = { @@ -174,8 +177,9 @@ static const char * const ts_symbol_names[] = { [sym__property_starts_with_number] = "identifier", [sym_unit_address] = "unit_address", [anon_sym_AMP] = "&", - [anon_sym_AMP_LBRACE] = "&{", + [anon_sym_SLASH] = "/", [anon_sym_AT] = "@", + [anon_sym_AMP_LBRACE] = "&{", [anon_sym_RBRACE] = "}", [anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH] = "/omit-if-no-ref/", [anon_sym_LBRACE] = "{", @@ -204,7 +208,6 @@ static const char * const ts_symbol_names[] = { [anon_sym_DASH] = "-", [anon_sym_PLUS] = "+", [anon_sym_STAR] = "*", - [anon_sym_SLASH] = "/", [anon_sym_PERCENT] = "%", [anon_sym_PIPE_PIPE] = "||", [anon_sym_AMP_AMP] = "&&", @@ -242,6 +245,8 @@ static const char * const ts_symbol_names[] = { [sym_memory_reservation] = "memory_reservation", [sym_reference] = "reference", [sym__label_reference] = "_label_reference", + [sym_path_node] = "path_node", + [sym_path] = "path", [sym__node_reference] = "_node_reference", [sym_omit_if_no_ref] = "omit_if_no_ref", [sym_node] = "node", @@ -286,6 +291,7 @@ static const char * const ts_symbol_names[] = { [sym_preproc_binary_expression] = "binary_expression", [aux_sym_document_repeat1] = "document_repeat1", [aux_sym_memory_reservation_repeat1] = "memory_reservation_repeat1", + [aux_sym_path_repeat1] = "path_repeat1", [aux_sym_node_repeat1] = "node_repeat1", [aux_sym_property_repeat1] = "property_repeat1", [aux_sym_integer_cells_repeat1] = "integer_cells_repeat1", @@ -311,8 +317,9 @@ static const TSSymbol ts_symbol_map[] = { [sym__property_starts_with_number] = sym_identifier, [sym_unit_address] = sym_unit_address, [anon_sym_AMP] = anon_sym_AMP, - [anon_sym_AMP_LBRACE] = anon_sym_AMP_LBRACE, + [anon_sym_SLASH] = anon_sym_SLASH, [anon_sym_AT] = anon_sym_AT, + [anon_sym_AMP_LBRACE] = anon_sym_AMP_LBRACE, [anon_sym_RBRACE] = anon_sym_RBRACE, [anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH] = anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, [anon_sym_LBRACE] = anon_sym_LBRACE, @@ -341,7 +348,6 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_DASH] = anon_sym_DASH, [anon_sym_PLUS] = anon_sym_PLUS, [anon_sym_STAR] = anon_sym_STAR, - [anon_sym_SLASH] = anon_sym_SLASH, [anon_sym_PERCENT] = anon_sym_PERCENT, [anon_sym_PIPE_PIPE] = anon_sym_PIPE_PIPE, [anon_sym_AMP_AMP] = anon_sym_AMP_AMP, @@ -379,6 +385,8 @@ static const TSSymbol ts_symbol_map[] = { [sym_memory_reservation] = sym_memory_reservation, [sym_reference] = sym_reference, [sym__label_reference] = sym__label_reference, + [sym_path_node] = sym_path_node, + [sym_path] = sym_path, [sym__node_reference] = sym__node_reference, [sym_omit_if_no_ref] = sym_omit_if_no_ref, [sym_node] = sym_node, @@ -423,6 +431,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_preproc_binary_expression] = sym_binary_expression, [aux_sym_document_repeat1] = aux_sym_document_repeat1, [aux_sym_memory_reservation_repeat1] = aux_sym_memory_reservation_repeat1, + [aux_sym_path_repeat1] = aux_sym_path_repeat1, [aux_sym_node_repeat1] = aux_sym_node_repeat1, [aux_sym_property_repeat1] = aux_sym_property_repeat1, [aux_sym_integer_cells_repeat1] = aux_sym_integer_cells_repeat1, @@ -490,7 +499,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_AMP_LBRACE] = { + [anon_sym_SLASH] = { .visible = true, .named = false, }, @@ -498,6 +507,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_AMP_LBRACE] = { + .visible = true, + .named = false, + }, [anon_sym_RBRACE] = { .visible = true, .named = false, @@ -610,10 +623,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_SLASH] = { - .visible = true, - .named = false, - }, [anon_sym_PERCENT] = { .visible = true, .named = false, @@ -762,6 +771,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym_path_node] = { + .visible = true, + .named = true, + }, + [sym_path] = { + .visible = true, + .named = true, + }, [sym__node_reference] = { .visible = false, .named = true, @@ -938,6 +955,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_path_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_node_repeat1] = { .visible = false, .named = false, @@ -1021,176 +1042,171 @@ static const char * const ts_field_names[] = { static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [1] = {.index = 0, .length = 1}, - [2] = {.index = 1, .length = 2}, - [3] = {.index = 3, .length = 1}, - [4] = {.index = 4, .length = 1}, - [5] = {.index = 5, .length = 1}, - [6] = {.index = 6, .length = 2}, - [7] = {.index = 8, .length = 1}, + [2] = {.index = 1, .length = 1}, + [3] = {.index = 2, .length = 1}, + [4] = {.index = 3, .length = 1}, + [5] = {.index = 4, .length = 2}, + [6] = {.index = 6, .length = 1}, + [7] = {.index = 7, .length = 2}, [8] = {.index = 9, .length = 2}, [9] = {.index = 11, .length = 2}, - [10] = {.index = 13, .length = 2}, - [11] = {.index = 15, .length = 1}, + [10] = {.index = 13, .length = 1}, + [11] = {.index = 14, .length = 2}, [12] = {.index = 16, .length = 2}, - [13] = {.index = 18, .length = 2}, - [14] = {.index = 20, .length = 3}, - [15] = {.index = 23, .length = 1}, + [13] = {.index = 18, .length = 3}, + [14] = {.index = 21, .length = 1}, + [15] = {.index = 22, .length = 2}, [16] = {.index = 24, .length = 2}, [17] = {.index = 26, .length = 2}, [18] = {.index = 28, .length = 3}, [19] = {.index = 31, .length = 3}, - [20] = {.index = 34, .length = 3}, - [21] = {.index = 37, .length = 2}, - [22] = {.index = 39, .length = 2}, + [20] = {.index = 34, .length = 2}, + [21] = {.index = 36, .length = 2}, + [22] = {.index = 38, .length = 3}, [23] = {.index = 41, .length = 3}, - [24] = {.index = 44, .length = 3}, - [25] = {.index = 47, .length = 2}, - [26] = {.index = 49, .length = 2}, - [27] = {.index = 51, .length = 2}, + [24] = {.index = 44, .length = 2}, + [25] = {.index = 46, .length = 2}, + [26] = {.index = 48, .length = 2}, + [27] = {.index = 50, .length = 3}, [28] = {.index = 53, .length = 3}, [29] = {.index = 56, .length = 3}, [30] = {.index = 59, .length = 3}, - [31] = {.index = 62, .length = 3}, - [32] = {.index = 65, .length = 4}, - [33] = {.index = 69, .length = 1}, - [34] = {.index = 70, .length = 4}, - [35] = {.index = 74, .length = 4}, - [36] = {.index = 78, .length = 4}, - [37] = {.index = 82, .length = 5}, + [31] = {.index = 62, .length = 4}, + [32] = {.index = 66, .length = 1}, + [33] = {.index = 67, .length = 4}, + [34] = {.index = 71, .length = 4}, + [35] = {.index = 75, .length = 4}, + [36] = {.index = 79, .length = 5}, + [37] = {.index = 84, .length = 3}, [38] = {.index = 87, .length = 3}, - [39] = {.index = 90, .length = 3}, }; static const TSFieldMapEntry ts_field_map_entries[] = { [0] = {field_label, 0, .inherited = true}, [1] = - {field_address, 0, .inherited = true}, - {field_path, 0, .inherited = true}, - [3] = {field_label, 0}, - [4] = + [2] = {field_label, 1}, - [5] = + [3] = {field_path, 1}, - [6] = + [4] = {field_label, 0, .inherited = true}, {field_label, 1, .inherited = true}, - [8] = + [6] = {field_name, 1}, - [9] = + [7] = {field_arguments, 1}, {field_function, 0}, - [11] = + [9] = {field_argument, 1}, {field_operator, 0}, - [13] = + [11] = {field_address, 1}, {field_length, 2}, - [15] = + [13] = {field_name, 0}, - [16] = + [14] = {field_name, 1}, {field_value, 2}, - [18] = + [16] = {field_name, 1}, {field_parameters, 2}, - [20] = + [18] = {field_left, 0}, {field_operator, 1}, {field_right, 2}, - [23] = + [21] = {field_condition, 1}, - [24] = + [22] = {field_alternative, 2}, {field_name, 1}, - [26] = + [24] = {field_label, 0, .inherited = true}, {field_name, 1}, - [28] = - {field_address, 2}, + [26] = {field_address, 3}, - {field_path, 1}, - [31] = + {field_name, 1}, + [28] = {field_address, 2}, {field_address, 3}, {field_name, 1}, - [34] = + [31] = {field_name, 1}, {field_parameters, 2}, {field_value, 3}, - [37] = + [34] = {field_alternative, 3}, {field_condition, 1}, - [39] = + [36] = {field_alternative, 3}, {field_name, 1}, - [41] = + [38] = {field_address, 2}, {field_label, 0, .inherited = true}, {field_length, 3}, - [44] = + [41] = {field_address, 1}, {field_address, 2}, {field_name, 0}, - [47] = + [44] = {field_bits, 2}, {field_name, 0}, - [49] = + [46] = {field_name, 0}, {field_value, 2}, - [51] = + [48] = {field_alternative, 4}, {field_condition, 1}, - [53] = + [50] = {field_bits, 2}, {field_name, 0}, {field_value, 3}, - [56] = + [53] = {field_name, 0}, {field_value, 2}, {field_value, 3}, - [59] = + [56] = {field_bits, 3}, {field_label, 0, .inherited = true}, {field_name, 1}, - [62] = + [59] = {field_label, 0, .inherited = true}, {field_name, 1}, {field_value, 3}, - [65] = + [62] = {field_address, 2}, {field_address, 3}, {field_label, 0, .inherited = true}, {field_name, 1}, - [69] = + [66] = {field_filename, 2}, - [70] = + [67] = {field_bits, 2}, {field_name, 0}, {field_value, 3}, {field_value, 4}, - [74] = + [71] = {field_bits, 3}, {field_label, 0, .inherited = true}, {field_name, 1}, {field_value, 4}, - [78] = + [75] = {field_label, 0, .inherited = true}, {field_name, 1}, {field_value, 3}, {field_value, 4}, - [82] = + [79] = {field_bits, 3}, {field_label, 0, .inherited = true}, {field_name, 1}, {field_value, 4}, {field_value, 5}, - [87] = + [84] = {field_alternative, 4}, {field_condition, 0}, {field_consequence, 2}, - [90] = + [87] = {field_filename, 2}, {field_offset, 4}, {field_size, 6}, @@ -1245,7 +1261,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [37] = 37, [38] = 29, [39] = 39, - [40] = 39, + [40] = 40, [41] = 41, [42] = 42, [43] = 43, @@ -1259,103 +1275,103 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [51] = 51, [52] = 52, [53] = 53, - [54] = 29, - [55] = 55, + [54] = 54, + [55] = 29, [56] = 56, [57] = 57, - [58] = 29, + [58] = 58, [59] = 59, - [60] = 57, - [61] = 59, - [62] = 51, - [63] = 52, - [64] = 53, - [65] = 55, - [66] = 56, - [67] = 67, - [68] = 68, - [69] = 39, - [70] = 41, - [71] = 42, - [72] = 44, - [73] = 45, - [74] = 46, - [75] = 48, - [76] = 49, - [77] = 50, - [78] = 57, - [79] = 59, - [80] = 51, - [81] = 52, - [82] = 53, - [83] = 55, - [84] = 56, - [85] = 67, - [86] = 68, - [87] = 39, - [88] = 41, - [89] = 42, - [90] = 44, - [91] = 45, - [92] = 68, - [93] = 48, - [94] = 49, - [95] = 50, - [96] = 57, - [97] = 59, - [98] = 51, - [99] = 52, - [100] = 53, - [101] = 55, - [102] = 56, - [103] = 67, - [104] = 68, - [105] = 39, - [106] = 41, - [107] = 42, - [108] = 44, - [109] = 45, - [110] = 46, - [111] = 48, - [112] = 49, - [113] = 50, - [114] = 57, - [115] = 59, - [116] = 51, - [117] = 52, - [118] = 53, - [119] = 55, - [120] = 56, - [121] = 67, - [122] = 68, - [123] = 67, - [124] = 41, - [125] = 42, - [126] = 44, - [127] = 45, - [128] = 46, - [129] = 48, - [130] = 49, - [131] = 50, - [132] = 57, - [133] = 59, - [134] = 51, - [135] = 52, - [136] = 53, - [137] = 55, - [138] = 56, - [139] = 67, - [140] = 68, - [141] = 39, - [142] = 41, - [143] = 42, - [144] = 44, - [145] = 45, - [146] = 46, - [147] = 48, - [148] = 49, - [149] = 50, - [150] = 46, + [60] = 29, + [61] = 54, + [62] = 40, + [63] = 56, + [64] = 57, + [65] = 39, + [66] = 58, + [67] = 59, + [68] = 41, + [69] = 42, + [70] = 43, + [71] = 44, + [72] = 45, + [73] = 47, + [74] = 48, + [75] = 49, + [76] = 51, + [77] = 52, + [78] = 53, + [79] = 54, + [80] = 40, + [81] = 56, + [82] = 57, + [83] = 39, + [84] = 58, + [85] = 59, + [86] = 41, + [87] = 42, + [88] = 43, + [89] = 44, + [90] = 45, + [91] = 47, + [92] = 53, + [93] = 49, + [94] = 51, + [95] = 52, + [96] = 53, + [97] = 54, + [98] = 40, + [99] = 56, + [100] = 57, + [101] = 39, + [102] = 58, + [103] = 59, + [104] = 41, + [105] = 42, + [106] = 43, + [107] = 44, + [108] = 45, + [109] = 47, + [110] = 48, + [111] = 49, + [112] = 51, + [113] = 52, + [114] = 53, + [115] = 54, + [116] = 40, + [117] = 56, + [118] = 57, + [119] = 39, + [120] = 58, + [121] = 59, + [122] = 41, + [123] = 42, + [124] = 43, + [125] = 44, + [126] = 45, + [127] = 47, + [128] = 48, + [129] = 49, + [130] = 51, + [131] = 52, + [132] = 53, + [133] = 54, + [134] = 40, + [135] = 56, + [136] = 57, + [137] = 39, + [138] = 58, + [139] = 59, + [140] = 41, + [141] = 42, + [142] = 43, + [143] = 44, + [144] = 45, + [145] = 47, + [146] = 48, + [147] = 49, + [148] = 51, + [149] = 52, + [150] = 48, [151] = 151, [152] = 152, [153] = 153, @@ -1420,24 +1436,24 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [212] = 212, [213] = 213, [214] = 214, - [215] = 193, - [216] = 194, - [217] = 217, - [218] = 218, - [219] = 219, - [220] = 220, - [221] = 221, - [222] = 222, - [223] = 223, - [224] = 224, - [225] = 225, - [226] = 226, - [227] = 223, + [215] = 179, + [216] = 180, + [217] = 186, + [218] = 187, + [219] = 188, + [220] = 189, + [221] = 190, + [222] = 193, + [223] = 194, + [224] = 195, + [225] = 196, + [226] = 197, + [227] = 178, [228] = 228, [229] = 229, [230] = 230, [231] = 231, - [232] = 232, + [232] = 200, [233] = 233, [234] = 234, [235] = 235, @@ -1448,404 +1464,404 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [240] = 240, [241] = 241, [242] = 242, - [243] = 166, - [244] = 172, - [245] = 173, - [246] = 195, - [247] = 181, - [248] = 185, - [249] = 165, + [243] = 243, + [244] = 244, + [245] = 245, + [246] = 246, + [247] = 247, + [248] = 248, + [249] = 249, [250] = 250, - [251] = 212, - [252] = 168, - [253] = 169, - [254] = 198, - [255] = 160, + [251] = 251, + [252] = 252, + [253] = 253, + [254] = 160, + [255] = 255, [256] = 256, - [257] = 196, - [258] = 159, - [259] = 161, - [260] = 162, - [261] = 164, - [262] = 178, - [263] = 180, - [264] = 182, - [265] = 183, + [257] = 257, + [258] = 258, + [259] = 259, + [260] = 260, + [261] = 261, + [262] = 262, + [263] = 263, + [264] = 264, + [265] = 265, [266] = 266, - [267] = 184, - [268] = 188, - [269] = 189, - [270] = 190, + [267] = 158, + [268] = 162, + [269] = 269, + [270] = 270, [271] = 271, - [272] = 192, - [273] = 273, - [274] = 274, - [275] = 275, - [276] = 276, - [277] = 277, - [278] = 278, - [279] = 279, - [280] = 280, - [281] = 281, - [282] = 282, + [272] = 172, + [273] = 181, + [274] = 184, + [275] = 165, + [276] = 168, + [277] = 169, + [278] = 164, + [279] = 166, + [280] = 167, + [281] = 175, + [282] = 176, [283] = 283, [284] = 284, - [285] = 285, + [285] = 198, [286] = 286, - [287] = 287, + [287] = 231, [288] = 288, - [289] = 167, + [289] = 289, [290] = 290, [291] = 291, - [292] = 169, - [293] = 198, - [294] = 160, - [295] = 167, - [296] = 196, - [297] = 159, - [298] = 161, - [299] = 162, - [300] = 164, - [301] = 178, - [302] = 180, - [303] = 182, - [304] = 191, - [305] = 197, - [306] = 176, - [307] = 183, - [308] = 184, - [309] = 309, - [310] = 310, - [311] = 311, - [312] = 187, - [313] = 163, - [314] = 188, - [315] = 189, - [316] = 316, - [317] = 317, - [318] = 318, - [319] = 319, - [320] = 320, - [321] = 321, + [292] = 160, + [293] = 158, + [294] = 162, + [295] = 172, + [296] = 181, + [297] = 184, + [298] = 165, + [299] = 168, + [300] = 169, + [301] = 164, + [302] = 166, + [303] = 167, + [304] = 175, + [305] = 176, + [306] = 198, + [307] = 179, + [308] = 180, + [309] = 186, + [310] = 187, + [311] = 188, + [312] = 189, + [313] = 190, + [314] = 193, + [315] = 194, + [316] = 195, + [317] = 196, + [318] = 197, + [319] = 178, + [320] = 170, + [321] = 151, [322] = 322, - [323] = 323, - [324] = 324, - [325] = 168, - [326] = 171, - [327] = 327, - [328] = 170, - [329] = 174, - [330] = 175, - [331] = 190, + [323] = 183, + [324] = 171, + [325] = 173, + [326] = 192, + [327] = 174, + [328] = 328, + [329] = 329, + [330] = 330, + [331] = 331, [332] = 332, - [333] = 192, - [334] = 193, - [335] = 155, - [336] = 194, - [337] = 166, + [333] = 182, + [334] = 185, + [335] = 161, + [336] = 336, + [337] = 337, [338] = 338, - [339] = 339, - [340] = 177, - [341] = 179, - [342] = 186, - [343] = 158, + [339] = 159, + [340] = 163, + [341] = 341, + [342] = 342, + [343] = 343, [344] = 344, - [345] = 172, - [346] = 173, - [347] = 195, - [348] = 181, - [349] = 156, - [350] = 185, - [351] = 165, - [352] = 352, - [353] = 353, - [354] = 354, - [355] = 241, - [356] = 234, - [357] = 235, - [358] = 236, - [359] = 237, - [360] = 238, - [361] = 239, - [362] = 240, - [363] = 242, - [364] = 166, - [365] = 172, - [366] = 173, - [367] = 195, - [368] = 181, - [369] = 185, - [370] = 165, - [371] = 168, - [372] = 169, - [373] = 198, - [374] = 160, - [375] = 167, - [376] = 196, - [377] = 159, - [378] = 161, - [379] = 162, - [380] = 164, - [381] = 178, - [382] = 180, - [383] = 182, - [384] = 183, - [385] = 184, - [386] = 188, - [387] = 189, - [388] = 190, - [389] = 192, - [390] = 193, - [391] = 194, - [392] = 321, - [393] = 322, - [394] = 323, - [395] = 338, - [396] = 339, - [397] = 324, - [398] = 290, - [399] = 399, - [400] = 354, - [401] = 327, - [402] = 402, - [403] = 311, - [404] = 404, - [405] = 405, - [406] = 402, - [407] = 399, - [408] = 404, - [409] = 309, - [410] = 310, - [411] = 316, - [412] = 317, - [413] = 404, - [414] = 414, - [415] = 271, - [416] = 273, - [417] = 274, - [418] = 404, - [419] = 275, - [420] = 276, - [421] = 277, - [422] = 278, - [423] = 279, - [424] = 353, - [425] = 280, - [426] = 281, - [427] = 282, - [428] = 283, - [429] = 284, - [430] = 285, - [431] = 286, - [432] = 287, - [433] = 288, - [434] = 318, - [435] = 319, - [436] = 320, - [437] = 256, - [438] = 250, - [439] = 217, - [440] = 218, - [441] = 219, - [442] = 220, - [443] = 221, - [444] = 222, - [445] = 224, - [446] = 225, - [447] = 226, - [448] = 214, - [449] = 228, - [450] = 229, - [451] = 230, - [452] = 231, - [453] = 232, - [454] = 233, - [455] = 256, - [456] = 162, - [457] = 164, - [458] = 178, - [459] = 180, - [460] = 182, - [461] = 183, - [462] = 184, - [463] = 188, - [464] = 189, - [465] = 190, - [466] = 192, - [467] = 193, - [468] = 194, - [469] = 250, - [470] = 217, - [471] = 218, + [345] = 345, + [346] = 346, + [347] = 347, + [348] = 348, + [349] = 349, + [350] = 350, + [351] = 351, + [352] = 177, + [353] = 191, + [354] = 152, + [355] = 245, + [356] = 236, + [357] = 237, + [358] = 238, + [359] = 341, + [360] = 328, + [361] = 361, + [362] = 291, + [363] = 239, + [364] = 240, + [365] = 349, + [366] = 241, + [367] = 242, + [368] = 368, + [369] = 347, + [370] = 350, + [371] = 190, + [372] = 351, + [373] = 168, + [374] = 193, + [375] = 288, + [376] = 243, + [377] = 244, + [378] = 165, + [379] = 246, + [380] = 380, + [381] = 194, + [382] = 322, + [383] = 214, + [384] = 248, + [385] = 249, + [386] = 250, + [387] = 368, + [388] = 388, + [389] = 251, + [390] = 343, + [391] = 252, + [392] = 253, + [393] = 289, + [394] = 255, + [395] = 195, + [396] = 284, + [397] = 397, + [398] = 247, + [399] = 228, + [400] = 256, + [401] = 196, + [402] = 257, + [403] = 344, + [404] = 258, + [405] = 336, + [406] = 368, + [407] = 290, + [408] = 260, + [409] = 261, + [410] = 262, + [411] = 263, + [412] = 264, + [413] = 265, + [414] = 197, + [415] = 229, + [416] = 230, + [417] = 233, + [418] = 266, + [419] = 269, + [420] = 270, + [421] = 271, + [422] = 345, + [423] = 160, + [424] = 346, + [425] = 158, + [426] = 178, + [427] = 169, + [428] = 164, + [429] = 162, + [430] = 337, + [431] = 166, + [432] = 167, + [433] = 175, + [434] = 176, + [435] = 198, + [436] = 172, + [437] = 338, + [438] = 179, + [439] = 397, + [440] = 180, + [441] = 342, + [442] = 348, + [443] = 186, + [444] = 187, + [445] = 181, + [446] = 188, + [447] = 286, + [448] = 189, + [449] = 234, + [450] = 368, + [451] = 361, + [452] = 235, + [453] = 184, + [454] = 259, + [455] = 246, + [456] = 175, + [457] = 176, + [458] = 198, + [459] = 179, + [460] = 180, + [461] = 288, + [462] = 284, + [463] = 247, + [464] = 186, + [465] = 187, + [466] = 188, + [467] = 189, + [468] = 190, + [469] = 228, + [470] = 470, + [471] = 229, [472] = 472, - [473] = 219, - [474] = 220, - [475] = 221, - [476] = 222, - [477] = 224, - [478] = 225, - [479] = 198, - [480] = 160, - [481] = 167, - [482] = 226, - [483] = 214, - [484] = 228, - [485] = 273, - [486] = 274, - [487] = 280, - [488] = 196, - [489] = 159, - [490] = 161, - [491] = 162, - [492] = 164, - [493] = 281, - [494] = 282, - [495] = 283, - [496] = 284, - [497] = 229, - [498] = 285, + [473] = 230, + [474] = 474, + [475] = 233, + [476] = 476, + [477] = 193, + [478] = 194, + [479] = 195, + [480] = 196, + [481] = 197, + [482] = 178, + [483] = 234, + [484] = 235, + [485] = 236, + [486] = 237, + [487] = 238, + [488] = 239, + [489] = 240, + [490] = 241, + [491] = 242, + [492] = 286, + [493] = 243, + [494] = 288, + [495] = 284, + [496] = 247, + [497] = 228, + [498] = 229, [499] = 230, - [500] = 286, - [501] = 501, - [502] = 231, - [503] = 232, - [504] = 233, - [505] = 234, - [506] = 178, - [507] = 507, - [508] = 508, - [509] = 509, - [510] = 472, - [511] = 180, - [512] = 501, - [513] = 182, - [514] = 183, - [515] = 184, - [516] = 507, - [517] = 508, - [518] = 509, - [519] = 472, - [520] = 235, - [521] = 501, - [522] = 236, - [523] = 237, - [524] = 238, - [525] = 507, - [526] = 508, - [527] = 509, - [528] = 472, - [529] = 287, - [530] = 501, - [531] = 288, - [532] = 275, - [533] = 276, - [534] = 277, - [535] = 278, - [536] = 279, - [537] = 159, - [538] = 161, - [539] = 188, - [540] = 189, - [541] = 190, - [542] = 217, - [543] = 218, - [544] = 280, - [545] = 281, - [546] = 282, - [547] = 219, - [548] = 271, - [549] = 239, - [550] = 240, - [551] = 241, - [552] = 192, - [553] = 193, - [554] = 194, - [555] = 242, - [556] = 220, - [557] = 221, - [558] = 283, - [559] = 284, - [560] = 285, - [561] = 166, - [562] = 286, - [563] = 287, - [564] = 172, - [565] = 222, - [566] = 173, - [567] = 195, - [568] = 181, - [569] = 185, - [570] = 224, - [571] = 225, - [572] = 226, - [573] = 214, - [574] = 228, - [575] = 278, - [576] = 271, - [577] = 279, - [578] = 288, - [579] = 273, - [580] = 229, - [581] = 165, - [582] = 274, - [583] = 168, - [584] = 230, - [585] = 231, - [586] = 232, - [587] = 233, - [588] = 234, - [589] = 235, - [590] = 236, - [591] = 237, - [592] = 238, - [593] = 169, - [594] = 256, - [595] = 275, - [596] = 509, - [597] = 508, - [598] = 239, - [599] = 240, - [600] = 241, - [601] = 242, - [602] = 166, - [603] = 172, - [604] = 173, - [605] = 195, - [606] = 181, - [607] = 185, - [608] = 165, - [609] = 168, - [610] = 169, - [611] = 276, - [612] = 507, - [613] = 277, - [614] = 198, - [615] = 160, - [616] = 167, - [617] = 196, - [618] = 250, + [500] = 233, + [501] = 244, + [502] = 245, + [503] = 246, + [504] = 214, + [505] = 248, + [506] = 234, + [507] = 235, + [508] = 236, + [509] = 237, + [510] = 238, + [511] = 239, + [512] = 240, + [513] = 241, + [514] = 242, + [515] = 249, + [516] = 250, + [517] = 243, + [518] = 244, + [519] = 245, + [520] = 251, + [521] = 214, + [522] = 248, + [523] = 249, + [524] = 250, + [525] = 251, + [526] = 252, + [527] = 253, + [528] = 289, + [529] = 255, + [530] = 252, + [531] = 256, + [532] = 257, + [533] = 258, + [534] = 259, + [535] = 260, + [536] = 261, + [537] = 262, + [538] = 263, + [539] = 264, + [540] = 265, + [541] = 253, + [542] = 289, + [543] = 266, + [544] = 269, + [545] = 270, + [546] = 271, + [547] = 160, + [548] = 158, + [549] = 162, + [550] = 172, + [551] = 181, + [552] = 184, + [553] = 165, + [554] = 168, + [555] = 169, + [556] = 164, + [557] = 166, + [558] = 167, + [559] = 176, + [560] = 198, + [561] = 179, + [562] = 180, + [563] = 186, + [564] = 187, + [565] = 188, + [566] = 189, + [567] = 190, + [568] = 193, + [569] = 194, + [570] = 195, + [571] = 196, + [572] = 197, + [573] = 178, + [574] = 255, + [575] = 256, + [576] = 257, + [577] = 577, + [578] = 258, + [579] = 259, + [580] = 260, + [581] = 470, + [582] = 472, + [583] = 474, + [584] = 476, + [585] = 261, + [586] = 577, + [587] = 262, + [588] = 263, + [589] = 470, + [590] = 472, + [591] = 474, + [592] = 476, + [593] = 264, + [594] = 577, + [595] = 265, + [596] = 470, + [597] = 472, + [598] = 474, + [599] = 476, + [600] = 286, + [601] = 577, + [602] = 266, + [603] = 269, + [604] = 270, + [605] = 271, + [606] = 160, + [607] = 158, + [608] = 162, + [609] = 172, + [610] = 181, + [611] = 184, + [612] = 165, + [613] = 168, + [614] = 169, + [615] = 164, + [616] = 166, + [617] = 167, + [618] = 175, [619] = 619, - [620] = 620, - [621] = 619, + [620] = 619, + [621] = 621, [622] = 622, [623] = 623, - [624] = 622, + [624] = 624, [625] = 625, - [626] = 620, - [627] = 623, + [626] = 621, + [627] = 621, [628] = 622, - [629] = 619, - [630] = 620, - [631] = 625, - [632] = 623, - [633] = 622, - [634] = 623, - [635] = 635, + [629] = 623, + [630] = 622, + [631] = 623, + [632] = 624, + [633] = 625, + [634] = 621, + [635] = 624, [636] = 625, - [637] = 635, - [638] = 625, - [639] = 619, - [640] = 620, + [637] = 622, + [638] = 623, + [639] = 624, + [640] = 625, [641] = 641, [642] = 642, [643] = 643, @@ -1854,32 +1870,32 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [646] = 646, [647] = 647, [648] = 648, - [649] = 646, + [649] = 649, [650] = 650, [651] = 651, [652] = 652, [653] = 653, - [654] = 647, + [654] = 641, [655] = 655, [656] = 656, [657] = 657, [658] = 658, - [659] = 655, - [660] = 660, - [661] = 658, - [662] = 662, - [663] = 648, - [664] = 641, - [665] = 650, - [666] = 656, - [667] = 642, - [668] = 643, - [669] = 662, - [670] = 652, - [671] = 651, - [672] = 651, - [673] = 651, - [674] = 660, + [659] = 657, + [660] = 642, + [661] = 644, + [662] = 649, + [663] = 651, + [664] = 652, + [665] = 653, + [666] = 647, + [667] = 655, + [668] = 656, + [669] = 650, + [670] = 670, + [671] = 648, + [672] = 647, + [673] = 647, + [674] = 670, [675] = 675, [676] = 676, [677] = 677, @@ -1890,100 +1906,100 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [682] = 682, [683] = 683, [684] = 684, - [685] = 685, + [685] = 682, [686] = 686, - [687] = 687, + [687] = 682, [688] = 688, [689] = 689, - [690] = 680, - [691] = 680, + [690] = 690, + [691] = 691, [692] = 692, - [693] = 693, + [693] = 682, [694] = 694, [695] = 695, [696] = 696, [697] = 697, - [698] = 680, + [698] = 698, [699] = 699, - [700] = 700, + [700] = 699, [701] = 699, [702] = 699, - [703] = 699, + [703] = 703, [704] = 699, - [705] = 699, - [706] = 700, + [705] = 703, + [706] = 699, [707] = 707, [708] = 708, - [709] = 709, + [709] = 708, [710] = 710, [711] = 711, [712] = 712, [713] = 713, - [714] = 709, - [715] = 715, - [716] = 709, - [717] = 709, - [718] = 709, - [719] = 709, + [714] = 708, + [715] = 708, + [716] = 708, + [717] = 708, + [718] = 718, + [719] = 719, [720] = 720, [721] = 721, - [722] = 722, - [723] = 722, - [724] = 722, - [725] = 722, - [726] = 722, - [727] = 727, - [728] = 722, - [729] = 720, + [722] = 721, + [723] = 721, + [724] = 721, + [725] = 721, + [726] = 719, + [727] = 721, + [728] = 728, + [729] = 729, [730] = 730, [731] = 731, - [732] = 720, - [733] = 733, + [732] = 719, + [733] = 729, [734] = 731, - [735] = 730, + [735] = 735, [736] = 736, [737] = 736, - [738] = 738, - [739] = 730, - [740] = 738, - [741] = 731, - [742] = 736, - [743] = 738, - [744] = 738, - [745] = 736, + [738] = 736, + [739] = 735, + [740] = 735, + [741] = 736, + [742] = 731, + [743] = 735, + [744] = 729, + [745] = 745, [746] = 746, - [747] = 746, + [747] = 747, [748] = 748, - [749] = 749, - [750] = 748, + [749] = 746, + [750] = 750, [751] = 751, [752] = 752, - [753] = 753, - [754] = 748, - [755] = 746, - [756] = 756, - [757] = 748, - [758] = 752, - [759] = 749, - [760] = 749, - [761] = 761, - [762] = 751, - [763] = 752, - [764] = 756, - [765] = 752, - [766] = 746, - [767] = 748, - [768] = 751, - [769] = 752, - [770] = 751, - [771] = 748, - [772] = 752, - [773] = 756, - [774] = 761, - [775] = 749, - [776] = 761, - [777] = 777, - [778] = 778, + [753] = 750, + [754] = 747, + [755] = 747, + [756] = 752, + [757] = 745, + [758] = 758, + [759] = 750, + [760] = 752, + [761] = 745, + [762] = 762, + [763] = 763, + [764] = 752, + [765] = 763, + [766] = 747, + [767] = 747, + [768] = 746, + [769] = 748, + [770] = 750, + [771] = 752, + [772] = 772, + [773] = 752, + [774] = 763, + [775] = 746, + [776] = 747, + [777] = 748, + [778] = 745, [779] = 779, [780] = 780, [781] = 781, @@ -1991,182 +2007,182 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [783] = 783, [784] = 784, [785] = 785, - [786] = 780, + [786] = 786, [787] = 787, - [788] = 781, + [788] = 788, [789] = 789, [790] = 790, - [791] = 791, - [792] = 789, + [791] = 785, + [792] = 787, [793] = 793, - [794] = 794, - [795] = 795, + [794] = 788, + [795] = 786, [796] = 796, - [797] = 793, + [797] = 797, [798] = 798, - [799] = 799, - [800] = 800, - [801] = 778, - [802] = 779, - [803] = 780, - [804] = 781, - [805] = 782, - [806] = 783, - [807] = 784, - [808] = 785, - [809] = 809, + [799] = 790, + [800] = 797, + [801] = 801, + [802] = 784, + [803] = 803, + [804] = 789, + [805] = 805, + [806] = 806, + [807] = 807, + [808] = 808, + [809] = 803, [810] = 810, - [811] = 794, - [812] = 795, - [813] = 813, - [814] = 814, - [815] = 787, - [816] = 796, + [811] = 811, + [812] = 779, + [813] = 790, + [814] = 779, + [815] = 805, + [816] = 782, [817] = 817, - [818] = 790, + [818] = 818, [819] = 819, - [820] = 820, - [821] = 790, - [822] = 791, + [820] = 785, + [821] = 821, + [822] = 780, [823] = 823, - [824] = 819, - [825] = 825, - [826] = 782, - [827] = 789, - [828] = 793, - [829] = 794, - [830] = 783, - [831] = 784, - [832] = 785, - [833] = 795, - [834] = 823, - [835] = 819, - [836] = 796, - [837] = 777, - [838] = 798, - [839] = 799, - [840] = 800, + [824] = 781, + [825] = 782, + [826] = 798, + [827] = 783, + [828] = 810, + [829] = 811, + [830] = 784, + [831] = 786, + [832] = 810, + [833] = 785, + [834] = 786, + [835] = 784, + [836] = 788, + [837] = 789, + [838] = 790, + [839] = 801, + [840] = 787, [841] = 841, - [842] = 787, - [843] = 778, - [844] = 779, - [845] = 780, + [842] = 797, + [843] = 783, + [844] = 801, + [845] = 845, [846] = 846, - [847] = 781, - [848] = 848, - [849] = 782, - [850] = 783, - [851] = 823, - [852] = 819, - [853] = 784, - [854] = 785, - [855] = 855, - [856] = 791, - [857] = 857, - [858] = 823, - [859] = 823, - [860] = 819, - [861] = 819, - [862] = 862, - [863] = 820, - [864] = 777, - [865] = 787, - [866] = 823, - [867] = 798, - [868] = 799, - [869] = 790, - [870] = 791, - [871] = 800, - [872] = 789, - [873] = 823, - [874] = 819, - [875] = 819, - [876] = 778, - [877] = 793, - [878] = 823, - [879] = 794, - [880] = 779, - [881] = 795, - [882] = 796, - [883] = 777, - [884] = 798, - [885] = 799, - [886] = 800, - [887] = 887, - [888] = 888, + [847] = 847, + [848] = 817, + [849] = 806, + [850] = 810, + [851] = 811, + [852] = 818, + [853] = 805, + [854] = 805, + [855] = 789, + [856] = 856, + [857] = 803, + [858] = 819, + [859] = 811, + [860] = 860, + [861] = 811, + [862] = 797, + [863] = 801, + [864] = 810, + [865] = 810, + [866] = 811, + [867] = 780, + [868] = 806, + [869] = 779, + [870] = 806, + [871] = 788, + [872] = 817, + [873] = 803, + [874] = 818, + [875] = 810, + [876] = 811, + [877] = 811, + [878] = 819, + [879] = 781, + [880] = 810, + [881] = 817, + [882] = 818, + [883] = 819, + [884] = 780, + [885] = 781, + [886] = 782, + [887] = 783, + [888] = 787, [889] = 889, [890] = 890, [891] = 891, [892] = 892, [893] = 893, - [894] = 888, + [894] = 894, [895] = 895, [896] = 896, [897] = 897, - [898] = 898, - [899] = 892, + [898] = 894, + [899] = 895, [900] = 900, - [901] = 888, + [901] = 901, [902] = 902, [903] = 893, - [904] = 892, + [904] = 889, [905] = 905, - [906] = 888, - [907] = 907, - [908] = 898, - [909] = 909, - [910] = 896, + [906] = 897, + [907] = 893, + [908] = 889, + [909] = 897, + [910] = 893, [911] = 911, - [912] = 892, - [913] = 911, - [914] = 893, + [912] = 894, + [913] = 895, + [914] = 914, [915] = 915, - [916] = 888, - [917] = 917, - [918] = 918, - [919] = 919, + [916] = 916, + [917] = 889, + [918] = 893, + [919] = 889, [920] = 920, [921] = 921, - [922] = 898, - [923] = 898, - [924] = 911, + [922] = 897, + [923] = 923, + [924] = 896, [925] = 925, - [926] = 896, - [927] = 927, - [928] = 911, - [929] = 892, - [930] = 893, - [931] = 917, - [932] = 919, - [933] = 905, - [934] = 927, - [935] = 935, - [936] = 917, - [937] = 919, - [938] = 915, - [939] = 927, - [940] = 893, - [941] = 917, - [942] = 919, - [943] = 892, - [944] = 927, - [945] = 927, - [946] = 917, - [947] = 919, - [948] = 927, - [949] = 888, - [950] = 917, - [951] = 919, - [952] = 893, - [953] = 896, - [954] = 954, - [955] = 955, + [926] = 894, + [927] = 895, + [928] = 928, + [929] = 893, + [930] = 889, + [931] = 931, + [932] = 928, + [933] = 933, + [934] = 925, + [935] = 931, + [936] = 896, + [937] = 896, + [938] = 911, + [939] = 933, + [940] = 925, + [941] = 911, + [942] = 933, + [943] = 925, + [944] = 897, + [945] = 911, + [946] = 946, + [947] = 933, + [948] = 925, + [949] = 949, + [950] = 911, + [951] = 933, + [952] = 925, + [953] = 911, + [954] = 933, + [955] = 897, [956] = 956, [957] = 957, [958] = 958, [959] = 959, [960] = 960, - [961] = 956, + [961] = 961, [962] = 962, [963] = 963, [964] = 964, @@ -2177,284 +2193,287 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [969] = 969, [970] = 970, [971] = 971, - [972] = 960, - [973] = 965, + [972] = 972, + [973] = 967, [974] = 974, - [975] = 967, - [976] = 971, - [977] = 955, - [978] = 955, + [975] = 975, + [976] = 976, + [977] = 977, + [978] = 978, [979] = 979, [980] = 980, - [981] = 966, - [982] = 982, - [983] = 954, - [984] = 984, + [981] = 979, + [982] = 974, + [983] = 983, + [984] = 956, [985] = 985, [986] = 986, [987] = 987, - [988] = 988, - [989] = 957, - [990] = 974, - [991] = 991, - [992] = 992, - [993] = 993, - [994] = 994, - [995] = 962, - [996] = 963, - [997] = 964, - [998] = 998, - [999] = 992, - [1000] = 969, - [1001] = 960, - [1002] = 965, + [988] = 964, + [989] = 977, + [990] = 959, + [991] = 960, + [992] = 961, + [993] = 962, + [994] = 963, + [995] = 995, + [996] = 996, + [997] = 957, + [998] = 965, + [999] = 966, + [1000] = 967, + [1001] = 1001, + [1002] = 980, [1003] = 1003, - [1004] = 967, - [1005] = 971, - [1006] = 955, - [1007] = 979, + [1004] = 975, + [1005] = 976, + [1006] = 1006, + [1007] = 978, [1008] = 979, [1009] = 980, - [1010] = 966, - [1011] = 982, - [1012] = 1012, - [1013] = 984, + [1010] = 983, + [1011] = 974, + [1012] = 983, + [1013] = 956, [1014] = 985, [1015] = 986, [1016] = 987, - [1017] = 988, - [1018] = 957, - [1019] = 974, - [1020] = 991, - [1021] = 992, - [1022] = 993, - [1023] = 994, - [1024] = 962, - [1025] = 963, - [1026] = 964, - [1027] = 979, - [1028] = 980, - [1029] = 1029, + [1017] = 964, + [1018] = 977, + [1019] = 959, + [1020] = 960, + [1021] = 961, + [1022] = 962, + [1023] = 963, + [1024] = 995, + [1025] = 996, + [1026] = 957, + [1027] = 965, + [1028] = 966, + [1029] = 967, [1030] = 1030, [1031] = 1031, [1032] = 1032, - [1033] = 971, - [1034] = 966, - [1035] = 979, - [1036] = 980, + [1033] = 1033, + [1034] = 1030, + [1035] = 1035, + [1036] = 969, [1037] = 1037, - [1038] = 966, - [1039] = 982, + [1038] = 1038, + [1039] = 995, [1040] = 1040, - [1041] = 1041, - [1042] = 1042, - [1043] = 954, - [1044] = 984, - [1045] = 985, - [1046] = 986, - [1047] = 1047, - [1048] = 1048, - [1049] = 1012, + [1041] = 996, + [1042] = 957, + [1043] = 1043, + [1044] = 1044, + [1045] = 1045, + [1046] = 1046, + [1047] = 1003, + [1048] = 1003, + [1049] = 956, [1050] = 1050, - [1051] = 1051, - [1052] = 993, + [1051] = 965, + [1052] = 1043, [1053] = 1053, - [1054] = 1054, - [1055] = 1037, - [1056] = 1053, - [1057] = 1057, - [1058] = 1054, + [1054] = 974, + [1055] = 1035, + [1056] = 1056, + [1057] = 966, + [1058] = 983, [1059] = 1059, - [1060] = 982, - [1061] = 987, - [1062] = 988, - [1063] = 957, - [1064] = 1029, - [1065] = 1030, - [1066] = 974, - [1067] = 991, - [1068] = 1037, - [1069] = 954, - [1070] = 982, + [1060] = 1060, + [1061] = 967, + [1062] = 1062, + [1063] = 975, + [1064] = 1064, + [1065] = 965, + [1066] = 966, + [1067] = 1032, + [1068] = 1033, + [1069] = 967, + [1070] = 1070, [1071] = 1040, - [1072] = 984, - [1073] = 968, - [1074] = 1074, - [1075] = 954, - [1076] = 985, - [1077] = 1077, - [1078] = 1078, - [1079] = 1079, - [1080] = 984, - [1081] = 1081, - [1082] = 985, - [1083] = 986, - [1084] = 1084, - [1085] = 986, - [1086] = 1029, - [1087] = 1030, - [1088] = 1088, - [1089] = 1089, - [1090] = 980, - [1091] = 994, - [1092] = 1050, - [1093] = 1029, - [1094] = 1030, - [1095] = 1095, - [1096] = 967, - [1097] = 1037, - [1098] = 1042, - [1099] = 992, + [1072] = 1072, + [1073] = 974, + [1074] = 1043, + [1075] = 1075, + [1076] = 1076, + [1077] = 983, + [1078] = 956, + [1079] = 985, + [1080] = 1080, + [1081] = 986, + [1082] = 987, + [1083] = 975, + [1084] = 980, + [1085] = 975, + [1086] = 976, + [1087] = 964, + [1088] = 978, + [1089] = 987, + [1090] = 977, + [1091] = 1091, + [1092] = 971, + [1093] = 1093, + [1094] = 979, + [1095] = 959, + [1096] = 1032, + [1097] = 1033, + [1098] = 980, + [1099] = 1099, [1100] = 1040, - [1101] = 993, - [1102] = 1040, - [1103] = 994, - [1104] = 991, + [1101] = 1101, + [1102] = 1003, + [1103] = 1043, + [1104] = 1032, [1105] = 1105, - [1106] = 1031, - [1107] = 1012, + [1106] = 151, + [1107] = 960, [1108] = 1108, - [1109] = 1077, - [1110] = 1110, - [1111] = 1111, - [1112] = 1050, - [1113] = 1113, - [1114] = 1114, - [1115] = 987, - [1116] = 988, - [1117] = 957, - [1118] = 974, - [1119] = 962, - [1120] = 963, - [1121] = 964, - [1122] = 1029, - [1123] = 1030, - [1124] = 991, - [1125] = 1125, - [1126] = 1040, - [1127] = 1127, + [1109] = 1109, + [1110] = 976, + [1111] = 974, + [1112] = 1053, + [1113] = 983, + [1114] = 956, + [1115] = 985, + [1116] = 986, + [1117] = 987, + [1118] = 964, + [1119] = 977, + [1120] = 965, + [1121] = 1072, + [1122] = 968, + [1123] = 1109, + [1124] = 1033, + [1125] = 1032, + [1126] = 1033, + [1127] = 961, [1128] = 1128, - [1129] = 1111, - [1130] = 968, - [1131] = 156, - [1132] = 1077, - [1133] = 1133, - [1134] = 1125, - [1135] = 1041, - [1136] = 960, - [1137] = 965, - [1138] = 1032, - [1139] = 967, - [1140] = 1048, - [1141] = 960, - [1142] = 1105, - [1143] = 971, - [1144] = 955, - [1145] = 987, - [1146] = 1146, - [1147] = 1029, - [1148] = 1030, - [1149] = 155, - [1150] = 969, - [1151] = 1040, - [1152] = 960, - [1153] = 1153, - [1154] = 992, - [1155] = 993, - [1156] = 994, - [1157] = 979, - [1158] = 980, - [1159] = 966, - [1160] = 982, - [1161] = 954, - [1162] = 984, + [1129] = 1043, + [1130] = 978, + [1131] = 1101, + [1132] = 1132, + [1133] = 985, + [1134] = 959, + [1135] = 960, + [1136] = 152, + [1137] = 961, + [1138] = 962, + [1139] = 986, + [1140] = 963, + [1141] = 975, + [1142] = 987, + [1143] = 1143, + [1144] = 979, + [1145] = 959, + [1146] = 969, + [1147] = 976, + [1148] = 971, + [1149] = 962, + [1150] = 1032, + [1151] = 1033, + [1152] = 1093, + [1153] = 960, + [1154] = 1043, + [1155] = 1155, + [1156] = 978, + [1157] = 1157, + [1158] = 1158, + [1159] = 961, + [1160] = 1108, + [1161] = 1132, + [1162] = 1162, [1163] = 985, - [1164] = 986, + [1164] = 1050, [1165] = 1165, - [1166] = 965, - [1167] = 1105, - [1168] = 1050, - [1169] = 1169, - [1170] = 1133, - [1171] = 969, - [1172] = 962, - [1173] = 1051, - [1174] = 1128, - [1175] = 963, - [1176] = 1003, - [1177] = 987, - [1178] = 988, - [1179] = 957, - [1180] = 1079, - [1181] = 1165, - [1182] = 974, - [1183] = 1059, - [1184] = 1074, - [1185] = 1078, - [1186] = 991, - [1187] = 1128, - [1188] = 967, - [1189] = 1113, - [1190] = 968, - [1191] = 1079, - [1192] = 1165, - [1193] = 1193, - [1194] = 1059, - [1195] = 1074, - [1196] = 1078, - [1197] = 1077, - [1198] = 1128, - [1199] = 964, - [1200] = 1146, - [1201] = 965, - [1202] = 1079, - [1203] = 1165, - [1204] = 988, - [1205] = 1059, - [1206] = 1074, - [1207] = 1078, - [1208] = 1208, - [1209] = 1128, - [1210] = 962, - [1211] = 963, - [1212] = 964, - [1213] = 1079, - [1214] = 1165, - [1215] = 1059, - [1216] = 1074, - [1217] = 1078, - [1218] = 992, - [1219] = 1128, - [1220] = 993, - [1221] = 994, - [1222] = 971, - [1223] = 1079, - [1224] = 1165, - [1225] = 1059, - [1226] = 1074, - [1227] = 1078, - [1228] = 1105, - [1229] = 958, - [1230] = 1208, - [1231] = 959, - [1232] = 1047, - [1233] = 958, - [1234] = 1208, - [1235] = 959, - [1236] = 1047, - [1237] = 958, - [1238] = 1208, - [1239] = 959, - [1240] = 1047, - [1241] = 958, - [1242] = 1208, - [1243] = 959, - [1244] = 1047, - [1245] = 958, - [1246] = 1208, - [1247] = 959, - [1248] = 1047, - [1249] = 955, + [1166] = 986, + [1167] = 962, + [1168] = 1157, + [1169] = 1045, + [1170] = 1044, + [1171] = 963, + [1172] = 995, + [1173] = 970, + [1174] = 996, + [1175] = 964, + [1176] = 957, + [1177] = 1105, + [1178] = 979, + [1179] = 1143, + [1180] = 1050, + [1181] = 977, + [1182] = 969, + [1183] = 1155, + [1184] = 1158, + [1185] = 963, + [1186] = 1162, + [1187] = 1165, + [1188] = 1062, + [1189] = 1189, + [1190] = 1105, + [1191] = 980, + [1192] = 971, + [1193] = 1109, + [1194] = 1155, + [1195] = 1158, + [1196] = 1196, + [1197] = 1162, + [1198] = 1165, + [1199] = 1062, + [1200] = 995, + [1201] = 1105, + [1202] = 1109, + [1203] = 976, + [1204] = 958, + [1205] = 1155, + [1206] = 1158, + [1207] = 996, + [1208] = 1162, + [1209] = 1165, + [1210] = 1062, + [1211] = 966, + [1212] = 1105, + [1213] = 1213, + [1214] = 995, + [1215] = 996, + [1216] = 1155, + [1217] = 1158, + [1218] = 1162, + [1219] = 1165, + [1220] = 1062, + [1221] = 957, + [1222] = 1105, + [1223] = 1031, + [1224] = 978, + [1225] = 1050, + [1226] = 1155, + [1227] = 1158, + [1228] = 1162, + [1229] = 1165, + [1230] = 1062, + [1231] = 1101, + [1232] = 1064, + [1233] = 1046, + [1234] = 1059, + [1235] = 1070, + [1236] = 1064, + [1237] = 1046, + [1238] = 1059, + [1239] = 1070, + [1240] = 1064, + [1241] = 1046, + [1242] = 1059, + [1243] = 1070, + [1244] = 1064, + [1245] = 1046, + [1246] = 1059, + [1247] = 1070, + [1248] = 1064, + [1249] = 1046, + [1250] = 1059, + [1251] = 1070, + [1252] = 1040, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -2462,73 +2481,73 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(135); + if (eof) ADVANCE(138); ADVANCE_MAP( - '!', 328, - '"', 297, - '#', 74, - '%', 334, - '&', 278, - '(', 349, - ')', 293, - '*', 332, - '+', 331, - ',', 288, - '-', 330, - '.', 60, - '/', 333, - '0', 269, - ':', 136, - ';', 138, - '<', 295, - '=', 287, - '>', 296, - '?', 326, - '@', 281, - '[', 309, + '!', 332, + '"', 301, + '#', 77, + '%', 337, + '&', 281, + '(', 352, + ')', 297, + '*', 336, + '+', 335, + ',', 292, + '-', 334, + '.', 62, + '/', 283, + '0', 272, + ':', 139, + ';', 141, + '<', 299, + '=', 291, + '>', 300, + '?', 330, + '@', 284, + '[', 313, ); - if (lookahead == '\\') SKIP(130); - if (lookahead == ']') ADVANCE(310); - if (lookahead == '^') ADVANCE(338); - if (lookahead == 'd') ADVANCE(311); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(337); - if (lookahead == '}') ADVANCE(282); - if (lookahead == '~') ADVANCE(329); + if (lookahead == '\\') SKIP(133); + if (lookahead == ']') ADVANCE(314); + if (lookahead == '^') ADVANCE(341); + if (lookahead == 'd') ADVANCE(315); + if (lookahead == '{') ADVANCE(288); + if (lookahead == '|') ADVANCE(340); + if (lookahead == '}') ADVANCE(286); + if (lookahead == '~') ADVANCE(333); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(133); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(270); + lookahead == ' ') SKIP(136); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(273); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(314); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(318); if (('G' <= lookahead && lookahead <= '_') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(325); + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(329); END_STATE(); case 1: - if (lookahead == '\n') SKIP(51); + if (lookahead == '\n') SKIP(53); END_STATE(); case 2: - if (lookahead == '\n') SKIP(51); + if (lookahead == '\n') SKIP(53); if (lookahead == '\r') SKIP(1); END_STATE(); case 3: - if (lookahead == '\n') SKIP(46); + if (lookahead == '\n') SKIP(48); END_STATE(); case 4: - if (lookahead == '\n') SKIP(46); + if (lookahead == '\n') SKIP(48); if (lookahead == '\r') SKIP(3); END_STATE(); case 5: - if (lookahead == '\n') SKIP(49); + if (lookahead == '\n') SKIP(51); END_STATE(); case 6: - if (lookahead == '\n') SKIP(49); + if (lookahead == '\n') SKIP(51); if (lookahead == '\r') SKIP(5); END_STATE(); case 7: - if (lookahead == '\n') SKIP(42); + if (lookahead == '\n') SKIP(44); END_STATE(); case 8: - if (lookahead == '\n') SKIP(42); + if (lookahead == '\n') SKIP(44); if (lookahead == '\r') SKIP(7); END_STATE(); case 9: @@ -2540,157 +2559,157 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 11: ADVANCE_MAP( - '\n', 367, - '!', 67, - '%', 334, - '&', 277, - '(', 292, - '*', 332, - '+', 331, - '-', 330, - '/', 333, - '<', 295, - '=', 68, - '>', 296, + '\n', 370, + '!', 70, + '%', 337, + '&', 280, + '(', 296, + '*', 336, + '+', 335, + '-', 334, + '/', 283, + '<', 299, + '=', 71, + '>', 300, ); if (lookahead == '\\') SKIP(10); - if (lookahead == '^') ADVANCE(338); - if (lookahead == '|') ADVANCE(337); + if (lookahead == '^') ADVANCE(341); + if (lookahead == '|') ADVANCE(340); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(11); END_STATE(); case 12: - if (lookahead == '\n') SKIP(43); + if (lookahead == '\n') SKIP(45); END_STATE(); case 13: - if (lookahead == '\n') SKIP(43); + if (lookahead == '\n') SKIP(45); if (lookahead == '\r') SKIP(12); END_STATE(); case 14: - if (lookahead == '\n') SKIP(44); + if (lookahead == '\n') SKIP(46); END_STATE(); case 15: - if (lookahead == '\n') SKIP(44); + if (lookahead == '\n') SKIP(46); if (lookahead == '\r') SKIP(14); END_STATE(); case 16: - if (lookahead == '\n') SKIP(53); + if (lookahead == '\n') SKIP(55); END_STATE(); case 17: - if (lookahead == '\n') SKIP(53); + if (lookahead == '\n') SKIP(55); if (lookahead == '\r') SKIP(16); END_STATE(); case 18: ADVANCE_MAP( - '\n', 347, - '\r', 354, - '(', 349, - '/', 361, - '\\', 355, - '\t', 357, - 0x0b, 357, - '\f', 357, - ' ', 357, + '\n', 350, + '\r', 357, + '(', 352, + '/', 364, + '\\', 358, + '\t', 360, + 0x0b, 360, + '\f', 360, + ' ', 360, ); - if (lookahead != 0) ADVANCE(363); + if (lookahead != 0) ADVANCE(366); END_STATE(); case 19: - if (lookahead == '\n') ADVANCE(347); - if (lookahead == '\r') ADVANCE(354); - if (lookahead == '/') ADVANCE(361); - if (lookahead == '\\') ADVANCE(355); + if (lookahead == '\n') ADVANCE(350); + if (lookahead == '\r') ADVANCE(357); + if (lookahead == '/') ADVANCE(364); + if (lookahead == '\\') ADVANCE(358); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(357); - if (lookahead != 0) ADVANCE(363); + lookahead == ' ') ADVANCE(360); + if (lookahead != 0) ADVANCE(366); END_STATE(); case 20: - if (lookahead == '\n') ADVANCE(347); + if (lookahead == '\n') ADVANCE(350); if (lookahead == '\r') ADVANCE(21); - if (lookahead == '/') ADVANCE(55); + if (lookahead == '/') ADVANCE(57); if (lookahead == '\\') SKIP(28); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(64); + lookahead == ' ') SKIP(66); END_STATE(); case 21: - if (lookahead == '\n') ADVANCE(347); - if (lookahead == '/') ADVANCE(55); + if (lookahead == '\n') ADVANCE(350); + if (lookahead == '/') ADVANCE(57); if (lookahead == '\\') SKIP(28); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(64); + lookahead == ' ') SKIP(66); END_STATE(); case 22: if (lookahead == '\n') SKIP(22); - if (lookahead == '/') ADVANCE(361); - if (lookahead == '\\') ADVANCE(355); + if (lookahead == '/') ADVANCE(364); + if (lookahead == '\\') ADVANCE(358); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(357); - if (lookahead != 0) ADVANCE(363); + lookahead == ' ') ADVANCE(360); + if (lookahead != 0) ADVANCE(366); END_STATE(); case 23: - if (lookahead == '\n') SKIP(45); - if (lookahead == '"') ADVANCE(297); - if (lookahead == '/') ADVANCE(298); + if (lookahead == '\n') SKIP(47); + if (lookahead == '"') ADVANCE(301); + if (lookahead == '/') ADVANCE(302); if (lookahead == '\\') ADVANCE(24); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(301); - if (lookahead != 0) ADVANCE(302); + lookahead == ' ') ADVANCE(305); + if (lookahead != 0) ADVANCE(306); END_STATE(); case 24: - if (lookahead == '\n') ADVANCE(304); - if (lookahead == '\r') ADVANCE(303); - if (lookahead == 'U') ADVANCE(128); - if (lookahead == 'u') ADVANCE(124); - if (lookahead == 'x') ADVANCE(122); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(306); - if (lookahead != 0) ADVANCE(303); + if (lookahead == '\n') ADVANCE(308); + if (lookahead == '\r') ADVANCE(307); + if (lookahead == 'U') ADVANCE(131); + if (lookahead == 'u') ADVANCE(127); + if (lookahead == 'x') ADVANCE(125); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(310); + if (lookahead != 0) ADVANCE(307); END_STATE(); case 25: - if (lookahead == '\n') SKIP(63); + if (lookahead == '\n') SKIP(65); END_STATE(); case 26: - if (lookahead == '\n') SKIP(63); + if (lookahead == '\n') SKIP(65); if (lookahead == '\r') SKIP(25); END_STATE(); case 27: - if (lookahead == '\n') SKIP(64); + if (lookahead == '\n') SKIP(66); END_STATE(); case 28: - if (lookahead == '\n') SKIP(64); + if (lookahead == '\n') SKIP(66); if (lookahead == '\r') SKIP(27); END_STATE(); case 29: - if (lookahead == '\n') SKIP(65); + if (lookahead == '\n') SKIP(67); END_STATE(); case 30: - if (lookahead == '\n') SKIP(65); + if (lookahead == '\n') SKIP(67); if (lookahead == '\r') SKIP(29); END_STATE(); case 31: - if (lookahead == '\n') SKIP(66); + if (lookahead == '\n') SKIP(68); END_STATE(); case 32: - if (lookahead == '\n') SKIP(66); + if (lookahead == '\n') SKIP(68); if (lookahead == '\r') SKIP(31); END_STATE(); case 33: - if (lookahead == '\n') SKIP(47); + if (lookahead == '\n') SKIP(69); END_STATE(); case 34: - if (lookahead == '\n') SKIP(47); + if (lookahead == '\n') SKIP(69); if (lookahead == '\r') SKIP(33); END_STATE(); case 35: - if (lookahead == '\n') SKIP(54); + if (lookahead == '\n') SKIP(49); END_STATE(); case 36: - if (lookahead == '\n') SKIP(54); + if (lookahead == '\n') SKIP(49); if (lookahead == '\r') SKIP(35); END_STATE(); case 37: - if (lookahead == '\n') SKIP(50); + if (lookahead == '\n') SKIP(56); END_STATE(); case 38: - if (lookahead == '\n') SKIP(50); + if (lookahead == '\n') SKIP(56); if (lookahead == '\r') SKIP(37); END_STATE(); case 39: @@ -2701,358 +2720,364 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(39); END_STATE(); case 41: - if (lookahead == '\r') ADVANCE(145); - if (lookahead != 0) ADVANCE(144); + if (lookahead == '\n') SKIP(54); END_STATE(); case 42: + if (lookahead == '\n') SKIP(54); + if (lookahead == '\r') SKIP(41); + END_STATE(); + case 43: + if (lookahead == '\r') ADVANCE(148); + if (lookahead != 0) ADVANCE(147); + END_STATE(); + case 44: ADVANCE_MAP( - '!', 67, - '%', 334, - '&', 278, - '(', 292, - ')', 293, - '*', 332, - '+', 331, - ',', 288, - '-', 330, - '.', 60, - '/', 333, - '0', 316, - ':', 136, - ';', 138, - '<', 295, - '=', 68, - '>', 296, - '?', 326, + '!', 70, + '%', 337, + '&', 281, + '(', 296, + ')', 297, + '*', 336, + '+', 335, + ',', 292, + '-', 334, + '.', 62, + '/', 283, + '0', 320, + ':', 139, + ';', 141, + '<', 299, + '=', 71, + '>', 300, + '?', 330, ); if (lookahead == '\\') SKIP(8); - if (lookahead == '^') ADVANCE(338); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(337); + if (lookahead == '^') ADVANCE(341); + if (lookahead == '{') ADVANCE(288); + if (lookahead == '|') ADVANCE(340); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(42); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(317); + lookahead == ' ') SKIP(44); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(321); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(325); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(329); END_STATE(); - case 43: + case 45: ADVANCE_MAP( - '!', 327, - '"', 297, - '&', 279, - '(', 292, - ')', 293, - '+', 331, - '-', 330, - '/', 56, - '0', 316, - ';', 138, - '<', 294, - '[', 309, + '!', 331, + '"', 301, + '&', 282, + '(', 296, + ')', 297, + '+', 335, + '-', 334, + '/', 58, + '0', 320, + ';', 141, + '<', 298, + '[', 313, ); if (lookahead == '\\') SKIP(13); - if (lookahead == 'd') ADVANCE(321); - if (lookahead == '~') ADVANCE(329); + if (lookahead == 'd') ADVANCE(325); + if (lookahead == '~') ADVANCE(333); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(43); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(317); + lookahead == ' ') SKIP(45); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(321); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(325); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(329); END_STATE(); - case 44: + case 46: ADVANCE_MAP( - '!', 327, - '"', 297, - '(', 292, - ')', 293, - '+', 331, - '-', 330, - '/', 55, - '0', 316, - '<', 69, + '!', 331, + '"', 301, + '(', 296, + ')', 297, + '+', 335, + '-', 334, + '/', 57, + '0', 320, + '<', 72, ); if (lookahead == '\\') SKIP(15); - if (lookahead == '~') ADVANCE(329); + if (lookahead == '~') ADVANCE(333); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(44); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(317); + lookahead == ' ') SKIP(46); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(321); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(325); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(329); END_STATE(); - case 45: - if (lookahead == '"') ADVANCE(297); - if (lookahead == '/') ADVANCE(55); + case 47: + if (lookahead == '"') ADVANCE(301); + if (lookahead == '/') ADVANCE(57); if (lookahead == '\\') ADVANCE(24); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(45); + lookahead == ' ') SKIP(47); END_STATE(); - case 46: - if (lookahead == '#') ADVANCE(228); - if (lookahead == '&') ADVANCE(279); - if (lookahead == '/') ADVANCE(153); + case 48: + if (lookahead == '#') ADVANCE(231); + if (lookahead == '&') ADVANCE(282); + if (lookahead == '/') ADVANCE(156); if (lookahead == '\\') SKIP(4); - if (lookahead == '_') ADVANCE(148); - if (('+' <= lookahead && lookahead <= '.')) ADVANCE(48); + if (lookahead == '_') ADVANCE(151); + if (('+' <= lookahead && lookahead <= '.')) ADVANCE(50); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(46); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(268); + lookahead == ' ') SKIP(48); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(271); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(149); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(152); END_STATE(); - case 47: - if (lookahead == '#') ADVANCE(267); - if (lookahead == '&') ADVANCE(279); - if (lookahead == '/') ADVANCE(155); - if (lookahead == '\\') SKIP(34); - if (lookahead == '_') ADVANCE(148); - if (('+' <= lookahead && lookahead <= '.')) ADVANCE(48); + case 49: + if (lookahead == '#') ADVANCE(270); + if (lookahead == '&') ADVANCE(282); + if (lookahead == '/') ADVANCE(158); + if (lookahead == '\\') SKIP(36); + if (lookahead == '_') ADVANCE(151); + if (('+' <= lookahead && lookahead <= '.')) ADVANCE(50); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(47); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(268); + lookahead == ' ') SKIP(49); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(271); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(149); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(152); END_STATE(); - case 48: - if (lookahead == '#') ADVANCE(267); + case 50: + if (lookahead == '#') ADVANCE(270); if (('+' <= lookahead && lookahead <= '.') || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); - END_STATE(); - case 49: - if (lookahead == '#') ADVANCE(231); - if (lookahead == '&') ADVANCE(279); - if (lookahead == '/') ADVANCE(153); - if (lookahead == '\\') SKIP(6); - if (lookahead == '_') ADVANCE(148); - if (lookahead == '}') ADVANCE(282); - if (('+' <= lookahead && lookahead <= '.')) ADVANCE(48); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(49); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(268); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(149); - END_STATE(); - case 50: - if (lookahead == '#') ADVANCE(229); - if (lookahead == '&') ADVANCE(279); - if (lookahead == '/') ADVANCE(153); - if (lookahead == '\\') SKIP(38); - if (lookahead == '_') ADVANCE(148); - if (('+' <= lookahead && lookahead <= '.')) ADVANCE(48); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(50); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(268); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(149); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(50); END_STATE(); case 51: - if (lookahead == '#') ADVANCE(76); - if (lookahead == '&') ADVANCE(279); - if (lookahead == '/') ADVANCE(152); - if (lookahead == '\\') SKIP(2); + if (lookahead == '#') ADVANCE(234); + if (lookahead == '&') ADVANCE(282); + if (lookahead == '/') ADVANCE(156); + if (lookahead == '\\') SKIP(6); if (lookahead == '_') ADVANCE(151); + if (lookahead == '}') ADVANCE(286); + if (('+' <= lookahead && lookahead <= '.')) ADVANCE(50); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(51); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(271); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(150); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(152); END_STATE(); case 52: - if (lookahead == '#') ADVANCE(230); - if (lookahead == '&') ADVANCE(279); - if (lookahead == '/') ADVANCE(153); + if (lookahead == '#') ADVANCE(232); + if (lookahead == '&') ADVANCE(282); + if (lookahead == '/') ADVANCE(156); if (lookahead == '\\') SKIP(40); - if (lookahead == '_') ADVANCE(148); - if (('+' <= lookahead && lookahead <= '.')) ADVANCE(48); + if (lookahead == '_') ADVANCE(151); + if (('+' <= lookahead && lookahead <= '.')) ADVANCE(50); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(52); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(268); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(271); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(149); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(152); END_STATE(); case 53: - if (lookahead == '&') ADVANCE(279); + if (lookahead == '#') ADVANCE(79); + if (lookahead == '&') ADVANCE(282); if (lookahead == '/') ADVANCE(155); - if (lookahead == '\\') SKIP(17); - if (lookahead == '_') ADVANCE(151); + if (lookahead == '\\') SKIP(2); + if (lookahead == '_') ADVANCE(154); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(53); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(150); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(153); END_STATE(); case 54: - if (lookahead == '&') ADVANCE(279); - if (lookahead == '/') ADVANCE(154); - if (lookahead == '\\') SKIP(36); + if (lookahead == '#') ADVANCE(233); + if (lookahead == '&') ADVANCE(282); + if (lookahead == '/') ADVANCE(156); + if (lookahead == '\\') SKIP(42); if (lookahead == '_') ADVANCE(151); + if (('+' <= lookahead && lookahead <= '.')) ADVANCE(50); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(54); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(271); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(150); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(152); END_STATE(); case 55: - if (lookahead == '*') ADVANCE(58); - if (lookahead == '/') ADVANCE(144); + if (lookahead == '&') ADVANCE(282); + if (lookahead == '/') ADVANCE(158); + if (lookahead == '\\') SKIP(17); + if (lookahead == '_') ADVANCE(154); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(55); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(153); END_STATE(); case 56: - if (lookahead == '*') ADVANCE(58); - if (lookahead == '/') ADVANCE(144); - if (lookahead == 'b') ADVANCE(102); - if (lookahead == 'i') ADVANCE(113); + if (lookahead == '&') ADVANCE(282); + if (lookahead == '/') ADVANCE(157); + if (lookahead == '\\') SKIP(38); + if (lookahead == '_') ADVANCE(154); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(56); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(153); END_STATE(); case 57: - if (lookahead == '*') ADVANCE(57); - if (lookahead == '/') ADVANCE(141); - if (lookahead != 0) ADVANCE(58); + if (lookahead == '*') ADVANCE(60); + if (lookahead == '/') ADVANCE(147); END_STATE(); case 58: - if (lookahead == '*') ADVANCE(57); - if (lookahead != 0) ADVANCE(58); + if (lookahead == '*') ADVANCE(60); + if (lookahead == '/') ADVANCE(147); + if (lookahead == 'b') ADVANCE(105); + if (lookahead == 'i') ADVANCE(116); END_STATE(); case 59: - if (lookahead == '.') ADVANCE(350); + if (lookahead == '*') ADVANCE(59); + if (lookahead == '/') ADVANCE(144); + if (lookahead != 0) ADVANCE(60); END_STATE(); case 60: - if (lookahead == '.') ADVANCE(59); + if (lookahead == '*') ADVANCE(59); + if (lookahead != 0) ADVANCE(60); END_STATE(); case 61: - if (lookahead == '/') ADVANCE(285); + if (lookahead == '.') ADVANCE(353); END_STATE(); case 62: - if (lookahead == '/') ADVANCE(291); + if (lookahead == '.') ADVANCE(61); END_STATE(); case 63: - if (lookahead == '/') ADVANCE(55); + if (lookahead == '/') ADVANCE(289); + END_STATE(); + case 64: + if (lookahead == '/') ADVANCE(295); + END_STATE(); + case 65: + if (lookahead == '/') ADVANCE(57); if (lookahead == '\\') SKIP(26); - if (lookahead == ']') ADVANCE(310); + if (lookahead == ']') ADVANCE(314); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(63); + lookahead == ' ') SKIP(65); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(315); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(319); END_STATE(); - case 64: - if (lookahead == '/') ADVANCE(55); + case 66: + if (lookahead == '/') ADVANCE(57); if (lookahead == '\\') SKIP(28); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(64); + lookahead == ' ') SKIP(66); END_STATE(); - case 65: - if (lookahead == '/') ADVANCE(55); + case 67: + if (lookahead == '/') ADVANCE(57); if (lookahead == '\\') SKIP(30); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(65); + lookahead == ' ') SKIP(67); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(276); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(279); END_STATE(); - case 66: - if (lookahead == '/') ADVANCE(55); + case 68: + if (lookahead == '/') ADVANCE(57); if (lookahead == '\\') SKIP(32); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(66); + lookahead == ' ') SKIP(68); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(151); - END_STATE(); - case 67: - if (lookahead == '=') ADVANCE(340); - END_STATE(); - case 68: - if (lookahead == '=') ADVANCE(339); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(154); END_STATE(); case 69: - if (lookahead == '>') ADVANCE(307); - if (lookahead == '\\') ADVANCE(70); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(69); + if (lookahead == '/') ADVANCE(57); + if (lookahead == '\\') SKIP(34); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(69); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(229); END_STATE(); case 70: - if (lookahead == '>') ADVANCE(308); - if (lookahead == '\\') ADVANCE(70); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(69); + if (lookahead == '=') ADVANCE(343); END_STATE(); case 71: - if (lookahead == 'b') ADVANCE(106); + if (lookahead == '=') ADVANCE(342); END_STATE(); case 72: - if (lookahead == 'c') ADVANCE(109); + if (lookahead == '>') ADVANCE(311); + if (lookahead == '\\') ADVANCE(73); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(72); END_STATE(); case 73: - if (lookahead == 'c') ADVANCE(71); + if (lookahead == '>') ADVANCE(312); + if (lookahead == '\\') ADVANCE(73); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(72); END_STATE(); case 74: - if (lookahead == 'd') ADVANCE(83); - if (lookahead == 'e') ADVANCE(108); - if (lookahead == 'i') ADVANCE(92); - if (lookahead == 'u') ADVANCE(112); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(74); + if (lookahead == 'b') ADVANCE(109); END_STATE(); case 75: - if (lookahead == 'd') ADVANCE(83); - if (lookahead == 'e') ADVANCE(111); - if (lookahead == 'i') ADVANCE(92); - if (lookahead == 'u') ADVANCE(112); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(75); + if (lookahead == 'c') ADVANCE(112); END_STATE(); case 76: - if (lookahead == 'd') ADVANCE(83); - if (lookahead == 'e') ADVANCE(110); - if (lookahead == 'i') ADVANCE(92); - if (lookahead == 'u') ADVANCE(112); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(76); + if (lookahead == 'c') ADVANCE(74); END_STATE(); case 77: - if (lookahead == 'd') ADVANCE(83); - if (lookahead == 'i') ADVANCE(92); - if (lookahead == 'u') ADVANCE(112); + if (lookahead == 'd') ADVANCE(86); + if (lookahead == 'e') ADVANCE(111); + if (lookahead == 'i') ADVANCE(95); + if (lookahead == 'u') ADVANCE(115); if (lookahead == '\t' || lookahead == ' ') ADVANCE(77); END_STATE(); case 78: - if (lookahead == 'd') ADVANCE(105); + if (lookahead == 'd') ADVANCE(86); + if (lookahead == 'e') ADVANCE(114); + if (lookahead == 'i') ADVANCE(95); + if (lookahead == 'u') ADVANCE(115); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(78); END_STATE(); case 79: if (lookahead == 'd') ADVANCE(86); + if (lookahead == 'e') ADVANCE(113); + if (lookahead == 'i') ADVANCE(95); + if (lookahead == 'u') ADVANCE(115); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(79); END_STATE(); case 80: - if (lookahead == 'd') ADVANCE(88); + if (lookahead == 'd') ADVANCE(86); + if (lookahead == 'i') ADVANCE(95); + if (lookahead == 'u') ADVANCE(115); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(80); END_STATE(); case 81: - if (lookahead == 'd') ADVANCE(89); + if (lookahead == 'd') ADVANCE(108); END_STATE(); case 82: - if (lookahead == 'd') ADVANCE(91); + if (lookahead == 'd') ADVANCE(89); END_STATE(); case 83: - if (lookahead == 'e') ADVANCE(93); + if (lookahead == 'd') ADVANCE(91); END_STATE(); case 84: - if (lookahead == 'e') ADVANCE(371); + if (lookahead == 'd') ADVANCE(92); END_STATE(); case 85: - if (lookahead == 'e') ADVANCE(348); + if (lookahead == 'd') ADVANCE(94); END_STATE(); case 86: - if (lookahead == 'e') ADVANCE(346); + if (lookahead == 'e') ADVANCE(96); END_STATE(); case 87: - if (lookahead == 'e') ADVANCE(96); + if (lookahead == 'e') ADVANCE(374); END_STATE(); case 88: - if (lookahead == 'e') ADVANCE(97); + if (lookahead == 'e') ADVANCE(351); END_STATE(); case 89: - if (lookahead == 'e') ADVANCE(98); + if (lookahead == 'e') ADVANCE(349); END_STATE(); case 90: if (lookahead == 'e') ADVANCE(99); @@ -3061,118 +3086,112 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'e') ADVANCE(100); END_STATE(); case 92: - if (lookahead == 'f') ADVANCE(365); - if (lookahead == 'n') ADVANCE(72); + if (lookahead == 'e') ADVANCE(101); END_STATE(); case 93: - if (lookahead == 'f') ADVANCE(103); + if (lookahead == 'e') ADVANCE(102); END_STATE(); case 94: - if (lookahead == 'f') ADVANCE(373); + if (lookahead == 'e') ADVANCE(103); END_STATE(); case 95: if (lookahead == 'f') ADVANCE(368); + if (lookahead == 'n') ADVANCE(75); END_STATE(); case 96: - if (lookahead == 'f') ADVANCE(369); + if (lookahead == 'f') ADVANCE(106); END_STATE(); case 97: - if (lookahead == 'f') ADVANCE(351); + if (lookahead == 'f') ADVANCE(376); END_STATE(); case 98: - if (lookahead == 'f') ADVANCE(370); + if (lookahead == 'f') ADVANCE(371); END_STATE(); case 99: - if (lookahead == 'f') ADVANCE(375); + if (lookahead == 'f') ADVANCE(372); END_STATE(); case 100: - if (lookahead == 'f') ADVANCE(376); + if (lookahead == 'f') ADVANCE(354); END_STATE(); case 101: - if (lookahead == 'f') ADVANCE(372); + if (lookahead == 'f') ADVANCE(373); END_STATE(); case 102: - if (lookahead == 'i') ADVANCE(117); + if (lookahead == 'f') ADVANCE(378); END_STATE(); case 103: - if (lookahead == 'i') ADVANCE(115); + if (lookahead == 'f') ADVANCE(379); END_STATE(); case 104: - if (lookahead == 'i') ADVANCE(94); - if (lookahead == 's') ADVANCE(84); + if (lookahead == 'f') ADVANCE(375); END_STATE(); case 105: - if (lookahead == 'i') ADVANCE(95); + if (lookahead == 'i') ADVANCE(120); END_STATE(); case 106: - if (lookahead == 'i') ADVANCE(114); + if (lookahead == 'i') ADVANCE(118); END_STATE(); case 107: - if (lookahead == 'i') ADVANCE(101); - if (lookahead == 's') ADVANCE(84); + if (lookahead == 'i') ADVANCE(97); + if (lookahead == 's') ADVANCE(87); END_STATE(); case 108: - if (lookahead == 'l') ADVANCE(104); - if (lookahead == 'n') ADVANCE(78); + if (lookahead == 'i') ADVANCE(98); END_STATE(); case 109: - if (lookahead == 'l') ADVANCE(118); + if (lookahead == 'i') ADVANCE(117); END_STATE(); case 110: - if (lookahead == 'l') ADVANCE(107); - if (lookahead == 'n') ADVANCE(78); + if (lookahead == 'i') ADVANCE(104); + if (lookahead == 's') ADVANCE(87); END_STATE(); case 111: - if (lookahead == 'n') ADVANCE(78); + if (lookahead == 'l') ADVANCE(107); + if (lookahead == 'n') ADVANCE(81); END_STATE(); case 112: - if (lookahead == 'n') ADVANCE(80); + if (lookahead == 'l') ADVANCE(121); END_STATE(); case 113: - if (lookahead == 'n') ADVANCE(73); + if (lookahead == 'l') ADVANCE(110); + if (lookahead == 'n') ADVANCE(81); END_STATE(); case 114: - if (lookahead == 'n') ADVANCE(62); + if (lookahead == 'n') ADVANCE(81); END_STATE(); case 115: - if (lookahead == 'n') ADVANCE(85); + if (lookahead == 'n') ADVANCE(83); END_STATE(); case 116: - if (lookahead == 's') ADVANCE(61); + if (lookahead == 'n') ADVANCE(76); END_STATE(); case 117: - if (lookahead == 't') ADVANCE(116); + if (lookahead == 'n') ADVANCE(64); END_STATE(); case 118: - if (lookahead == 'u') ADVANCE(79); + if (lookahead == 'n') ADVANCE(88); END_STATE(); case 119: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(317); + if (lookahead == 's') ADVANCE(63); END_STATE(); case 120: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(318); + if (lookahead == 't') ADVANCE(119); END_STATE(); case 121: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(303); + if (lookahead == 'u') ADVANCE(82); END_STATE(); case 122: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(121); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(321); END_STATE(); case 123: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(122); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(322); END_STATE(); case 124: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(123); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(307); END_STATE(); case 125: if (('0' <= lookahead && lookahead <= '9') || @@ -3195,269 +3214,260 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'f')) ADVANCE(127); END_STATE(); case 129: - if (eof) ADVANCE(135); - if (lookahead == '\n') SKIP(133); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(128); END_STATE(); case 130: - if (eof) ADVANCE(135); - if (lookahead == '\n') SKIP(133); - if (lookahead == '\r') SKIP(129); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(129); END_STATE(); case 131: - if (eof) ADVANCE(135); - if (lookahead == '\n') SKIP(134); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(130); END_STATE(); case 132: - if (eof) ADVANCE(135); - if (lookahead == '\n') SKIP(134); - if (lookahead == '\r') SKIP(131); + if (eof) ADVANCE(138); + if (lookahead == '\n') SKIP(136); END_STATE(); case 133: - if (eof) ADVANCE(135); - ADVANCE_MAP( - '!', 328, - '"', 297, - '#', 74, - '%', 334, - '&', 278, - '(', 292, - ')', 293, - '*', 332, - '+', 331, - ',', 288, - '-', 330, - '.', 60, - '/', 333, - '0', 269, - ':', 136, - ';', 138, - '<', 295, - '=', 287, - '>', 296, - '?', 326, - '@', 281, - '[', 309, - ); - if (lookahead == '\\') SKIP(130); - if (lookahead == ']') ADVANCE(310); - if (lookahead == '^') ADVANCE(338); - if (lookahead == 'd') ADVANCE(311); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(337); - if (lookahead == '}') ADVANCE(282); - if (lookahead == '~') ADVANCE(329); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(133); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(270); + if (eof) ADVANCE(138); + if (lookahead == '\n') SKIP(136); + if (lookahead == '\r') SKIP(132); + END_STATE(); + case 134: + if (eof) ADVANCE(138); + if (lookahead == '\n') SKIP(137); + END_STATE(); + case 135: + if (eof) ADVANCE(138); + if (lookahead == '\n') SKIP(137); + if (lookahead == '\r') SKIP(134); + END_STATE(); + case 136: + if (eof) ADVANCE(138); + ADVANCE_MAP( + '!', 332, + '"', 301, + '#', 77, + '%', 337, + '&', 281, + '(', 296, + ')', 297, + '*', 336, + '+', 335, + ',', 292, + '-', 334, + '.', 62, + '/', 283, + '0', 272, + ':', 139, + ';', 141, + '<', 299, + '=', 291, + '>', 300, + '?', 330, + '@', 284, + '[', 313, + ); + if (lookahead == '\\') SKIP(133); + if (lookahead == ']') ADVANCE(314); + if (lookahead == '^') ADVANCE(341); + if (lookahead == 'd') ADVANCE(315); + if (lookahead == '{') ADVANCE(288); + if (lookahead == '|') ADVANCE(340); + if (lookahead == '}') ADVANCE(286); + if (lookahead == '~') ADVANCE(333); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(136); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(273); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(314); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(318); if (('G' <= lookahead && lookahead <= '_') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(325); + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(329); END_STATE(); - case 134: - if (eof) ADVANCE(135); + case 137: + if (eof) ADVANCE(138); ADVANCE_MAP( - '#', 74, - '&', 279, - '(', 292, - ')', 293, - ',', 288, - '/', 152, - '0', 316, - ':', 136, - ';', 138, - '=', 286, - '@', 281, + '#', 77, + '&', 282, + '(', 296, + ')', 297, + ',', 292, + '/', 155, + '0', 320, + ':', 139, + ';', 141, + '=', 290, + '@', 284, ); - if (lookahead == '\\') SKIP(132); - if (lookahead == '_') ADVANCE(151); - if (lookahead == '{') ADVANCE(284); + if (lookahead == '\\') SKIP(135); + if (lookahead == '_') ADVANCE(154); + if (lookahead == '{') ADVANCE(288); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(134); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(317); + lookahead == ' ') SKIP(137); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(321); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(150); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(153); END_STATE(); - case 135: + case 138: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 136: + case 139: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 137: + case 140: ACCEPT_TOKEN(anon_sym_SLASHdts_DASHv1_SLASH); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); - case 138: + case 141: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 139: + case 142: ACCEPT_TOKEN(anon_sym_SLASHplugin_SLASH); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); - case 140: + case 143: ACCEPT_TOKEN(anon_sym_SLASHmemreserve_SLASH); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); - case 141: + case 144: ACCEPT_TOKEN(sym_comment); END_STATE(); - case 142: + case 145: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\r') ADVANCE(146); - if (lookahead == '\\') ADVANCE(360); + if (lookahead == '\r') ADVANCE(149); + if (lookahead == '\\') ADVANCE(363); if (lookahead != 0 && - lookahead != '\n') ADVANCE(146); + lookahead != '\n') ADVANCE(149); END_STATE(); - case 143: + case 146: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\\') ADVANCE(41); + if (lookahead == '\\') ADVANCE(43); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(143); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(146); if (lookahead != 0 && - lookahead != '\n') ADVANCE(144); + lookahead != '\n') ADVANCE(147); END_STATE(); - case 144: + case 147: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\\') ADVANCE(41); + if (lookahead == '\\') ADVANCE(43); if (lookahead != 0 && - lookahead != '\n') ADVANCE(144); + lookahead != '\n') ADVANCE(147); END_STATE(); - case 145: + case 148: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\\') ADVANCE(41); - if (lookahead != 0) ADVANCE(144); + if (lookahead == '\\') ADVANCE(43); + if (lookahead != 0) ADVANCE(147); END_STATE(); - case 146: + case 149: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\\') ADVANCE(360); + if (lookahead == '\\') ADVANCE(363); if (lookahead != 0 && - lookahead != '\n') ADVANCE(146); + lookahead != '\n') ADVANCE(149); END_STATE(); - case 147: + case 150: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\\') ADVANCE(360); - if (lookahead != 0) ADVANCE(146); + if (lookahead == '\\') ADVANCE(363); + if (lookahead != 0) ADVANCE(149); END_STATE(); - case 148: + case 151: ACCEPT_TOKEN(sym__label_name); - if (lookahead == '#') ADVANCE(267); - if (('+' <= lookahead && lookahead <= '.')) ADVANCE(48); + if (lookahead == '#') ADVANCE(270); + if (('+' <= lookahead && lookahead <= '.')) ADVANCE(50); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(148); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(151); END_STATE(); - case 149: + case 152: ACCEPT_TOKEN(sym__label_name); - if (lookahead == '#') ADVANCE(267); - if (('+' <= lookahead && lookahead <= '.')) ADVANCE(225); + if (lookahead == '#') ADVANCE(270); + if (('+' <= lookahead && lookahead <= '.')) ADVANCE(228); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(149); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(152); END_STATE(); - case 150: + case 153: ACCEPT_TOKEN(sym__label_name); - if (('+' <= lookahead && lookahead <= '.')) ADVANCE(226); + if (('+' <= lookahead && lookahead <= '.')) ADVANCE(229); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(150); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(153); END_STATE(); - case 151: + case 154: ACCEPT_TOKEN(sym__label_name); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(151); - END_STATE(); - case 152: - ACCEPT_TOKEN(sym__node_path); - if (lookahead == '*') ADVANCE(58); - if (lookahead == '/') ADVANCE(143); - if (lookahead == 'd') ADVANCE(174); - if (lookahead == 'i') ADVANCE(199); - if (lookahead == 'm') ADVANCE(173); - if (lookahead == 'o') ADVANCE(197); - if (lookahead == 'p') ADVANCE(193); - if (('+' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); - END_STATE(); - case 153: - ACCEPT_TOKEN(sym__node_path); - if (lookahead == '*') ADVANCE(58); - if (lookahead == '/') ADVANCE(143); - if (lookahead == 'd') ADVANCE(186); - if (lookahead == 'o') ADVANCE(197); - if (('+' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); - END_STATE(); - case 154: - ACCEPT_TOKEN(sym__node_path); - if (lookahead == '*') ADVANCE(58); - if (lookahead == '/') ADVANCE(143); - if (lookahead == 'm') ADVANCE(173); - if (('+' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(154); END_STATE(); case 155: ACCEPT_TOKEN(sym__node_path); - if (lookahead == '*') ADVANCE(58); - if (lookahead == '/') ADVANCE(143); + if (lookahead == '*') ADVANCE(60); + if (lookahead == '/') ADVANCE(146); + if (lookahead == 'd') ADVANCE(177); + if (lookahead == 'i') ADVANCE(202); + if (lookahead == 'm') ADVANCE(176); + if (lookahead == 'o') ADVANCE(200); + if (lookahead == 'p') ADVANCE(196); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 156: ACCEPT_TOKEN(sym__node_path); - if (lookahead == '-') ADVANCE(221); + if (lookahead == '*') ADVANCE(60); + if (lookahead == '/') ADVANCE(146); + if (lookahead == 'd') ADVANCE(189); + if (lookahead == 'o') ADVANCE(200); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 157: ACCEPT_TOKEN(sym__node_path); - if (lookahead == '-') ADVANCE(200); + if (lookahead == '*') ADVANCE(60); + if (lookahead == '/') ADVANCE(146); + if (lookahead == 'm') ADVANCE(176); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 158: ACCEPT_TOKEN(sym__node_path); - if (lookahead == '-') ADVANCE(201); + if (lookahead == '*') ADVANCE(60); + if (lookahead == '/') ADVANCE(146); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 159: ACCEPT_TOKEN(sym__node_path); - if (lookahead == '-') ADVANCE(191); + if (lookahead == '-') ADVANCE(224); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 160: ACCEPT_TOKEN(sym__node_path); @@ -3465,39 +3475,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 161: ACCEPT_TOKEN(sym__node_path); - if (lookahead == '-') ADVANCE(212); + if (lookahead == '-') ADVANCE(204); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 162: ACCEPT_TOKEN(sym__node_path); - if (lookahead == '/') ADVANCE(137); + if (lookahead == '-') ADVANCE(194); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 163: ACCEPT_TOKEN(sym__node_path); - if (lookahead == '/') ADVANCE(139); + if (lookahead == '-') ADVANCE(206); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 164: ACCEPT_TOKEN(sym__node_path); - if (lookahead == '/') ADVANCE(345); + if (lookahead == '-') ADVANCE(215); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 165: ACCEPT_TOKEN(sym__node_path); @@ -3505,377 +3515,377 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 166: ACCEPT_TOKEN(sym__node_path); - if (lookahead == '/') ADVANCE(289); + if (lookahead == '/') ADVANCE(142); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 167: ACCEPT_TOKEN(sym__node_path); - if (lookahead == '/') ADVANCE(283); + if (lookahead == '/') ADVANCE(348); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 168: ACCEPT_TOKEN(sym__node_path); - if (lookahead == '/') ADVANCE(290); + if (lookahead == '/') ADVANCE(143); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 169: ACCEPT_TOKEN(sym__node_path); - if (lookahead == '1') ADVANCE(162); + if (lookahead == '/') ADVANCE(293); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 170: ACCEPT_TOKEN(sym__node_path); - if (lookahead == 'c') ADVANCE(195); + if (lookahead == '/') ADVANCE(287); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 171: ACCEPT_TOKEN(sym__node_path); - if (lookahead == 'd') ADVANCE(180); + if (lookahead == '/') ADVANCE(294); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 172: ACCEPT_TOKEN(sym__node_path); - if (lookahead == 'd') ADVANCE(183); + if (lookahead == '1') ADVANCE(165); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 173: ACCEPT_TOKEN(sym__node_path); - if (lookahead == 'e') ADVANCE(198); + if (lookahead == 'c') ADVANCE(198); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 174: ACCEPT_TOKEN(sym__node_path); - if (lookahead == 'e') ADVANCE(194); - if (lookahead == 't') ADVANCE(213); + if (lookahead == 'd') ADVANCE(183); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 175: ACCEPT_TOKEN(sym__node_path); - if (lookahead == 'e') ADVANCE(214); + if (lookahead == 'd') ADVANCE(186); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 176: ACCEPT_TOKEN(sym__node_path); - if (lookahead == 'e') ADVANCE(208); + if (lookahead == 'e') ADVANCE(201); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 177: ACCEPT_TOKEN(sym__node_path); - if (lookahead == 'e') ADVANCE(217); + if (lookahead == 'e') ADVANCE(197); + if (lookahead == 't') ADVANCE(216); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 178: ACCEPT_TOKEN(sym__node_path); - if (lookahead == 'e') ADVANCE(188); + if (lookahead == 'e') ADVANCE(217); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 179: ACCEPT_TOKEN(sym__node_path); - if (lookahead == 'e') ADVANCE(158); + if (lookahead == 'e') ADVANCE(211); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 180: ACCEPT_TOKEN(sym__node_path); - if (lookahead == 'e') ADVANCE(164); + if (lookahead == 'e') ADVANCE(220); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 181: ACCEPT_TOKEN(sym__node_path); - if (lookahead == 'e') ADVANCE(210); + if (lookahead == 'e') ADVANCE(191); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 182: ACCEPT_TOKEN(sym__node_path); - if (lookahead == 'e') ADVANCE(165); + if (lookahead == 'e') ADVANCE(161); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 183: ACCEPT_TOKEN(sym__node_path); - if (lookahead == 'e') ADVANCE(166); + if (lookahead == 'e') ADVANCE(167); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 184: ACCEPT_TOKEN(sym__node_path); - if (lookahead == 'e') ADVANCE(157); + if (lookahead == 'e') ADVANCE(213); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 185: ACCEPT_TOKEN(sym__node_path); - if (lookahead == 'e') ADVANCE(218); + if (lookahead == 'e') ADVANCE(168); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 186: ACCEPT_TOKEN(sym__node_path); - if (lookahead == 'e') ADVANCE(196); + if (lookahead == 'e') ADVANCE(169); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 187: ACCEPT_TOKEN(sym__node_path); - if (lookahead == 'f') ADVANCE(160); + if (lookahead == 'e') ADVANCE(160); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 188: ACCEPT_TOKEN(sym__node_path); - if (lookahead == 'f') ADVANCE(167); + if (lookahead == 'e') ADVANCE(221); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 189: ACCEPT_TOKEN(sym__node_path); - if (lookahead == 'g') ADVANCE(192); + if (lookahead == 'e') ADVANCE(199); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 190: ACCEPT_TOKEN(sym__node_path); - if (lookahead == 'i') ADVANCE(216); + if (lookahead == 'f') ADVANCE(163); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 191: ACCEPT_TOKEN(sym__node_path); - if (lookahead == 'i') ADVANCE(187); + if (lookahead == 'f') ADVANCE(170); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 192: ACCEPT_TOKEN(sym__node_path); - if (lookahead == 'i') ADVANCE(202); + if (lookahead == 'g') ADVANCE(195); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 193: ACCEPT_TOKEN(sym__node_path); - if (lookahead == 'l') ADVANCE(219); + if (lookahead == 'i') ADVANCE(219); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 194: ACCEPT_TOKEN(sym__node_path); - if (lookahead == 'l') ADVANCE(177); + if (lookahead == 'i') ADVANCE(190); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 195: ACCEPT_TOKEN(sym__node_path); - if (lookahead == 'l') ADVANCE(220); + if (lookahead == 'i') ADVANCE(205); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 196: ACCEPT_TOKEN(sym__node_path); - if (lookahead == 'l') ADVANCE(185); + if (lookahead == 'l') ADVANCE(222); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 197: ACCEPT_TOKEN(sym__node_path); - if (lookahead == 'm') ADVANCE(190); + if (lookahead == 'l') ADVANCE(180); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 198: ACCEPT_TOKEN(sym__node_path); - if (lookahead == 'm') ADVANCE(209); + if (lookahead == 'l') ADVANCE(223); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 199: ACCEPT_TOKEN(sym__node_path); - if (lookahead == 'n') ADVANCE(170); + if (lookahead == 'l') ADVANCE(188); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 200: ACCEPT_TOKEN(sym__node_path); - if (lookahead == 'n') ADVANCE(206); - if (lookahead == 'p') ADVANCE(211); + if (lookahead == 'm') ADVANCE(193); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 201: ACCEPT_TOKEN(sym__node_path); - if (lookahead == 'n') ADVANCE(206); + if (lookahead == 'm') ADVANCE(212); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 202: ACCEPT_TOKEN(sym__node_path); - if (lookahead == 'n') ADVANCE(163); + if (lookahead == 'n') ADVANCE(173); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 203: ACCEPT_TOKEN(sym__node_path); - if (lookahead == 'n') ADVANCE(205); + if (lookahead == 'n') ADVANCE(209); + if (lookahead == 'p') ADVANCE(214); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 204: ACCEPT_TOKEN(sym__node_path); - if (lookahead == 'o') ADVANCE(207); + if (lookahead == 'n') ADVANCE(209); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 205: ACCEPT_TOKEN(sym__node_path); - if (lookahead == 'o') ADVANCE(161); + if (lookahead == 'n') ADVANCE(166); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 206: ACCEPT_TOKEN(sym__node_path); - if (lookahead == 'o') ADVANCE(172); + if (lookahead == 'n') ADVANCE(208); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 207: ACCEPT_TOKEN(sym__node_path); - if (lookahead == 'p') ADVANCE(181); + if (lookahead == 'o') ADVANCE(210); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 208: ACCEPT_TOKEN(sym__node_path); - if (lookahead == 'r') ADVANCE(222); + if (lookahead == 'o') ADVANCE(164); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 209: ACCEPT_TOKEN(sym__node_path); - if (lookahead == 'r') ADVANCE(175); + if (lookahead == 'o') ADVANCE(175); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 210: ACCEPT_TOKEN(sym__node_path); - if (lookahead == 'r') ADVANCE(215); + if (lookahead == 'p') ADVANCE(184); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 211: ACCEPT_TOKEN(sym__node_path); - if (lookahead == 'r') ADVANCE(204); + if (lookahead == 'r') ADVANCE(225); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 212: ACCEPT_TOKEN(sym__node_path); @@ -3883,1147 +3893,1171 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 213: ACCEPT_TOKEN(sym__node_path); - if (lookahead == 's') ADVANCE(156); + if (lookahead == 'r') ADVANCE(218); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 214: ACCEPT_TOKEN(sym__node_path); - if (lookahead == 's') ADVANCE(176); + if (lookahead == 'r') ADVANCE(207); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 215: ACCEPT_TOKEN(sym__node_path); - if (lookahead == 't') ADVANCE(223); + if (lookahead == 'r') ADVANCE(181); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 216: ACCEPT_TOKEN(sym__node_path); - if (lookahead == 't') ADVANCE(159); + if (lookahead == 's') ADVANCE(159); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 217: ACCEPT_TOKEN(sym__node_path); - if (lookahead == 't') ADVANCE(179); + if (lookahead == 's') ADVANCE(179); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 218: ACCEPT_TOKEN(sym__node_path); - if (lookahead == 't') ADVANCE(184); + if (lookahead == 't') ADVANCE(226); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 219: ACCEPT_TOKEN(sym__node_path); - if (lookahead == 'u') ADVANCE(189); + if (lookahead == 't') ADVANCE(162); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 220: ACCEPT_TOKEN(sym__node_path); - if (lookahead == 'u') ADVANCE(171); + if (lookahead == 't') ADVANCE(182); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 221: ACCEPT_TOKEN(sym__node_path); - if (lookahead == 'v') ADVANCE(169); + if (lookahead == 't') ADVANCE(187); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 222: ACCEPT_TOKEN(sym__node_path); - if (lookahead == 'v') ADVANCE(182); + if (lookahead == 'u') ADVANCE(192); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 223: ACCEPT_TOKEN(sym__node_path); - if (lookahead == 'y') ADVANCE(168); + if (lookahead == 'u') ADVANCE(174); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 224: ACCEPT_TOKEN(sym__node_path); + if (lookahead == 'v') ADVANCE(172); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 225: - ACCEPT_TOKEN(sym__node_or_property); - if (lookahead == '#') ADVANCE(267); - if (('+' <= lookahead && lookahead <= '.') || - ('0' <= lookahead && lookahead <= '9') || + ACCEPT_TOKEN(sym__node_path); + if (lookahead == 'v') ADVANCE(185); + if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(225); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 226: - ACCEPT_TOKEN(sym__node_or_property); - if (('+' <= lookahead && lookahead <= '.') || - ('0' <= lookahead && lookahead <= '9') || + ACCEPT_TOKEN(sym__node_path); + if (lookahead == 'y') ADVANCE(171); + if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(226); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 227: - ACCEPT_TOKEN(sym__property_with_hash); - if (lookahead == '#') ADVANCE(267); - if (lookahead == 'c') ADVANCE(261); - if (('+' <= lookahead && lookahead <= '.') || - ('0' <= lookahead && lookahead <= '9') || + ACCEPT_TOKEN(sym__node_path); + if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(267); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 228: - ACCEPT_TOKEN(sym__property_with_hash); - if (lookahead == '#') ADVANCE(267); - if (lookahead == 'd') ADVANCE(240); - if (lookahead == 'e') ADVANCE(260); - if (lookahead == 'i') ADVANCE(254); - if (lookahead == 'u') ADVANCE(264); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(74); + ACCEPT_TOKEN(sym__node_or_property); + if (lookahead == '#') ADVANCE(270); if (('+' <= lookahead && lookahead <= '.') || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(267); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(228); END_STATE(); case 229: - ACCEPT_TOKEN(sym__property_with_hash); - if (lookahead == '#') ADVANCE(267); - if (lookahead == 'd') ADVANCE(240); - if (lookahead == 'e') ADVANCE(263); - if (lookahead == 'i') ADVANCE(254); - if (lookahead == 'u') ADVANCE(264); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(75); + ACCEPT_TOKEN(sym__node_or_property); if (('+' <= lookahead && lookahead <= '.') || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(267); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(229); END_STATE(); case 230: ACCEPT_TOKEN(sym__property_with_hash); - if (lookahead == '#') ADVANCE(267); - if (lookahead == 'd') ADVANCE(240); - if (lookahead == 'e') ADVANCE(262); - if (lookahead == 'i') ADVANCE(254); - if (lookahead == 'u') ADVANCE(264); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(76); + if (lookahead == '#') ADVANCE(270); + if (lookahead == 'c') ADVANCE(264); if (('+' <= lookahead && lookahead <= '.') || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(267); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(270); END_STATE(); case 231: ACCEPT_TOKEN(sym__property_with_hash); - if (lookahead == '#') ADVANCE(267); - if (lookahead == 'd') ADVANCE(240); - if (lookahead == 'i') ADVANCE(254); - if (lookahead == 'u') ADVANCE(264); + if (lookahead == '#') ADVANCE(270); + if (lookahead == 'd') ADVANCE(243); + if (lookahead == 'e') ADVANCE(263); + if (lookahead == 'i') ADVANCE(257); + if (lookahead == 'u') ADVANCE(267); if (lookahead == '\t' || lookahead == ' ') ADVANCE(77); if (('+' <= lookahead && lookahead <= '.') || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(267); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(270); END_STATE(); case 232: ACCEPT_TOKEN(sym__property_with_hash); - if (lookahead == '#') ADVANCE(267); - if (lookahead == 'd') ADVANCE(258); + if (lookahead == '#') ADVANCE(270); + if (lookahead == 'd') ADVANCE(243); + if (lookahead == 'e') ADVANCE(266); + if (lookahead == 'i') ADVANCE(257); + if (lookahead == 'u') ADVANCE(267); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(78); if (('+' <= lookahead && lookahead <= '.') || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(267); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(270); END_STATE(); case 233: ACCEPT_TOKEN(sym__property_with_hash); - if (lookahead == '#') ADVANCE(267); - if (lookahead == 'd') ADVANCE(239); + if (lookahead == '#') ADVANCE(270); + if (lookahead == 'd') ADVANCE(243); + if (lookahead == 'e') ADVANCE(265); + if (lookahead == 'i') ADVANCE(257); + if (lookahead == 'u') ADVANCE(267); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(79); if (('+' <= lookahead && lookahead <= '.') || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(267); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(270); END_STATE(); case 234: ACCEPT_TOKEN(sym__property_with_hash); - if (lookahead == '#') ADVANCE(267); - if (lookahead == 'd') ADVANCE(242); + if (lookahead == '#') ADVANCE(270); + if (lookahead == 'd') ADVANCE(243); + if (lookahead == 'i') ADVANCE(257); + if (lookahead == 'u') ADVANCE(267); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(80); if (('+' <= lookahead && lookahead <= '.') || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(267); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(270); END_STATE(); case 235: ACCEPT_TOKEN(sym__property_with_hash); - if (lookahead == '#') ADVANCE(267); - if (lookahead == 'd') ADVANCE(243); + if (lookahead == '#') ADVANCE(270); + if (lookahead == 'd') ADVANCE(261); if (('+' <= lookahead && lookahead <= '.') || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(267); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(270); END_STATE(); case 236: ACCEPT_TOKEN(sym__property_with_hash); - if (lookahead == '#') ADVANCE(267); - if (lookahead == 'd') ADVANCE(245); + if (lookahead == '#') ADVANCE(270); + if (lookahead == 'd') ADVANCE(242); if (('+' <= lookahead && lookahead <= '.') || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(267); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(270); END_STATE(); case 237: ACCEPT_TOKEN(sym__property_with_hash); - if (lookahead == '#') ADVANCE(267); - if (lookahead == 'e') ADVANCE(371); + if (lookahead == '#') ADVANCE(270); + if (lookahead == 'd') ADVANCE(245); if (('+' <= lookahead && lookahead <= '.') || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(267); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(270); END_STATE(); case 238: ACCEPT_TOKEN(sym__property_with_hash); - if (lookahead == '#') ADVANCE(267); - if (lookahead == 'e') ADVANCE(348); + if (lookahead == '#') ADVANCE(270); + if (lookahead == 'd') ADVANCE(246); if (('+' <= lookahead && lookahead <= '.') || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(267); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(270); END_STATE(); case 239: ACCEPT_TOKEN(sym__property_with_hash); - if (lookahead == '#') ADVANCE(267); - if (lookahead == 'e') ADVANCE(346); + if (lookahead == '#') ADVANCE(270); + if (lookahead == 'd') ADVANCE(248); if (('+' <= lookahead && lookahead <= '.') || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(267); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(270); END_STATE(); case 240: ACCEPT_TOKEN(sym__property_with_hash); - if (lookahead == '#') ADVANCE(267); - if (lookahead == 'e') ADVANCE(253); + if (lookahead == '#') ADVANCE(270); + if (lookahead == 'e') ADVANCE(374); if (('+' <= lookahead && lookahead <= '.') || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(267); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(270); END_STATE(); case 241: ACCEPT_TOKEN(sym__property_with_hash); - if (lookahead == '#') ADVANCE(267); - if (lookahead == 'e') ADVANCE(247); + if (lookahead == '#') ADVANCE(270); + if (lookahead == 'e') ADVANCE(351); if (('+' <= lookahead && lookahead <= '.') || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(267); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(270); END_STATE(); case 242: ACCEPT_TOKEN(sym__property_with_hash); - if (lookahead == '#') ADVANCE(267); - if (lookahead == 'e') ADVANCE(248); + if (lookahead == '#') ADVANCE(270); + if (lookahead == 'e') ADVANCE(349); if (('+' <= lookahead && lookahead <= '.') || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(267); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(270); END_STATE(); case 243: ACCEPT_TOKEN(sym__property_with_hash); - if (lookahead == '#') ADVANCE(267); - if (lookahead == 'e') ADVANCE(249); + if (lookahead == '#') ADVANCE(270); + if (lookahead == 'e') ADVANCE(256); if (('+' <= lookahead && lookahead <= '.') || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(267); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(270); END_STATE(); case 244: ACCEPT_TOKEN(sym__property_with_hash); - if (lookahead == '#') ADVANCE(267); + if (lookahead == '#') ADVANCE(270); if (lookahead == 'e') ADVANCE(250); if (('+' <= lookahead && lookahead <= '.') || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(267); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(270); END_STATE(); case 245: ACCEPT_TOKEN(sym__property_with_hash); - if (lookahead == '#') ADVANCE(267); + if (lookahead == '#') ADVANCE(270); if (lookahead == 'e') ADVANCE(251); if (('+' <= lookahead && lookahead <= '.') || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(267); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(270); END_STATE(); case 246: ACCEPT_TOKEN(sym__property_with_hash); - if (lookahead == '#') ADVANCE(267); - if (lookahead == 'f') ADVANCE(368); + if (lookahead == '#') ADVANCE(270); + if (lookahead == 'e') ADVANCE(252); if (('+' <= lookahead && lookahead <= '.') || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(267); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(270); END_STATE(); case 247: ACCEPT_TOKEN(sym__property_with_hash); - if (lookahead == '#') ADVANCE(267); - if (lookahead == 'f') ADVANCE(369); + if (lookahead == '#') ADVANCE(270); + if (lookahead == 'e') ADVANCE(253); if (('+' <= lookahead && lookahead <= '.') || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(267); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(270); END_STATE(); case 248: ACCEPT_TOKEN(sym__property_with_hash); - if (lookahead == '#') ADVANCE(267); - if (lookahead == 'f') ADVANCE(351); + if (lookahead == '#') ADVANCE(270); + if (lookahead == 'e') ADVANCE(254); if (('+' <= lookahead && lookahead <= '.') || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(267); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(270); END_STATE(); case 249: ACCEPT_TOKEN(sym__property_with_hash); - if (lookahead == '#') ADVANCE(267); - if (lookahead == 'f') ADVANCE(370); + if (lookahead == '#') ADVANCE(270); + if (lookahead == 'f') ADVANCE(371); if (('+' <= lookahead && lookahead <= '.') || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(267); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(270); END_STATE(); case 250: ACCEPT_TOKEN(sym__property_with_hash); - if (lookahead == '#') ADVANCE(267); - if (lookahead == 'f') ADVANCE(375); + if (lookahead == '#') ADVANCE(270); + if (lookahead == 'f') ADVANCE(372); if (('+' <= lookahead && lookahead <= '.') || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(267); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(270); END_STATE(); case 251: ACCEPT_TOKEN(sym__property_with_hash); - if (lookahead == '#') ADVANCE(267); - if (lookahead == 'f') ADVANCE(376); + if (lookahead == '#') ADVANCE(270); + if (lookahead == 'f') ADVANCE(354); if (('+' <= lookahead && lookahead <= '.') || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(267); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(270); END_STATE(); case 252: ACCEPT_TOKEN(sym__property_with_hash); - if (lookahead == '#') ADVANCE(267); - if (lookahead == 'f') ADVANCE(372); + if (lookahead == '#') ADVANCE(270); + if (lookahead == 'f') ADVANCE(373); if (('+' <= lookahead && lookahead <= '.') || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(267); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(270); END_STATE(); case 253: ACCEPT_TOKEN(sym__property_with_hash); - if (lookahead == '#') ADVANCE(267); - if (lookahead == 'f') ADVANCE(256); + if (lookahead == '#') ADVANCE(270); + if (lookahead == 'f') ADVANCE(378); if (('+' <= lookahead && lookahead <= '.') || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(267); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(270); END_STATE(); case 254: ACCEPT_TOKEN(sym__property_with_hash); - if (lookahead == '#') ADVANCE(267); - if (lookahead == 'f') ADVANCE(366); - if (lookahead == 'n') ADVANCE(227); + if (lookahead == '#') ADVANCE(270); + if (lookahead == 'f') ADVANCE(379); if (('+' <= lookahead && lookahead <= '.') || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(267); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(270); END_STATE(); case 255: ACCEPT_TOKEN(sym__property_with_hash); - if (lookahead == '#') ADVANCE(267); - if (lookahead == 'f') ADVANCE(374); + if (lookahead == '#') ADVANCE(270); + if (lookahead == 'f') ADVANCE(375); if (('+' <= lookahead && lookahead <= '.') || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(267); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(270); END_STATE(); case 256: ACCEPT_TOKEN(sym__property_with_hash); - if (lookahead == '#') ADVANCE(267); - if (lookahead == 'i') ADVANCE(265); + if (lookahead == '#') ADVANCE(270); + if (lookahead == 'f') ADVANCE(259); if (('+' <= lookahead && lookahead <= '.') || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(267); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(270); END_STATE(); case 257: ACCEPT_TOKEN(sym__property_with_hash); - if (lookahead == '#') ADVANCE(267); - if (lookahead == 'i') ADVANCE(255); - if (lookahead == 's') ADVANCE(237); + if (lookahead == '#') ADVANCE(270); + if (lookahead == 'f') ADVANCE(369); + if (lookahead == 'n') ADVANCE(230); if (('+' <= lookahead && lookahead <= '.') || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(267); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(270); END_STATE(); case 258: ACCEPT_TOKEN(sym__property_with_hash); - if (lookahead == '#') ADVANCE(267); - if (lookahead == 'i') ADVANCE(246); + if (lookahead == '#') ADVANCE(270); + if (lookahead == 'f') ADVANCE(377); if (('+' <= lookahead && lookahead <= '.') || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(267); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(270); END_STATE(); case 259: ACCEPT_TOKEN(sym__property_with_hash); - if (lookahead == '#') ADVANCE(267); - if (lookahead == 'i') ADVANCE(252); - if (lookahead == 's') ADVANCE(237); + if (lookahead == '#') ADVANCE(270); + if (lookahead == 'i') ADVANCE(268); if (('+' <= lookahead && lookahead <= '.') || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(267); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(270); END_STATE(); case 260: ACCEPT_TOKEN(sym__property_with_hash); - if (lookahead == '#') ADVANCE(267); - if (lookahead == 'l') ADVANCE(257); - if (lookahead == 'n') ADVANCE(232); + if (lookahead == '#') ADVANCE(270); + if (lookahead == 'i') ADVANCE(258); + if (lookahead == 's') ADVANCE(240); if (('+' <= lookahead && lookahead <= '.') || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(267); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(270); END_STATE(); case 261: ACCEPT_TOKEN(sym__property_with_hash); - if (lookahead == '#') ADVANCE(267); - if (lookahead == 'l') ADVANCE(266); + if (lookahead == '#') ADVANCE(270); + if (lookahead == 'i') ADVANCE(249); if (('+' <= lookahead && lookahead <= '.') || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(267); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(270); END_STATE(); case 262: ACCEPT_TOKEN(sym__property_with_hash); - if (lookahead == '#') ADVANCE(267); - if (lookahead == 'l') ADVANCE(259); - if (lookahead == 'n') ADVANCE(232); + if (lookahead == '#') ADVANCE(270); + if (lookahead == 'i') ADVANCE(255); + if (lookahead == 's') ADVANCE(240); if (('+' <= lookahead && lookahead <= '.') || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(267); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(270); END_STATE(); case 263: ACCEPT_TOKEN(sym__property_with_hash); - if (lookahead == '#') ADVANCE(267); - if (lookahead == 'n') ADVANCE(232); + if (lookahead == '#') ADVANCE(270); + if (lookahead == 'l') ADVANCE(260); + if (lookahead == 'n') ADVANCE(235); if (('+' <= lookahead && lookahead <= '.') || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(267); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(270); END_STATE(); case 264: ACCEPT_TOKEN(sym__property_with_hash); - if (lookahead == '#') ADVANCE(267); - if (lookahead == 'n') ADVANCE(234); + if (lookahead == '#') ADVANCE(270); + if (lookahead == 'l') ADVANCE(269); if (('+' <= lookahead && lookahead <= '.') || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(267); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(270); END_STATE(); case 265: ACCEPT_TOKEN(sym__property_with_hash); - if (lookahead == '#') ADVANCE(267); - if (lookahead == 'n') ADVANCE(238); + if (lookahead == '#') ADVANCE(270); + if (lookahead == 'l') ADVANCE(262); + if (lookahead == 'n') ADVANCE(235); if (('+' <= lookahead && lookahead <= '.') || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(267); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(270); END_STATE(); case 266: ACCEPT_TOKEN(sym__property_with_hash); - if (lookahead == '#') ADVANCE(267); - if (lookahead == 'u') ADVANCE(233); + if (lookahead == '#') ADVANCE(270); + if (lookahead == 'n') ADVANCE(235); if (('+' <= lookahead && lookahead <= '.') || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(267); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(270); END_STATE(); case 267: ACCEPT_TOKEN(sym__property_with_hash); - if (lookahead == '#') ADVANCE(267); + if (lookahead == '#') ADVANCE(270); + if (lookahead == 'n') ADVANCE(237); if (('+' <= lookahead && lookahead <= '.') || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(267); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(270); END_STATE(); case 268: - ACCEPT_TOKEN(sym__property_starts_with_number); - if (lookahead == '#') ADVANCE(267); + ACCEPT_TOKEN(sym__property_with_hash); + if (lookahead == '#') ADVANCE(270); + if (lookahead == 'n') ADVANCE(241); if (('+' <= lookahead && lookahead <= '.') || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(268); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(270); END_STATE(); case 269: + ACCEPT_TOKEN(sym__property_with_hash); + if (lookahead == '#') ADVANCE(270); + if (lookahead == 'u') ADVANCE(236); + if (('+' <= lookahead && lookahead <= '.') || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(270); + END_STATE(); + case 270: + ACCEPT_TOKEN(sym__property_with_hash); + if (lookahead == '#') ADVANCE(270); + if (('+' <= lookahead && lookahead <= '.') || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(270); + END_STATE(); + case 271: + ACCEPT_TOKEN(sym__property_starts_with_number); + if (lookahead == '#') ADVANCE(270); + if (('+' <= lookahead && lookahead <= '.') || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(271); + END_STATE(); + case 272: ACCEPT_TOKEN(sym__property_starts_with_number); - if (lookahead == '\'') ADVANCE(119); - if (lookahead == 'b') ADVANCE(272); - if (lookahead == 'x') ADVANCE(273); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(270); + if (lookahead == '\'') ADVANCE(122); + if (lookahead == 'b') ADVANCE(275); + if (lookahead == 'x') ADVANCE(276); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(273); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(274); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(277); if (lookahead == '#' || ('+' <= lookahead && lookahead <= '.') || ('G' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(278); END_STATE(); - case 270: + case 273: ACCEPT_TOKEN(sym__property_starts_with_number); - if (lookahead == '\'') ADVANCE(119); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(270); + if (lookahead == '\'') ADVANCE(122); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(273); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(274); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(277); if (lookahead == '#' || ('+' <= lookahead && lookahead <= '.') || ('G' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(278); END_STATE(); - case 271: + case 274: ACCEPT_TOKEN(sym__property_starts_with_number); - if (lookahead == '\'') ADVANCE(120); + if (lookahead == '\'') ADVANCE(123); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(271); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(274); if (lookahead == '#' || ('+' <= lookahead && lookahead <= '.') || ('G' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(278); END_STATE(); - case 272: + case 275: ACCEPT_TOKEN(sym__property_starts_with_number); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(270); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(273); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(274); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(277); if (lookahead == '#' || ('+' <= lookahead && lookahead <= '.') || ('G' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(278); END_STATE(); - case 273: + case 276: ACCEPT_TOKEN(sym__property_starts_with_number); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(271); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(274); if (lookahead == '#' || ('+' <= lookahead && lookahead <= '.') || ('G' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(278); END_STATE(); - case 274: + case 277: ACCEPT_TOKEN(sym__property_starts_with_number); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(274); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(277); if (lookahead == '#' || ('+' <= lookahead && lookahead <= '.') || ('G' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(278); END_STATE(); - case 275: + case 278: ACCEPT_TOKEN(sym__property_starts_with_number); if (lookahead == '#' || ('+' <= lookahead && lookahead <= '.') || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(278); END_STATE(); - case 276: + case 279: ACCEPT_TOKEN(sym_unit_address); if (('+' <= lookahead && lookahead <= '.') || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(276); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(279); END_STATE(); - case 277: + case 280: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(336); + if (lookahead == '&') ADVANCE(339); END_STATE(); - case 278: + case 281: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(336); - if (lookahead == '{') ADVANCE(280); + if (lookahead == '&') ADVANCE(339); + if (lookahead == '{') ADVANCE(285); END_STATE(); - case 279: + case 282: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '{') ADVANCE(280); + if (lookahead == '{') ADVANCE(285); END_STATE(); - case 280: - ACCEPT_TOKEN(anon_sym_AMP_LBRACE); + case 283: + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(60); + if (lookahead == '/') ADVANCE(147); END_STATE(); - case 281: + case 284: ACCEPT_TOKEN(anon_sym_AT); END_STATE(); - case 282: + case 285: + ACCEPT_TOKEN(anon_sym_AMP_LBRACE); + END_STATE(); + case 286: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 283: + case 287: ACCEPT_TOKEN(anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); - case 284: + case 288: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 285: + case 289: ACCEPT_TOKEN(anon_sym_SLASHbits_SLASH); END_STATE(); - case 286: + case 290: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 287: + case 291: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(339); + if (lookahead == '=') ADVANCE(342); END_STATE(); - case 288: + case 292: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 289: + case 293: ACCEPT_TOKEN(anon_sym_SLASHdelete_DASHnode_SLASH); END_STATE(); - case 290: + case 294: ACCEPT_TOKEN(anon_sym_SLASHdelete_DASHproperty_SLASH); END_STATE(); - case 291: + case 295: ACCEPT_TOKEN(anon_sym_SLASHincbin_SLASH); END_STATE(); - case 292: + case 296: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 293: + case 297: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 294: + case 298: ACCEPT_TOKEN(anon_sym_LT); END_STATE(); - case 295: + case 299: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(343); - if (lookahead == '=') ADVANCE(342); + if (lookahead == '<') ADVANCE(346); + if (lookahead == '=') ADVANCE(345); END_STATE(); - case 296: + case 300: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(341); - if (lookahead == '>') ADVANCE(344); + if (lookahead == '=') ADVANCE(344); + if (lookahead == '>') ADVANCE(347); END_STATE(); - case 297: + case 301: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 298: + case 302: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(300); - if (lookahead == '/') ADVANCE(302); + if (lookahead == '*') ADVANCE(304); + if (lookahead == '/') ADVANCE(306); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(302); + lookahead != '\\') ADVANCE(306); END_STATE(); - case 299: + case 303: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(299); - if (lookahead == '/') ADVANCE(302); + if (lookahead == '*') ADVANCE(303); + if (lookahead == '/') ADVANCE(306); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(300); + lookahead != '\\') ADVANCE(304); END_STATE(); - case 300: + case 304: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(299); + if (lookahead == '*') ADVANCE(303); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(300); + lookahead != '\\') ADVANCE(304); END_STATE(); - case 301: + case 305: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '/') ADVANCE(298); + if (lookahead == '/') ADVANCE(302); if (lookahead == '\t' || (0x0b <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(301); + lookahead == ' ') ADVANCE(305); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != '"' && - lookahead != '\\') ADVANCE(302); + lookahead != '\\') ADVANCE(306); END_STATE(); - case 302: + case 306: ACCEPT_TOKEN(aux_sym_string_literal_token1); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(302); + lookahead != '\\') ADVANCE(306); END_STATE(); - case 303: + case 307: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 304: + case 308: ACCEPT_TOKEN(sym_escape_sequence); if (lookahead == '\\') ADVANCE(24); END_STATE(); - case 305: + case 309: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(303); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(307); END_STATE(); - case 306: + case 310: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(305); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(309); END_STATE(); - case 307: + case 311: ACCEPT_TOKEN(sym_system_lib_string); END_STATE(); - case 308: + case 312: ACCEPT_TOKEN(sym_system_lib_string); - if (lookahead == '>') ADVANCE(307); - if (lookahead == '\\') ADVANCE(70); + if (lookahead == '>') ADVANCE(311); + if (lookahead == '\\') ADVANCE(73); if (lookahead != 0 && - lookahead != '\n') ADVANCE(69); + lookahead != '\n') ADVANCE(72); END_STATE(); - case 309: + case 313: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 310: + case 314: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 311: + case 315: ACCEPT_TOKEN(sym__byte_string_item); - if (lookahead == 'e') ADVANCE(312); + if (lookahead == 'e') ADVANCE(316); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(314); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(318); if (('G' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(325); + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(329); END_STATE(); - case 312: + case 316: ACCEPT_TOKEN(sym__byte_string_item); - if (lookahead == 'f') ADVANCE(313); + if (lookahead == 'f') ADVANCE(317); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(314); + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(318); if (('G' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(325); + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(329); END_STATE(); - case 313: + case 317: ACCEPT_TOKEN(sym__byte_string_item); - if (lookahead == 'i') ADVANCE(324); + if (lookahead == 'i') ADVANCE(328); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(314); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(318); if (('G' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(325); + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(329); END_STATE(); - case 314: + case 318: ACCEPT_TOKEN(sym__byte_string_item); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(314); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(318); if (('G' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(325); + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(329); END_STATE(); - case 315: + case 319: ACCEPT_TOKEN(sym__byte_string_item); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(315); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(319); END_STATE(); - case 316: + case 320: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == '\'') ADVANCE(119); - if (lookahead == 'b') ADVANCE(119); - if (lookahead == 'x') ADVANCE(120); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(317); + if (lookahead == '\'') ADVANCE(122); + if (lookahead == 'b') ADVANCE(122); + if (lookahead == 'x') ADVANCE(123); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(321); END_STATE(); - case 317: + case 321: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == '\'') ADVANCE(119); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(317); + if (lookahead == '\'') ADVANCE(122); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(321); END_STATE(); - case 318: + case 322: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == '\'') ADVANCE(120); + if (lookahead == '\'') ADVANCE(123); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(318); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(322); END_STATE(); - case 319: + case 323: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(377); + if (lookahead == 'd') ADVANCE(380); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(325); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(329); END_STATE(); - case 320: + case 324: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(319); + if (lookahead == 'e') ADVANCE(323); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(325); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(329); END_STATE(); - case 321: + case 325: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(322); + if (lookahead == 'e') ADVANCE(326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(325); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(329); END_STATE(); - case 322: + case 326: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'f') ADVANCE(323); + if (lookahead == 'f') ADVANCE(327); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(325); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(329); END_STATE(); - case 323: + case 327: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(324); + if (lookahead == 'i') ADVANCE(328); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(325); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(329); END_STATE(); - case 324: + case 328: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(320); + if (lookahead == 'n') ADVANCE(324); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(325); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(329); END_STATE(); - case 325: + case 329: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(325); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(329); END_STATE(); - case 326: + case 330: ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); - case 327: + case 331: ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); - case 328: + case 332: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(340); + if (lookahead == '=') ADVANCE(343); END_STATE(); - case 329: + case 333: ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); - case 330: + case 334: ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 331: + case 335: ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); - case 332: + case 336: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 333: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(58); - if (lookahead == '/') ADVANCE(144); - END_STATE(); - case 334: + case 337: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 335: + case 338: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); - case 336: + case 339: ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); - case 337: + case 340: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(335); + if (lookahead == '|') ADVANCE(338); END_STATE(); - case 338: + case 341: ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); - case 339: + case 342: ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); - case 340: + case 343: ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); - case 341: + case 344: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 342: + case 345: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 343: + case 346: ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); - case 344: + case 347: ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); - case 345: + case 348: ACCEPT_TOKEN(anon_sym_SLASHinclude_SLASH); if (('+' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); - END_STATE(); - case 346: - ACCEPT_TOKEN(aux_sym_preproc_include_token1); - END_STATE(); - case 347: - ACCEPT_TOKEN(aux_sym_preproc_include_token2); - END_STATE(); - case 348: - ACCEPT_TOKEN(aux_sym_preproc_def_token1); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 349: - ACCEPT_TOKEN(anon_sym_LPAREN2); + ACCEPT_TOKEN(aux_sym_preproc_include_token1); END_STATE(); case 350: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + ACCEPT_TOKEN(aux_sym_preproc_include_token2); END_STATE(); case 351: - ACCEPT_TOKEN(aux_sym_preproc_undef_token1); + ACCEPT_TOKEN(aux_sym_preproc_def_token1); END_STATE(); case 352: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') ADVANCE(58); - if (lookahead == '*') ADVANCE(352); - if (lookahead == '/') ADVANCE(141); - if (lookahead == '\\') ADVANCE(359); - if (lookahead != 0) ADVANCE(353); + ACCEPT_TOKEN(anon_sym_LPAREN2); END_STATE(); case 353: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') ADVANCE(58); - if (lookahead == '*') ADVANCE(352); - if (lookahead == '\\') ADVANCE(359); - if (lookahead != 0) ADVANCE(353); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); case 354: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') ADVANCE(347); - if (lookahead == '/') ADVANCE(361); - if (lookahead == '\\') ADVANCE(355); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(357); - if (lookahead != 0) ADVANCE(363); + ACCEPT_TOKEN(aux_sym_preproc_undef_token1); END_STATE(); case 355: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') ADVANCE(357); - if (lookahead == '\r') ADVANCE(356); - if (lookahead == '\\') ADVANCE(358); - if (lookahead != 0) ADVANCE(363); + if (lookahead == '\n') ADVANCE(60); + if (lookahead == '*') ADVANCE(355); + if (lookahead == '/') ADVANCE(144); + if (lookahead == '\\') ADVANCE(362); + if (lookahead != 0) ADVANCE(356); END_STATE(); case 356: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') ADVANCE(357); - if (lookahead == '\\') ADVANCE(358); - if (lookahead != 0) ADVANCE(363); + if (lookahead == '\n') ADVANCE(60); + if (lookahead == '*') ADVANCE(355); + if (lookahead == '\\') ADVANCE(362); + if (lookahead != 0) ADVANCE(356); END_STATE(); case 357: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') SKIP(22); - if (lookahead == '/') ADVANCE(361); - if (lookahead == '\\') ADVANCE(355); + if (lookahead == '\n') ADVANCE(350); + if (lookahead == '/') ADVANCE(364); + if (lookahead == '\\') ADVANCE(358); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(357); - if (lookahead != 0) ADVANCE(363); + lookahead == ' ') ADVANCE(360); + if (lookahead != 0) ADVANCE(366); END_STATE(); case 358: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\r') ADVANCE(364); - if (lookahead == '\\') ADVANCE(358); - if (lookahead != 0) ADVANCE(363); + if (lookahead == '\n') ADVANCE(360); + if (lookahead == '\r') ADVANCE(359); + if (lookahead == '\\') ADVANCE(361); + if (lookahead != 0) ADVANCE(366); END_STATE(); case 359: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\r') ADVANCE(362); - if (lookahead == '*') ADVANCE(352); - if (lookahead == '\\') ADVANCE(359); - if (lookahead != 0) ADVANCE(353); + if (lookahead == '\n') ADVANCE(360); + if (lookahead == '\\') ADVANCE(361); + if (lookahead != 0) ADVANCE(366); END_STATE(); case 360: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\r') ADVANCE(147); - if (lookahead == '\\') ADVANCE(142); - if (lookahead != 0) ADVANCE(146); + if (lookahead == '\n') SKIP(22); + if (lookahead == '/') ADVANCE(364); + if (lookahead == '\\') ADVANCE(358); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(360); + if (lookahead != 0) ADVANCE(366); END_STATE(); case 361: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '*') ADVANCE(353); - if (lookahead == '/') ADVANCE(146); - if (lookahead == '\\') ADVANCE(358); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(363); + if (lookahead == '\r') ADVANCE(367); + if (lookahead == '\\') ADVANCE(361); + if (lookahead != 0) ADVANCE(366); END_STATE(); case 362: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '*') ADVANCE(352); - if (lookahead == '\\') ADVANCE(359); - if (lookahead != 0) ADVANCE(353); + if (lookahead == '\r') ADVANCE(365); + if (lookahead == '*') ADVANCE(355); + if (lookahead == '\\') ADVANCE(362); + if (lookahead != 0) ADVANCE(356); END_STATE(); case 363: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\\') ADVANCE(358); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(363); + if (lookahead == '\r') ADVANCE(150); + if (lookahead == '\\') ADVANCE(145); + if (lookahead != 0) ADVANCE(149); END_STATE(); case 364: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\\') ADVANCE(358); - if (lookahead != 0) ADVANCE(363); + if (lookahead == '*') ADVANCE(356); + if (lookahead == '/') ADVANCE(149); + if (lookahead == '\\') ADVANCE(361); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(366); END_STATE(); case 365: - ACCEPT_TOKEN(aux_sym_preproc_if_token1); - if (lookahead == 'd') ADVANCE(87); - if (lookahead == 'n') ADVANCE(81); + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '*') ADVANCE(355); + if (lookahead == '\\') ADVANCE(362); + if (lookahead != 0) ADVANCE(356); END_STATE(); case 366: - ACCEPT_TOKEN(aux_sym_preproc_if_token1); - if (lookahead == 'd') ADVANCE(241); - if (lookahead == 'n') ADVANCE(235); + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '\\') ADVANCE(361); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(366); END_STATE(); case 367: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(367); + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '\\') ADVANCE(361); + if (lookahead != 0) ADVANCE(366); END_STATE(); case 368: - ACCEPT_TOKEN(aux_sym_preproc_if_token2); + ACCEPT_TOKEN(aux_sym_preproc_if_token1); + if (lookahead == 'd') ADVANCE(90); + if (lookahead == 'n') ADVANCE(84); END_STATE(); case 369: - ACCEPT_TOKEN(aux_sym_preproc_ifdef_token1); + ACCEPT_TOKEN(aux_sym_preproc_if_token1); + if (lookahead == 'd') ADVANCE(244); + if (lookahead == 'n') ADVANCE(238); END_STATE(); case 370: - ACCEPT_TOKEN(aux_sym_preproc_ifdef_token2); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(370); END_STATE(); case 371: - ACCEPT_TOKEN(aux_sym_preproc_else_token1); + ACCEPT_TOKEN(aux_sym_preproc_if_token2); END_STATE(); case 372: - ACCEPT_TOKEN(aux_sym_preproc_elif_token1); + ACCEPT_TOKEN(aux_sym_preproc_ifdef_token1); END_STATE(); case 373: - ACCEPT_TOKEN(aux_sym_preproc_elif_token1); - if (lookahead == 'd') ADVANCE(90); - if (lookahead == 'n') ADVANCE(82); + ACCEPT_TOKEN(aux_sym_preproc_ifdef_token2); END_STATE(); case 374: - ACCEPT_TOKEN(aux_sym_preproc_elif_token1); - if (lookahead == 'd') ADVANCE(244); - if (lookahead == 'n') ADVANCE(236); + ACCEPT_TOKEN(aux_sym_preproc_else_token1); END_STATE(); case 375: - ACCEPT_TOKEN(aux_sym_preproc_elifdef_token1); + ACCEPT_TOKEN(aux_sym_preproc_elif_token1); END_STATE(); case 376: - ACCEPT_TOKEN(aux_sym_preproc_elifdef_token2); + ACCEPT_TOKEN(aux_sym_preproc_elif_token1); + if (lookahead == 'd') ADVANCE(93); + if (lookahead == 'n') ADVANCE(85); END_STATE(); case 377: + ACCEPT_TOKEN(aux_sym_preproc_elif_token1); + if (lookahead == 'd') ADVANCE(247); + if (lookahead == 'n') ADVANCE(239); + END_STATE(); + case 378: + ACCEPT_TOKEN(aux_sym_preproc_elifdef_token1); + END_STATE(); + case 379: + ACCEPT_TOKEN(aux_sym_preproc_elifdef_token2); + END_STATE(); + case 380: ACCEPT_TOKEN(anon_sym_defined); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(325); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(329); END_STATE(); default: return false; @@ -5032,784 +5066,784 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, - [1] = {.lex_state = 134}, - [2] = {.lex_state = 134}, - [3] = {.lex_state = 134}, - [4] = {.lex_state = 134}, - [5] = {.lex_state = 134}, - [6] = {.lex_state = 134}, - [7] = {.lex_state = 51}, - [8] = {.lex_state = 46}, - [9] = {.lex_state = 51}, - [10] = {.lex_state = 51}, - [11] = {.lex_state = 46}, - [12] = {.lex_state = 51}, - [13] = {.lex_state = 51}, - [14] = {.lex_state = 51}, - [15] = {.lex_state = 46}, - [16] = {.lex_state = 51}, - [17] = {.lex_state = 46}, - [18] = {.lex_state = 51}, - [19] = {.lex_state = 46}, - [20] = {.lex_state = 46}, - [21] = {.lex_state = 46}, - [22] = {.lex_state = 46}, - [23] = {.lex_state = 51}, - [24] = {.lex_state = 52}, - [25] = {.lex_state = 52}, - [26] = {.lex_state = 52}, - [27] = {.lex_state = 52}, - [28] = {.lex_state = 52}, - [29] = {.lex_state = 46}, - [30] = {.lex_state = 52}, - [31] = {.lex_state = 52}, - [32] = {.lex_state = 52}, - [33] = {.lex_state = 52}, - [34] = {.lex_state = 52}, - [35] = {.lex_state = 134}, - [36] = {.lex_state = 134}, - [37] = {.lex_state = 134}, - [38] = {.lex_state = 52}, - [39] = {.lex_state = 49}, - [40] = {.lex_state = 49}, - [41] = {.lex_state = 49}, - [42] = {.lex_state = 49}, - [43] = {.lex_state = 50}, - [44] = {.lex_state = 49}, - [45] = {.lex_state = 49}, - [46] = {.lex_state = 49}, - [47] = {.lex_state = 50}, - [48] = {.lex_state = 49}, - [49] = {.lex_state = 49}, - [50] = {.lex_state = 49}, - [51] = {.lex_state = 49}, - [52] = {.lex_state = 49}, - [53] = {.lex_state = 49}, - [54] = {.lex_state = 50}, - [55] = {.lex_state = 49}, - [56] = {.lex_state = 49}, - [57] = {.lex_state = 49}, - [58] = {.lex_state = 49}, - [59] = {.lex_state = 49}, - [60] = {.lex_state = 49}, - [61] = {.lex_state = 49}, - [62] = {.lex_state = 49}, - [63] = {.lex_state = 49}, - [64] = {.lex_state = 49}, - [65] = {.lex_state = 49}, - [66] = {.lex_state = 49}, - [67] = {.lex_state = 49}, - [68] = {.lex_state = 49}, - [69] = {.lex_state = 49}, - [70] = {.lex_state = 49}, - [71] = {.lex_state = 49}, - [72] = {.lex_state = 49}, - [73] = {.lex_state = 49}, - [74] = {.lex_state = 49}, - [75] = {.lex_state = 49}, - [76] = {.lex_state = 49}, - [77] = {.lex_state = 49}, - [78] = {.lex_state = 49}, - [79] = {.lex_state = 49}, - [80] = {.lex_state = 49}, - [81] = {.lex_state = 49}, - [82] = {.lex_state = 49}, - [83] = {.lex_state = 49}, - [84] = {.lex_state = 49}, - [85] = {.lex_state = 49}, - [86] = {.lex_state = 49}, - [87] = {.lex_state = 49}, - [88] = {.lex_state = 49}, - [89] = {.lex_state = 49}, - [90] = {.lex_state = 49}, - [91] = {.lex_state = 49}, - [92] = {.lex_state = 49}, - [93] = {.lex_state = 49}, - [94] = {.lex_state = 49}, - [95] = {.lex_state = 49}, - [96] = {.lex_state = 49}, - [97] = {.lex_state = 49}, - [98] = {.lex_state = 49}, - [99] = {.lex_state = 49}, - [100] = {.lex_state = 49}, - [101] = {.lex_state = 49}, - [102] = {.lex_state = 49}, - [103] = {.lex_state = 49}, - [104] = {.lex_state = 49}, - [105] = {.lex_state = 49}, - [106] = {.lex_state = 49}, - [107] = {.lex_state = 49}, - [108] = {.lex_state = 49}, - [109] = {.lex_state = 49}, - [110] = {.lex_state = 49}, - [111] = {.lex_state = 49}, - [112] = {.lex_state = 49}, - [113] = {.lex_state = 49}, - [114] = {.lex_state = 49}, - [115] = {.lex_state = 49}, - [116] = {.lex_state = 49}, - [117] = {.lex_state = 49}, - [118] = {.lex_state = 49}, - [119] = {.lex_state = 49}, - [120] = {.lex_state = 49}, - [121] = {.lex_state = 49}, - [122] = {.lex_state = 49}, - [123] = {.lex_state = 49}, - [124] = {.lex_state = 49}, - [125] = {.lex_state = 49}, - [126] = {.lex_state = 49}, - [127] = {.lex_state = 49}, - [128] = {.lex_state = 49}, - [129] = {.lex_state = 49}, - [130] = {.lex_state = 49}, - [131] = {.lex_state = 49}, - [132] = {.lex_state = 49}, - [133] = {.lex_state = 49}, - [134] = {.lex_state = 49}, - [135] = {.lex_state = 49}, - [136] = {.lex_state = 49}, - [137] = {.lex_state = 49}, - [138] = {.lex_state = 49}, - [139] = {.lex_state = 49}, - [140] = {.lex_state = 49}, - [141] = {.lex_state = 49}, - [142] = {.lex_state = 49}, - [143] = {.lex_state = 49}, - [144] = {.lex_state = 49}, - [145] = {.lex_state = 49}, - [146] = {.lex_state = 49}, - [147] = {.lex_state = 49}, - [148] = {.lex_state = 49}, - [149] = {.lex_state = 49}, - [150] = {.lex_state = 49}, - [151] = {.lex_state = 42}, - [152] = {.lex_state = 42}, - [153] = {.lex_state = 42}, - [154] = {.lex_state = 42}, - [155] = {.lex_state = 134}, - [156] = {.lex_state = 134}, - [157] = {.lex_state = 42}, - [158] = {.lex_state = 134}, - [159] = {.lex_state = 134}, - [160] = {.lex_state = 134}, - [161] = {.lex_state = 134}, - [162] = {.lex_state = 134}, - [163] = {.lex_state = 134}, - [164] = {.lex_state = 134}, - [165] = {.lex_state = 134}, - [166] = {.lex_state = 134}, - [167] = {.lex_state = 134}, - [168] = {.lex_state = 134}, - [169] = {.lex_state = 134}, - [170] = {.lex_state = 134}, - [171] = {.lex_state = 134}, - [172] = {.lex_state = 134}, - [173] = {.lex_state = 134}, - [174] = {.lex_state = 134}, - [175] = {.lex_state = 134}, - [176] = {.lex_state = 134}, - [177] = {.lex_state = 134}, - [178] = {.lex_state = 134}, - [179] = {.lex_state = 134}, - [180] = {.lex_state = 134}, - [181] = {.lex_state = 134}, - [182] = {.lex_state = 134}, - [183] = {.lex_state = 134}, - [184] = {.lex_state = 134}, - [185] = {.lex_state = 134}, - [186] = {.lex_state = 134}, - [187] = {.lex_state = 134}, - [188] = {.lex_state = 134}, - [189] = {.lex_state = 134}, - [190] = {.lex_state = 134}, - [191] = {.lex_state = 134}, - [192] = {.lex_state = 134}, - [193] = {.lex_state = 134}, - [194] = {.lex_state = 134}, - [195] = {.lex_state = 134}, - [196] = {.lex_state = 134}, - [197] = {.lex_state = 134}, - [198] = {.lex_state = 134}, - [199] = {.lex_state = 42}, - [200] = {.lex_state = 42}, - [201] = {.lex_state = 42}, - [202] = {.lex_state = 42}, - [203] = {.lex_state = 42}, - [204] = {.lex_state = 42}, - [205] = {.lex_state = 42}, - [206] = {.lex_state = 42}, - [207] = {.lex_state = 42}, - [208] = {.lex_state = 42}, - [209] = {.lex_state = 42}, - [210] = {.lex_state = 42}, - [211] = {.lex_state = 42}, - [212] = {.lex_state = 42}, - [213] = {.lex_state = 42}, - [214] = {.lex_state = 46}, - [215] = {.lex_state = 46}, - [216] = {.lex_state = 46}, - [217] = {.lex_state = 46}, - [218] = {.lex_state = 46}, - [219] = {.lex_state = 46}, - [220] = {.lex_state = 46}, - [221] = {.lex_state = 46}, - [222] = {.lex_state = 46}, - [223] = {.lex_state = 42}, - [224] = {.lex_state = 46}, - [225] = {.lex_state = 46}, - [226] = {.lex_state = 46}, - [227] = {.lex_state = 42}, - [228] = {.lex_state = 46}, - [229] = {.lex_state = 46}, - [230] = {.lex_state = 46}, - [231] = {.lex_state = 46}, - [232] = {.lex_state = 46}, - [233] = {.lex_state = 46}, - [234] = {.lex_state = 46}, - [235] = {.lex_state = 46}, - [236] = {.lex_state = 46}, - [237] = {.lex_state = 46}, - [238] = {.lex_state = 46}, - [239] = {.lex_state = 46}, - [240] = {.lex_state = 46}, - [241] = {.lex_state = 46}, - [242] = {.lex_state = 46}, - [243] = {.lex_state = 46}, - [244] = {.lex_state = 46}, - [245] = {.lex_state = 46}, - [246] = {.lex_state = 46}, - [247] = {.lex_state = 46}, - [248] = {.lex_state = 46}, - [249] = {.lex_state = 46}, - [250] = {.lex_state = 46}, - [251] = {.lex_state = 11}, - [252] = {.lex_state = 46}, - [253] = {.lex_state = 46}, - [254] = {.lex_state = 46}, - [255] = {.lex_state = 46}, - [256] = {.lex_state = 46}, - [257] = {.lex_state = 46}, - [258] = {.lex_state = 46}, - [259] = {.lex_state = 46}, - [260] = {.lex_state = 46}, - [261] = {.lex_state = 46}, - [262] = {.lex_state = 46}, - [263] = {.lex_state = 46}, - [264] = {.lex_state = 46}, - [265] = {.lex_state = 46}, - [266] = {.lex_state = 42}, - [267] = {.lex_state = 46}, - [268] = {.lex_state = 46}, - [269] = {.lex_state = 46}, - [270] = {.lex_state = 46}, - [271] = {.lex_state = 46}, - [272] = {.lex_state = 46}, - [273] = {.lex_state = 46}, - [274] = {.lex_state = 46}, - [275] = {.lex_state = 46}, - [276] = {.lex_state = 46}, - [277] = {.lex_state = 46}, - [278] = {.lex_state = 46}, - [279] = {.lex_state = 46}, - [280] = {.lex_state = 46}, - [281] = {.lex_state = 46}, - [282] = {.lex_state = 46}, - [283] = {.lex_state = 46}, - [284] = {.lex_state = 46}, - [285] = {.lex_state = 46}, - [286] = {.lex_state = 46}, - [287] = {.lex_state = 46}, - [288] = {.lex_state = 46}, - [289] = {.lex_state = 46}, - [290] = {.lex_state = 42}, - [291] = {.lex_state = 42}, - [292] = {.lex_state = 51}, - [293] = {.lex_state = 51}, - [294] = {.lex_state = 51}, - [295] = {.lex_state = 51}, - [296] = {.lex_state = 51}, - [297] = {.lex_state = 51}, - [298] = {.lex_state = 51}, - [299] = {.lex_state = 51}, - [300] = {.lex_state = 51}, - [301] = {.lex_state = 51}, - [302] = {.lex_state = 51}, - [303] = {.lex_state = 51}, - [304] = {.lex_state = 51}, - [305] = {.lex_state = 51}, - [306] = {.lex_state = 51}, - [307] = {.lex_state = 51}, - [308] = {.lex_state = 51}, - [309] = {.lex_state = 42}, - [310] = {.lex_state = 42}, - [311] = {.lex_state = 42}, - [312] = {.lex_state = 51}, - [313] = {.lex_state = 51}, - [314] = {.lex_state = 51}, - [315] = {.lex_state = 51}, - [316] = {.lex_state = 42}, - [317] = {.lex_state = 42}, - [318] = {.lex_state = 42}, - [319] = {.lex_state = 42}, - [320] = {.lex_state = 42}, - [321] = {.lex_state = 42}, - [322] = {.lex_state = 42}, - [323] = {.lex_state = 42}, - [324] = {.lex_state = 42}, - [325] = {.lex_state = 51}, - [326] = {.lex_state = 51}, - [327] = {.lex_state = 42}, - [328] = {.lex_state = 51}, - [329] = {.lex_state = 51}, - [330] = {.lex_state = 51}, - [331] = {.lex_state = 51}, - [332] = {.lex_state = 42}, - [333] = {.lex_state = 51}, - [334] = {.lex_state = 51}, - [335] = {.lex_state = 51}, - [336] = {.lex_state = 51}, - [337] = {.lex_state = 51}, - [338] = {.lex_state = 42}, - [339] = {.lex_state = 42}, - [340] = {.lex_state = 51}, - [341] = {.lex_state = 51}, - [342] = {.lex_state = 51}, - [343] = {.lex_state = 51}, - [344] = {.lex_state = 42}, - [345] = {.lex_state = 51}, - [346] = {.lex_state = 51}, - [347] = {.lex_state = 51}, - [348] = {.lex_state = 51}, - [349] = {.lex_state = 51}, - [350] = {.lex_state = 51}, - [351] = {.lex_state = 51}, - [352] = {.lex_state = 42}, - [353] = {.lex_state = 42}, - [354] = {.lex_state = 42}, - [355] = {.lex_state = 52}, - [356] = {.lex_state = 52}, - [357] = {.lex_state = 52}, - [358] = {.lex_state = 52}, - [359] = {.lex_state = 52}, - [360] = {.lex_state = 52}, - [361] = {.lex_state = 52}, - [362] = {.lex_state = 52}, - [363] = {.lex_state = 52}, - [364] = {.lex_state = 52}, - [365] = {.lex_state = 52}, - [366] = {.lex_state = 52}, - [367] = {.lex_state = 52}, - [368] = {.lex_state = 52}, - [369] = {.lex_state = 52}, - [370] = {.lex_state = 52}, - [371] = {.lex_state = 52}, - [372] = {.lex_state = 52}, - [373] = {.lex_state = 52}, - [374] = {.lex_state = 52}, - [375] = {.lex_state = 52}, - [376] = {.lex_state = 52}, - [377] = {.lex_state = 52}, - [378] = {.lex_state = 52}, - [379] = {.lex_state = 52}, - [380] = {.lex_state = 52}, - [381] = {.lex_state = 52}, - [382] = {.lex_state = 52}, - [383] = {.lex_state = 52}, - [384] = {.lex_state = 52}, - [385] = {.lex_state = 52}, - [386] = {.lex_state = 52}, - [387] = {.lex_state = 52}, - [388] = {.lex_state = 52}, - [389] = {.lex_state = 52}, - [390] = {.lex_state = 52}, - [391] = {.lex_state = 52}, - [392] = {.lex_state = 11}, - [393] = {.lex_state = 11}, - [394] = {.lex_state = 11}, - [395] = {.lex_state = 11}, - [396] = {.lex_state = 11}, - [397] = {.lex_state = 11}, - [398] = {.lex_state = 11}, - [399] = {.lex_state = 42}, - [400] = {.lex_state = 11}, - [401] = {.lex_state = 11}, - [402] = {.lex_state = 11}, + [1] = {.lex_state = 137}, + [2] = {.lex_state = 137}, + [3] = {.lex_state = 137}, + [4] = {.lex_state = 137}, + [5] = {.lex_state = 137}, + [6] = {.lex_state = 137}, + [7] = {.lex_state = 53}, + [8] = {.lex_state = 48}, + [9] = {.lex_state = 53}, + [10] = {.lex_state = 53}, + [11] = {.lex_state = 48}, + [12] = {.lex_state = 53}, + [13] = {.lex_state = 53}, + [14] = {.lex_state = 53}, + [15] = {.lex_state = 48}, + [16] = {.lex_state = 53}, + [17] = {.lex_state = 48}, + [18] = {.lex_state = 53}, + [19] = {.lex_state = 48}, + [20] = {.lex_state = 48}, + [21] = {.lex_state = 48}, + [22] = {.lex_state = 48}, + [23] = {.lex_state = 53}, + [24] = {.lex_state = 54}, + [25] = {.lex_state = 54}, + [26] = {.lex_state = 54}, + [27] = {.lex_state = 54}, + [28] = {.lex_state = 54}, + [29] = {.lex_state = 48}, + [30] = {.lex_state = 54}, + [31] = {.lex_state = 54}, + [32] = {.lex_state = 54}, + [33] = {.lex_state = 54}, + [34] = {.lex_state = 54}, + [35] = {.lex_state = 137}, + [36] = {.lex_state = 137}, + [37] = {.lex_state = 137}, + [38] = {.lex_state = 54}, + [39] = {.lex_state = 51}, + [40] = {.lex_state = 51}, + [41] = {.lex_state = 51}, + [42] = {.lex_state = 51}, + [43] = {.lex_state = 51}, + [44] = {.lex_state = 51}, + [45] = {.lex_state = 51}, + [46] = {.lex_state = 52}, + [47] = {.lex_state = 51}, + [48] = {.lex_state = 51}, + [49] = {.lex_state = 51}, + [50] = {.lex_state = 52}, + [51] = {.lex_state = 51}, + [52] = {.lex_state = 51}, + [53] = {.lex_state = 51}, + [54] = {.lex_state = 51}, + [55] = {.lex_state = 52}, + [56] = {.lex_state = 51}, + [57] = {.lex_state = 51}, + [58] = {.lex_state = 51}, + [59] = {.lex_state = 51}, + [60] = {.lex_state = 51}, + [61] = {.lex_state = 51}, + [62] = {.lex_state = 51}, + [63] = {.lex_state = 51}, + [64] = {.lex_state = 51}, + [65] = {.lex_state = 51}, + [66] = {.lex_state = 51}, + [67] = {.lex_state = 51}, + [68] = {.lex_state = 51}, + [69] = {.lex_state = 51}, + [70] = {.lex_state = 51}, + [71] = {.lex_state = 51}, + [72] = {.lex_state = 51}, + [73] = {.lex_state = 51}, + [74] = {.lex_state = 51}, + [75] = {.lex_state = 51}, + [76] = {.lex_state = 51}, + [77] = {.lex_state = 51}, + [78] = {.lex_state = 51}, + [79] = {.lex_state = 51}, + [80] = {.lex_state = 51}, + [81] = {.lex_state = 51}, + [82] = {.lex_state = 51}, + [83] = {.lex_state = 51}, + [84] = {.lex_state = 51}, + [85] = {.lex_state = 51}, + [86] = {.lex_state = 51}, + [87] = {.lex_state = 51}, + [88] = {.lex_state = 51}, + [89] = {.lex_state = 51}, + [90] = {.lex_state = 51}, + [91] = {.lex_state = 51}, + [92] = {.lex_state = 51}, + [93] = {.lex_state = 51}, + [94] = {.lex_state = 51}, + [95] = {.lex_state = 51}, + [96] = {.lex_state = 51}, + [97] = {.lex_state = 51}, + [98] = {.lex_state = 51}, + [99] = {.lex_state = 51}, + [100] = {.lex_state = 51}, + [101] = {.lex_state = 51}, + [102] = {.lex_state = 51}, + [103] = {.lex_state = 51}, + [104] = {.lex_state = 51}, + [105] = {.lex_state = 51}, + [106] = {.lex_state = 51}, + [107] = {.lex_state = 51}, + [108] = {.lex_state = 51}, + [109] = {.lex_state = 51}, + [110] = {.lex_state = 51}, + [111] = {.lex_state = 51}, + [112] = {.lex_state = 51}, + [113] = {.lex_state = 51}, + [114] = {.lex_state = 51}, + [115] = {.lex_state = 51}, + [116] = {.lex_state = 51}, + [117] = {.lex_state = 51}, + [118] = {.lex_state = 51}, + [119] = {.lex_state = 51}, + [120] = {.lex_state = 51}, + [121] = {.lex_state = 51}, + [122] = {.lex_state = 51}, + [123] = {.lex_state = 51}, + [124] = {.lex_state = 51}, + [125] = {.lex_state = 51}, + [126] = {.lex_state = 51}, + [127] = {.lex_state = 51}, + [128] = {.lex_state = 51}, + [129] = {.lex_state = 51}, + [130] = {.lex_state = 51}, + [131] = {.lex_state = 51}, + [132] = {.lex_state = 51}, + [133] = {.lex_state = 51}, + [134] = {.lex_state = 51}, + [135] = {.lex_state = 51}, + [136] = {.lex_state = 51}, + [137] = {.lex_state = 51}, + [138] = {.lex_state = 51}, + [139] = {.lex_state = 51}, + [140] = {.lex_state = 51}, + [141] = {.lex_state = 51}, + [142] = {.lex_state = 51}, + [143] = {.lex_state = 51}, + [144] = {.lex_state = 51}, + [145] = {.lex_state = 51}, + [146] = {.lex_state = 51}, + [147] = {.lex_state = 51}, + [148] = {.lex_state = 51}, + [149] = {.lex_state = 51}, + [150] = {.lex_state = 51}, + [151] = {.lex_state = 137}, + [152] = {.lex_state = 137}, + [153] = {.lex_state = 44}, + [154] = {.lex_state = 44}, + [155] = {.lex_state = 44}, + [156] = {.lex_state = 44}, + [157] = {.lex_state = 44}, + [158] = {.lex_state = 137}, + [159] = {.lex_state = 137}, + [160] = {.lex_state = 137}, + [161] = {.lex_state = 137}, + [162] = {.lex_state = 137}, + [163] = {.lex_state = 137}, + [164] = {.lex_state = 137}, + [165] = {.lex_state = 137}, + [166] = {.lex_state = 137}, + [167] = {.lex_state = 137}, + [168] = {.lex_state = 137}, + [169] = {.lex_state = 137}, + [170] = {.lex_state = 137}, + [171] = {.lex_state = 137}, + [172] = {.lex_state = 137}, + [173] = {.lex_state = 137}, + [174] = {.lex_state = 137}, + [175] = {.lex_state = 137}, + [176] = {.lex_state = 137}, + [177] = {.lex_state = 137}, + [178] = {.lex_state = 137}, + [179] = {.lex_state = 137}, + [180] = {.lex_state = 137}, + [181] = {.lex_state = 137}, + [182] = {.lex_state = 137}, + [183] = {.lex_state = 137}, + [184] = {.lex_state = 137}, + [185] = {.lex_state = 137}, + [186] = {.lex_state = 137}, + [187] = {.lex_state = 137}, + [188] = {.lex_state = 137}, + [189] = {.lex_state = 137}, + [190] = {.lex_state = 137}, + [191] = {.lex_state = 137}, + [192] = {.lex_state = 137}, + [193] = {.lex_state = 137}, + [194] = {.lex_state = 137}, + [195] = {.lex_state = 137}, + [196] = {.lex_state = 137}, + [197] = {.lex_state = 137}, + [198] = {.lex_state = 137}, + [199] = {.lex_state = 44}, + [200] = {.lex_state = 44}, + [201] = {.lex_state = 44}, + [202] = {.lex_state = 44}, + [203] = {.lex_state = 44}, + [204] = {.lex_state = 44}, + [205] = {.lex_state = 44}, + [206] = {.lex_state = 44}, + [207] = {.lex_state = 44}, + [208] = {.lex_state = 44}, + [209] = {.lex_state = 44}, + [210] = {.lex_state = 44}, + [211] = {.lex_state = 44}, + [212] = {.lex_state = 44}, + [213] = {.lex_state = 44}, + [214] = {.lex_state = 48}, + [215] = {.lex_state = 48}, + [216] = {.lex_state = 48}, + [217] = {.lex_state = 48}, + [218] = {.lex_state = 48}, + [219] = {.lex_state = 48}, + [220] = {.lex_state = 48}, + [221] = {.lex_state = 48}, + [222] = {.lex_state = 48}, + [223] = {.lex_state = 48}, + [224] = {.lex_state = 48}, + [225] = {.lex_state = 48}, + [226] = {.lex_state = 48}, + [227] = {.lex_state = 48}, + [228] = {.lex_state = 48}, + [229] = {.lex_state = 48}, + [230] = {.lex_state = 48}, + [231] = {.lex_state = 44}, + [232] = {.lex_state = 11}, + [233] = {.lex_state = 48}, + [234] = {.lex_state = 48}, + [235] = {.lex_state = 48}, + [236] = {.lex_state = 48}, + [237] = {.lex_state = 48}, + [238] = {.lex_state = 48}, + [239] = {.lex_state = 48}, + [240] = {.lex_state = 48}, + [241] = {.lex_state = 48}, + [242] = {.lex_state = 48}, + [243] = {.lex_state = 48}, + [244] = {.lex_state = 48}, + [245] = {.lex_state = 48}, + [246] = {.lex_state = 48}, + [247] = {.lex_state = 48}, + [248] = {.lex_state = 48}, + [249] = {.lex_state = 48}, + [250] = {.lex_state = 48}, + [251] = {.lex_state = 48}, + [252] = {.lex_state = 48}, + [253] = {.lex_state = 48}, + [254] = {.lex_state = 48}, + [255] = {.lex_state = 48}, + [256] = {.lex_state = 48}, + [257] = {.lex_state = 48}, + [258] = {.lex_state = 48}, + [259] = {.lex_state = 48}, + [260] = {.lex_state = 48}, + [261] = {.lex_state = 48}, + [262] = {.lex_state = 48}, + [263] = {.lex_state = 48}, + [264] = {.lex_state = 48}, + [265] = {.lex_state = 48}, + [266] = {.lex_state = 48}, + [267] = {.lex_state = 48}, + [268] = {.lex_state = 48}, + [269] = {.lex_state = 48}, + [270] = {.lex_state = 48}, + [271] = {.lex_state = 48}, + [272] = {.lex_state = 48}, + [273] = {.lex_state = 48}, + [274] = {.lex_state = 48}, + [275] = {.lex_state = 48}, + [276] = {.lex_state = 48}, + [277] = {.lex_state = 48}, + [278] = {.lex_state = 48}, + [279] = {.lex_state = 48}, + [280] = {.lex_state = 48}, + [281] = {.lex_state = 48}, + [282] = {.lex_state = 48}, + [283] = {.lex_state = 44}, + [284] = {.lex_state = 48}, + [285] = {.lex_state = 48}, + [286] = {.lex_state = 48}, + [287] = {.lex_state = 44}, + [288] = {.lex_state = 48}, + [289] = {.lex_state = 48}, + [290] = {.lex_state = 44}, + [291] = {.lex_state = 44}, + [292] = {.lex_state = 53}, + [293] = {.lex_state = 53}, + [294] = {.lex_state = 53}, + [295] = {.lex_state = 53}, + [296] = {.lex_state = 53}, + [297] = {.lex_state = 53}, + [298] = {.lex_state = 53}, + [299] = {.lex_state = 53}, + [300] = {.lex_state = 53}, + [301] = {.lex_state = 53}, + [302] = {.lex_state = 53}, + [303] = {.lex_state = 53}, + [304] = {.lex_state = 53}, + [305] = {.lex_state = 53}, + [306] = {.lex_state = 53}, + [307] = {.lex_state = 53}, + [308] = {.lex_state = 53}, + [309] = {.lex_state = 53}, + [310] = {.lex_state = 53}, + [311] = {.lex_state = 53}, + [312] = {.lex_state = 53}, + [313] = {.lex_state = 53}, + [314] = {.lex_state = 53}, + [315] = {.lex_state = 53}, + [316] = {.lex_state = 53}, + [317] = {.lex_state = 53}, + [318] = {.lex_state = 53}, + [319] = {.lex_state = 53}, + [320] = {.lex_state = 53}, + [321] = {.lex_state = 53}, + [322] = {.lex_state = 44}, + [323] = {.lex_state = 53}, + [324] = {.lex_state = 53}, + [325] = {.lex_state = 53}, + [326] = {.lex_state = 53}, + [327] = {.lex_state = 53}, + [328] = {.lex_state = 44}, + [329] = {.lex_state = 44}, + [330] = {.lex_state = 44}, + [331] = {.lex_state = 44}, + [332] = {.lex_state = 44}, + [333] = {.lex_state = 53}, + [334] = {.lex_state = 53}, + [335] = {.lex_state = 53}, + [336] = {.lex_state = 44}, + [337] = {.lex_state = 44}, + [338] = {.lex_state = 44}, + [339] = {.lex_state = 53}, + [340] = {.lex_state = 53}, + [341] = {.lex_state = 44}, + [342] = {.lex_state = 44}, + [343] = {.lex_state = 44}, + [344] = {.lex_state = 44}, + [345] = {.lex_state = 44}, + [346] = {.lex_state = 44}, + [347] = {.lex_state = 44}, + [348] = {.lex_state = 44}, + [349] = {.lex_state = 44}, + [350] = {.lex_state = 44}, + [351] = {.lex_state = 44}, + [352] = {.lex_state = 53}, + [353] = {.lex_state = 53}, + [354] = {.lex_state = 53}, + [355] = {.lex_state = 54}, + [356] = {.lex_state = 54}, + [357] = {.lex_state = 54}, + [358] = {.lex_state = 54}, + [359] = {.lex_state = 11}, + [360] = {.lex_state = 11}, + [361] = {.lex_state = 11}, + [362] = {.lex_state = 11}, + [363] = {.lex_state = 54}, + [364] = {.lex_state = 54}, + [365] = {.lex_state = 11}, + [366] = {.lex_state = 54}, + [367] = {.lex_state = 54}, + [368] = {.lex_state = 11}, + [369] = {.lex_state = 11}, + [370] = {.lex_state = 11}, + [371] = {.lex_state = 54}, + [372] = {.lex_state = 11}, + [373] = {.lex_state = 54}, + [374] = {.lex_state = 54}, + [375] = {.lex_state = 54}, + [376] = {.lex_state = 54}, + [377] = {.lex_state = 54}, + [378] = {.lex_state = 54}, + [379] = {.lex_state = 54}, + [380] = {.lex_state = 11}, + [381] = {.lex_state = 54}, + [382] = {.lex_state = 11}, + [383] = {.lex_state = 54}, + [384] = {.lex_state = 54}, + [385] = {.lex_state = 54}, + [386] = {.lex_state = 54}, + [387] = {.lex_state = 11}, + [388] = {.lex_state = 11}, + [389] = {.lex_state = 54}, + [390] = {.lex_state = 11}, + [391] = {.lex_state = 54}, + [392] = {.lex_state = 54}, + [393] = {.lex_state = 54}, + [394] = {.lex_state = 54}, + [395] = {.lex_state = 54}, + [396] = {.lex_state = 54}, + [397] = {.lex_state = 44}, + [398] = {.lex_state = 54}, + [399] = {.lex_state = 54}, + [400] = {.lex_state = 54}, + [401] = {.lex_state = 54}, + [402] = {.lex_state = 54}, [403] = {.lex_state = 11}, - [404] = {.lex_state = 11}, + [404] = {.lex_state = 54}, [405] = {.lex_state = 11}, [406] = {.lex_state = 11}, - [407] = {.lex_state = 42}, - [408] = {.lex_state = 11}, - [409] = {.lex_state = 11}, - [410] = {.lex_state = 11}, - [411] = {.lex_state = 11}, - [412] = {.lex_state = 11}, - [413] = {.lex_state = 11}, - [414] = {.lex_state = 11}, - [415] = {.lex_state = 52}, - [416] = {.lex_state = 52}, - [417] = {.lex_state = 52}, - [418] = {.lex_state = 11}, - [419] = {.lex_state = 52}, - [420] = {.lex_state = 52}, - [421] = {.lex_state = 52}, - [422] = {.lex_state = 52}, - [423] = {.lex_state = 52}, + [407] = {.lex_state = 11}, + [408] = {.lex_state = 54}, + [409] = {.lex_state = 54}, + [410] = {.lex_state = 54}, + [411] = {.lex_state = 54}, + [412] = {.lex_state = 54}, + [413] = {.lex_state = 54}, + [414] = {.lex_state = 54}, + [415] = {.lex_state = 54}, + [416] = {.lex_state = 54}, + [417] = {.lex_state = 54}, + [418] = {.lex_state = 54}, + [419] = {.lex_state = 54}, + [420] = {.lex_state = 54}, + [421] = {.lex_state = 54}, + [422] = {.lex_state = 11}, + [423] = {.lex_state = 54}, [424] = {.lex_state = 11}, - [425] = {.lex_state = 52}, - [426] = {.lex_state = 52}, - [427] = {.lex_state = 52}, - [428] = {.lex_state = 52}, - [429] = {.lex_state = 52}, - [430] = {.lex_state = 52}, - [431] = {.lex_state = 52}, - [432] = {.lex_state = 52}, - [433] = {.lex_state = 52}, - [434] = {.lex_state = 11}, - [435] = {.lex_state = 11}, - [436] = {.lex_state = 11}, - [437] = {.lex_state = 52}, - [438] = {.lex_state = 52}, - [439] = {.lex_state = 52}, - [440] = {.lex_state = 52}, - [441] = {.lex_state = 52}, - [442] = {.lex_state = 52}, - [443] = {.lex_state = 52}, - [444] = {.lex_state = 52}, - [445] = {.lex_state = 52}, - [446] = {.lex_state = 52}, - [447] = {.lex_state = 52}, - [448] = {.lex_state = 52}, - [449] = {.lex_state = 52}, - [450] = {.lex_state = 52}, - [451] = {.lex_state = 52}, - [452] = {.lex_state = 52}, - [453] = {.lex_state = 52}, - [454] = {.lex_state = 52}, - [455] = {.lex_state = 50}, - [456] = {.lex_state = 50}, - [457] = {.lex_state = 50}, - [458] = {.lex_state = 50}, - [459] = {.lex_state = 50}, - [460] = {.lex_state = 50}, - [461] = {.lex_state = 50}, - [462] = {.lex_state = 50}, - [463] = {.lex_state = 50}, - [464] = {.lex_state = 50}, - [465] = {.lex_state = 50}, - [466] = {.lex_state = 50}, - [467] = {.lex_state = 50}, - [468] = {.lex_state = 50}, - [469] = {.lex_state = 49}, - [470] = {.lex_state = 49}, - [471] = {.lex_state = 49}, - [472] = {.lex_state = 43}, - [473] = {.lex_state = 49}, - [474] = {.lex_state = 49}, - [475] = {.lex_state = 49}, - [476] = {.lex_state = 49}, - [477] = {.lex_state = 49}, - [478] = {.lex_state = 49}, - [479] = {.lex_state = 49}, - [480] = {.lex_state = 49}, - [481] = {.lex_state = 49}, - [482] = {.lex_state = 49}, - [483] = {.lex_state = 49}, - [484] = {.lex_state = 49}, - [485] = {.lex_state = 50}, - [486] = {.lex_state = 50}, - [487] = {.lex_state = 50}, - [488] = {.lex_state = 49}, - [489] = {.lex_state = 49}, - [490] = {.lex_state = 49}, - [491] = {.lex_state = 49}, - [492] = {.lex_state = 49}, - [493] = {.lex_state = 50}, - [494] = {.lex_state = 50}, - [495] = {.lex_state = 50}, - [496] = {.lex_state = 50}, - [497] = {.lex_state = 49}, - [498] = {.lex_state = 50}, - [499] = {.lex_state = 49}, - [500] = {.lex_state = 50}, - [501] = {.lex_state = 43}, - [502] = {.lex_state = 49}, - [503] = {.lex_state = 49}, - [504] = {.lex_state = 49}, - [505] = {.lex_state = 49}, - [506] = {.lex_state = 49}, - [507] = {.lex_state = 43}, - [508] = {.lex_state = 43}, - [509] = {.lex_state = 43}, - [510] = {.lex_state = 43}, - [511] = {.lex_state = 49}, - [512] = {.lex_state = 43}, - [513] = {.lex_state = 49}, - [514] = {.lex_state = 49}, - [515] = {.lex_state = 49}, - [516] = {.lex_state = 43}, - [517] = {.lex_state = 43}, - [518] = {.lex_state = 43}, - [519] = {.lex_state = 43}, - [520] = {.lex_state = 49}, - [521] = {.lex_state = 43}, - [522] = {.lex_state = 49}, - [523] = {.lex_state = 49}, - [524] = {.lex_state = 49}, - [525] = {.lex_state = 43}, - [526] = {.lex_state = 43}, - [527] = {.lex_state = 43}, - [528] = {.lex_state = 43}, - [529] = {.lex_state = 50}, - [530] = {.lex_state = 43}, - [531] = {.lex_state = 50}, - [532] = {.lex_state = 50}, - [533] = {.lex_state = 50}, - [534] = {.lex_state = 50}, - [535] = {.lex_state = 50}, - [536] = {.lex_state = 50}, - [537] = {.lex_state = 50}, - [538] = {.lex_state = 50}, - [539] = {.lex_state = 49}, - [540] = {.lex_state = 49}, - [541] = {.lex_state = 49}, - [542] = {.lex_state = 50}, - [543] = {.lex_state = 50}, - [544] = {.lex_state = 49}, - [545] = {.lex_state = 49}, - [546] = {.lex_state = 49}, - [547] = {.lex_state = 50}, - [548] = {.lex_state = 49}, - [549] = {.lex_state = 49}, - [550] = {.lex_state = 49}, - [551] = {.lex_state = 49}, - [552] = {.lex_state = 49}, - [553] = {.lex_state = 49}, - [554] = {.lex_state = 49}, - [555] = {.lex_state = 49}, - [556] = {.lex_state = 50}, - [557] = {.lex_state = 50}, - [558] = {.lex_state = 49}, - [559] = {.lex_state = 49}, - [560] = {.lex_state = 49}, - [561] = {.lex_state = 49}, - [562] = {.lex_state = 49}, - [563] = {.lex_state = 49}, - [564] = {.lex_state = 49}, - [565] = {.lex_state = 50}, - [566] = {.lex_state = 49}, - [567] = {.lex_state = 49}, - [568] = {.lex_state = 49}, - [569] = {.lex_state = 49}, - [570] = {.lex_state = 50}, - [571] = {.lex_state = 50}, - [572] = {.lex_state = 50}, - [573] = {.lex_state = 50}, - [574] = {.lex_state = 50}, - [575] = {.lex_state = 49}, - [576] = {.lex_state = 50}, - [577] = {.lex_state = 49}, - [578] = {.lex_state = 49}, - [579] = {.lex_state = 49}, - [580] = {.lex_state = 50}, - [581] = {.lex_state = 49}, - [582] = {.lex_state = 49}, - [583] = {.lex_state = 49}, - [584] = {.lex_state = 50}, - [585] = {.lex_state = 50}, - [586] = {.lex_state = 50}, - [587] = {.lex_state = 50}, - [588] = {.lex_state = 50}, - [589] = {.lex_state = 50}, - [590] = {.lex_state = 50}, - [591] = {.lex_state = 50}, - [592] = {.lex_state = 50}, - [593] = {.lex_state = 49}, - [594] = {.lex_state = 49}, - [595] = {.lex_state = 49}, - [596] = {.lex_state = 43}, - [597] = {.lex_state = 43}, - [598] = {.lex_state = 50}, - [599] = {.lex_state = 50}, - [600] = {.lex_state = 50}, - [601] = {.lex_state = 50}, - [602] = {.lex_state = 50}, - [603] = {.lex_state = 50}, - [604] = {.lex_state = 50}, - [605] = {.lex_state = 50}, - [606] = {.lex_state = 50}, - [607] = {.lex_state = 50}, - [608] = {.lex_state = 50}, - [609] = {.lex_state = 50}, - [610] = {.lex_state = 50}, - [611] = {.lex_state = 49}, - [612] = {.lex_state = 43}, - [613] = {.lex_state = 49}, - [614] = {.lex_state = 50}, - [615] = {.lex_state = 50}, - [616] = {.lex_state = 50}, - [617] = {.lex_state = 50}, - [618] = {.lex_state = 50}, - [619] = {.lex_state = 43}, - [620] = {.lex_state = 43}, - [621] = {.lex_state = 43}, - [622] = {.lex_state = 43}, - [623] = {.lex_state = 43}, - [624] = {.lex_state = 43}, - [625] = {.lex_state = 43}, - [626] = {.lex_state = 43}, - [627] = {.lex_state = 43}, - [628] = {.lex_state = 43}, - [629] = {.lex_state = 43}, - [630] = {.lex_state = 43}, - [631] = {.lex_state = 43}, - [632] = {.lex_state = 43}, - [633] = {.lex_state = 43}, - [634] = {.lex_state = 43}, - [635] = {.lex_state = 43}, - [636] = {.lex_state = 43}, - [637] = {.lex_state = 43}, - [638] = {.lex_state = 43}, - [639] = {.lex_state = 43}, - [640] = {.lex_state = 43}, - [641] = {.lex_state = 43}, - [642] = {.lex_state = 43}, - [643] = {.lex_state = 43}, - [644] = {.lex_state = 43}, - [645] = {.lex_state = 43}, - [646] = {.lex_state = 43}, - [647] = {.lex_state = 43}, - [648] = {.lex_state = 43}, - [649] = {.lex_state = 43}, - [650] = {.lex_state = 43}, - [651] = {.lex_state = 43}, - [652] = {.lex_state = 43}, - [653] = {.lex_state = 43}, - [654] = {.lex_state = 43}, - [655] = {.lex_state = 43}, - [656] = {.lex_state = 43}, - [657] = {.lex_state = 43}, - [658] = {.lex_state = 43}, - [659] = {.lex_state = 43}, - [660] = {.lex_state = 43}, - [661] = {.lex_state = 43}, - [662] = {.lex_state = 43}, - [663] = {.lex_state = 43}, - [664] = {.lex_state = 43}, - [665] = {.lex_state = 43}, - [666] = {.lex_state = 43}, - [667] = {.lex_state = 43}, - [668] = {.lex_state = 43}, - [669] = {.lex_state = 43}, - [670] = {.lex_state = 43}, - [671] = {.lex_state = 43}, - [672] = {.lex_state = 43}, - [673] = {.lex_state = 43}, - [674] = {.lex_state = 43}, - [675] = {.lex_state = 44}, - [676] = {.lex_state = 44}, - [677] = {.lex_state = 42}, - [678] = {.lex_state = 42}, - [679] = {.lex_state = 44}, - [680] = {.lex_state = 47}, - [681] = {.lex_state = 44}, - [682] = {.lex_state = 44}, - [683] = {.lex_state = 44}, - [684] = {.lex_state = 44}, - [685] = {.lex_state = 44}, - [686] = {.lex_state = 44}, - [687] = {.lex_state = 44}, + [425] = {.lex_state = 54}, + [426] = {.lex_state = 54}, + [427] = {.lex_state = 54}, + [428] = {.lex_state = 54}, + [429] = {.lex_state = 54}, + [430] = {.lex_state = 11}, + [431] = {.lex_state = 54}, + [432] = {.lex_state = 54}, + [433] = {.lex_state = 54}, + [434] = {.lex_state = 54}, + [435] = {.lex_state = 54}, + [436] = {.lex_state = 54}, + [437] = {.lex_state = 11}, + [438] = {.lex_state = 54}, + [439] = {.lex_state = 44}, + [440] = {.lex_state = 54}, + [441] = {.lex_state = 11}, + [442] = {.lex_state = 11}, + [443] = {.lex_state = 54}, + [444] = {.lex_state = 54}, + [445] = {.lex_state = 54}, + [446] = {.lex_state = 54}, + [447] = {.lex_state = 54}, + [448] = {.lex_state = 54}, + [449] = {.lex_state = 54}, + [450] = {.lex_state = 11}, + [451] = {.lex_state = 11}, + [452] = {.lex_state = 54}, + [453] = {.lex_state = 54}, + [454] = {.lex_state = 54}, + [455] = {.lex_state = 52}, + [456] = {.lex_state = 51}, + [457] = {.lex_state = 51}, + [458] = {.lex_state = 51}, + [459] = {.lex_state = 51}, + [460] = {.lex_state = 51}, + [461] = {.lex_state = 51}, + [462] = {.lex_state = 51}, + [463] = {.lex_state = 51}, + [464] = {.lex_state = 51}, + [465] = {.lex_state = 51}, + [466] = {.lex_state = 51}, + [467] = {.lex_state = 51}, + [468] = {.lex_state = 51}, + [469] = {.lex_state = 51}, + [470] = {.lex_state = 45}, + [471] = {.lex_state = 51}, + [472] = {.lex_state = 45}, + [473] = {.lex_state = 51}, + [474] = {.lex_state = 45}, + [475] = {.lex_state = 51}, + [476] = {.lex_state = 45}, + [477] = {.lex_state = 51}, + [478] = {.lex_state = 51}, + [479] = {.lex_state = 51}, + [480] = {.lex_state = 51}, + [481] = {.lex_state = 51}, + [482] = {.lex_state = 51}, + [483] = {.lex_state = 51}, + [484] = {.lex_state = 51}, + [485] = {.lex_state = 51}, + [486] = {.lex_state = 51}, + [487] = {.lex_state = 51}, + [488] = {.lex_state = 51}, + [489] = {.lex_state = 51}, + [490] = {.lex_state = 51}, + [491] = {.lex_state = 51}, + [492] = {.lex_state = 52}, + [493] = {.lex_state = 51}, + [494] = {.lex_state = 52}, + [495] = {.lex_state = 52}, + [496] = {.lex_state = 52}, + [497] = {.lex_state = 52}, + [498] = {.lex_state = 52}, + [499] = {.lex_state = 52}, + [500] = {.lex_state = 52}, + [501] = {.lex_state = 51}, + [502] = {.lex_state = 51}, + [503] = {.lex_state = 51}, + [504] = {.lex_state = 51}, + [505] = {.lex_state = 51}, + [506] = {.lex_state = 52}, + [507] = {.lex_state = 52}, + [508] = {.lex_state = 52}, + [509] = {.lex_state = 52}, + [510] = {.lex_state = 52}, + [511] = {.lex_state = 52}, + [512] = {.lex_state = 52}, + [513] = {.lex_state = 52}, + [514] = {.lex_state = 52}, + [515] = {.lex_state = 51}, + [516] = {.lex_state = 51}, + [517] = {.lex_state = 52}, + [518] = {.lex_state = 52}, + [519] = {.lex_state = 52}, + [520] = {.lex_state = 51}, + [521] = {.lex_state = 52}, + [522] = {.lex_state = 52}, + [523] = {.lex_state = 52}, + [524] = {.lex_state = 52}, + [525] = {.lex_state = 52}, + [526] = {.lex_state = 52}, + [527] = {.lex_state = 52}, + [528] = {.lex_state = 52}, + [529] = {.lex_state = 52}, + [530] = {.lex_state = 51}, + [531] = {.lex_state = 52}, + [532] = {.lex_state = 52}, + [533] = {.lex_state = 52}, + [534] = {.lex_state = 52}, + [535] = {.lex_state = 52}, + [536] = {.lex_state = 52}, + [537] = {.lex_state = 52}, + [538] = {.lex_state = 52}, + [539] = {.lex_state = 52}, + [540] = {.lex_state = 52}, + [541] = {.lex_state = 51}, + [542] = {.lex_state = 51}, + [543] = {.lex_state = 52}, + [544] = {.lex_state = 52}, + [545] = {.lex_state = 52}, + [546] = {.lex_state = 52}, + [547] = {.lex_state = 52}, + [548] = {.lex_state = 52}, + [549] = {.lex_state = 52}, + [550] = {.lex_state = 52}, + [551] = {.lex_state = 52}, + [552] = {.lex_state = 52}, + [553] = {.lex_state = 52}, + [554] = {.lex_state = 52}, + [555] = {.lex_state = 52}, + [556] = {.lex_state = 52}, + [557] = {.lex_state = 52}, + [558] = {.lex_state = 52}, + [559] = {.lex_state = 52}, + [560] = {.lex_state = 52}, + [561] = {.lex_state = 52}, + [562] = {.lex_state = 52}, + [563] = {.lex_state = 52}, + [564] = {.lex_state = 52}, + [565] = {.lex_state = 52}, + [566] = {.lex_state = 52}, + [567] = {.lex_state = 52}, + [568] = {.lex_state = 52}, + [569] = {.lex_state = 52}, + [570] = {.lex_state = 52}, + [571] = {.lex_state = 52}, + [572] = {.lex_state = 52}, + [573] = {.lex_state = 52}, + [574] = {.lex_state = 51}, + [575] = {.lex_state = 51}, + [576] = {.lex_state = 51}, + [577] = {.lex_state = 45}, + [578] = {.lex_state = 51}, + [579] = {.lex_state = 51}, + [580] = {.lex_state = 51}, + [581] = {.lex_state = 45}, + [582] = {.lex_state = 45}, + [583] = {.lex_state = 45}, + [584] = {.lex_state = 45}, + [585] = {.lex_state = 51}, + [586] = {.lex_state = 45}, + [587] = {.lex_state = 51}, + [588] = {.lex_state = 51}, + [589] = {.lex_state = 45}, + [590] = {.lex_state = 45}, + [591] = {.lex_state = 45}, + [592] = {.lex_state = 45}, + [593] = {.lex_state = 51}, + [594] = {.lex_state = 45}, + [595] = {.lex_state = 51}, + [596] = {.lex_state = 45}, + [597] = {.lex_state = 45}, + [598] = {.lex_state = 45}, + [599] = {.lex_state = 45}, + [600] = {.lex_state = 51}, + [601] = {.lex_state = 45}, + [602] = {.lex_state = 51}, + [603] = {.lex_state = 51}, + [604] = {.lex_state = 51}, + [605] = {.lex_state = 51}, + [606] = {.lex_state = 51}, + [607] = {.lex_state = 51}, + [608] = {.lex_state = 51}, + [609] = {.lex_state = 51}, + [610] = {.lex_state = 51}, + [611] = {.lex_state = 51}, + [612] = {.lex_state = 51}, + [613] = {.lex_state = 51}, + [614] = {.lex_state = 51}, + [615] = {.lex_state = 51}, + [616] = {.lex_state = 51}, + [617] = {.lex_state = 51}, + [618] = {.lex_state = 52}, + [619] = {.lex_state = 45}, + [620] = {.lex_state = 45}, + [621] = {.lex_state = 45}, + [622] = {.lex_state = 45}, + [623] = {.lex_state = 45}, + [624] = {.lex_state = 45}, + [625] = {.lex_state = 45}, + [626] = {.lex_state = 45}, + [627] = {.lex_state = 45}, + [628] = {.lex_state = 45}, + [629] = {.lex_state = 45}, + [630] = {.lex_state = 45}, + [631] = {.lex_state = 45}, + [632] = {.lex_state = 45}, + [633] = {.lex_state = 45}, + [634] = {.lex_state = 45}, + [635] = {.lex_state = 45}, + [636] = {.lex_state = 45}, + [637] = {.lex_state = 45}, + [638] = {.lex_state = 45}, + [639] = {.lex_state = 45}, + [640] = {.lex_state = 45}, + [641] = {.lex_state = 45}, + [642] = {.lex_state = 45}, + [643] = {.lex_state = 45}, + [644] = {.lex_state = 45}, + [645] = {.lex_state = 45}, + [646] = {.lex_state = 45}, + [647] = {.lex_state = 45}, + [648] = {.lex_state = 45}, + [649] = {.lex_state = 45}, + [650] = {.lex_state = 45}, + [651] = {.lex_state = 45}, + [652] = {.lex_state = 45}, + [653] = {.lex_state = 45}, + [654] = {.lex_state = 45}, + [655] = {.lex_state = 45}, + [656] = {.lex_state = 45}, + [657] = {.lex_state = 45}, + [658] = {.lex_state = 45}, + [659] = {.lex_state = 45}, + [660] = {.lex_state = 45}, + [661] = {.lex_state = 45}, + [662] = {.lex_state = 45}, + [663] = {.lex_state = 45}, + [664] = {.lex_state = 45}, + [665] = {.lex_state = 45}, + [666] = {.lex_state = 45}, + [667] = {.lex_state = 45}, + [668] = {.lex_state = 45}, + [669] = {.lex_state = 45}, + [670] = {.lex_state = 45}, + [671] = {.lex_state = 45}, + [672] = {.lex_state = 45}, + [673] = {.lex_state = 45}, + [674] = {.lex_state = 45}, + [675] = {.lex_state = 46}, + [676] = {.lex_state = 46}, + [677] = {.lex_state = 46}, + [678] = {.lex_state = 46}, + [679] = {.lex_state = 46}, + [680] = {.lex_state = 46}, + [681] = {.lex_state = 46}, + [682] = {.lex_state = 49}, + [683] = {.lex_state = 46}, + [684] = {.lex_state = 46}, + [685] = {.lex_state = 49}, + [686] = {.lex_state = 46}, + [687] = {.lex_state = 49}, [688] = {.lex_state = 44}, - [689] = {.lex_state = 44}, - [690] = {.lex_state = 47}, - [691] = {.lex_state = 47}, - [692] = {.lex_state = 42}, - [693] = {.lex_state = 44}, - [694] = {.lex_state = 44}, - [695] = {.lex_state = 44}, - [696] = {.lex_state = 44}, + [689] = {.lex_state = 46}, + [690] = {.lex_state = 46}, + [691] = {.lex_state = 46}, + [692] = {.lex_state = 46}, + [693] = {.lex_state = 49}, + [694] = {.lex_state = 46}, + [695] = {.lex_state = 46}, + [696] = {.lex_state = 46}, [697] = {.lex_state = 44}, - [698] = {.lex_state = 47}, - [699] = {.lex_state = 53}, - [700] = {.lex_state = 54}, - [701] = {.lex_state = 53}, - [702] = {.lex_state = 53}, - [703] = {.lex_state = 53}, - [704] = {.lex_state = 53}, - [705] = {.lex_state = 53}, - [706] = {.lex_state = 54}, - [707] = {.lex_state = 42}, - [708] = {.lex_state = 42}, - [709] = {.lex_state = 53}, - [710] = {.lex_state = 42}, - [711] = {.lex_state = 42}, - [712] = {.lex_state = 42}, - [713] = {.lex_state = 42}, - [714] = {.lex_state = 53}, - [715] = {.lex_state = 42}, - [716] = {.lex_state = 53}, - [717] = {.lex_state = 53}, - [718] = {.lex_state = 53}, - [719] = {.lex_state = 53}, - [720] = {.lex_state = 47}, - [721] = {.lex_state = 42}, - [722] = {.lex_state = 53}, - [723] = {.lex_state = 53}, - [724] = {.lex_state = 53}, - [725] = {.lex_state = 53}, - [726] = {.lex_state = 53}, - [727] = {.lex_state = 42}, - [728] = {.lex_state = 53}, - [729] = {.lex_state = 54}, - [730] = {.lex_state = 47}, - [731] = {.lex_state = 47}, - [732] = {.lex_state = 53}, - [733] = {.lex_state = 43}, - [734] = {.lex_state = 54}, - [735] = {.lex_state = 54}, - [736] = {.lex_state = 134}, - [737] = {.lex_state = 134}, - [738] = {.lex_state = 134}, - [739] = {.lex_state = 53}, - [740] = {.lex_state = 134}, - [741] = {.lex_state = 53}, - [742] = {.lex_state = 134}, - [743] = {.lex_state = 134}, - [744] = {.lex_state = 134}, - [745] = {.lex_state = 134}, - [746] = {.lex_state = 134}, - [747] = {.lex_state = 134}, - [748] = {.lex_state = 18}, - [749] = {.lex_state = 134}, - [750] = {.lex_state = 18}, - [751] = {.lex_state = 47}, - [752] = {.lex_state = 44}, - [753] = {.lex_state = 23}, + [698] = {.lex_state = 44}, + [699] = {.lex_state = 55}, + [700] = {.lex_state = 55}, + [701] = {.lex_state = 55}, + [702] = {.lex_state = 55}, + [703] = {.lex_state = 56}, + [704] = {.lex_state = 55}, + [705] = {.lex_state = 56}, + [706] = {.lex_state = 55}, + [707] = {.lex_state = 44}, + [708] = {.lex_state = 55}, + [709] = {.lex_state = 55}, + [710] = {.lex_state = 44}, + [711] = {.lex_state = 44}, + [712] = {.lex_state = 44}, + [713] = {.lex_state = 44}, + [714] = {.lex_state = 55}, + [715] = {.lex_state = 55}, + [716] = {.lex_state = 55}, + [717] = {.lex_state = 55}, + [718] = {.lex_state = 44}, + [719] = {.lex_state = 49}, + [720] = {.lex_state = 44}, + [721] = {.lex_state = 55}, + [722] = {.lex_state = 55}, + [723] = {.lex_state = 55}, + [724] = {.lex_state = 55}, + [725] = {.lex_state = 55}, + [726] = {.lex_state = 56}, + [727] = {.lex_state = 55}, + [728] = {.lex_state = 44}, + [729] = {.lex_state = 49}, + [730] = {.lex_state = 45}, + [731] = {.lex_state = 49}, + [732] = {.lex_state = 55}, + [733] = {.lex_state = 56}, + [734] = {.lex_state = 56}, + [735] = {.lex_state = 137}, + [736] = {.lex_state = 137}, + [737] = {.lex_state = 137}, + [738] = {.lex_state = 137}, + [739] = {.lex_state = 137}, + [740] = {.lex_state = 137}, + [741] = {.lex_state = 137}, + [742] = {.lex_state = 55}, + [743] = {.lex_state = 137}, + [744] = {.lex_state = 55}, + [745] = {.lex_state = 49}, + [746] = {.lex_state = 137}, + [747] = {.lex_state = 18}, + [748] = {.lex_state = 23}, + [749] = {.lex_state = 137}, + [750] = {.lex_state = 137}, + [751] = {.lex_state = 0}, + [752] = {.lex_state = 46}, + [753] = {.lex_state = 137}, [754] = {.lex_state = 18}, - [755] = {.lex_state = 134}, - [756] = {.lex_state = 23}, - [757] = {.lex_state = 18}, - [758] = {.lex_state = 44}, - [759] = {.lex_state = 134}, - [760] = {.lex_state = 134}, - [761] = {.lex_state = 23}, - [762] = {.lex_state = 47}, - [763] = {.lex_state = 44}, - [764] = {.lex_state = 23}, - [765] = {.lex_state = 44}, - [766] = {.lex_state = 134}, + [755] = {.lex_state = 18}, + [756] = {.lex_state = 46}, + [757] = {.lex_state = 49}, + [758] = {.lex_state = 0}, + [759] = {.lex_state = 137}, + [760] = {.lex_state = 46}, + [761] = {.lex_state = 49}, + [762] = {.lex_state = 23}, + [763] = {.lex_state = 23}, + [764] = {.lex_state = 46}, + [765] = {.lex_state = 23}, + [766] = {.lex_state = 18}, [767] = {.lex_state = 18}, - [768] = {.lex_state = 47}, - [769] = {.lex_state = 44}, - [770] = {.lex_state = 47}, - [771] = {.lex_state = 18}, - [772] = {.lex_state = 44}, - [773] = {.lex_state = 23}, + [768] = {.lex_state = 137}, + [769] = {.lex_state = 23}, + [770] = {.lex_state = 137}, + [771] = {.lex_state = 46}, + [772] = {.lex_state = 0}, + [773] = {.lex_state = 46}, [774] = {.lex_state = 23}, - [775] = {.lex_state = 134}, - [776] = {.lex_state = 23}, - [777] = {.lex_state = 0}, - [778] = {.lex_state = 0}, + [775] = {.lex_state = 137}, + [776] = {.lex_state = 18}, + [777] = {.lex_state = 23}, + [778] = {.lex_state = 49}, [779] = {.lex_state = 0}, [780] = {.lex_state = 0}, [781] = {.lex_state = 0}, @@ -5824,7 +5858,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [790] = {.lex_state = 0}, [791] = {.lex_state = 0}, [792] = {.lex_state = 0}, - [793] = {.lex_state = 0}, + [793] = {.lex_state = 44}, [794] = {.lex_state = 0}, [795] = {.lex_state = 0}, [796] = {.lex_state = 0}, @@ -5839,12 +5873,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [805] = {.lex_state = 0}, [806] = {.lex_state = 0}, [807] = {.lex_state = 0}, - [808] = {.lex_state = 0}, - [809] = {.lex_state = 63}, - [810] = {.lex_state = 53}, + [808] = {.lex_state = 65}, + [809] = {.lex_state = 0}, + [810] = {.lex_state = 0}, [811] = {.lex_state = 0}, [812] = {.lex_state = 0}, - [813] = {.lex_state = 63}, + [813] = {.lex_state = 0}, [814] = {.lex_state = 0}, [815] = {.lex_state = 0}, [816] = {.lex_state = 0}, @@ -5872,14 +5906,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [838] = {.lex_state = 0}, [839] = {.lex_state = 0}, [840] = {.lex_state = 0}, - [841] = {.lex_state = 63}, + [841] = {.lex_state = 65}, [842] = {.lex_state = 0}, [843] = {.lex_state = 0}, [844] = {.lex_state = 0}, [845] = {.lex_state = 0}, [846] = {.lex_state = 0}, - [847] = {.lex_state = 0}, - [848] = {.lex_state = 42}, + [847] = {.lex_state = 65}, + [848] = {.lex_state = 0}, [849] = {.lex_state = 0}, [850] = {.lex_state = 0}, [851] = {.lex_state = 0}, @@ -5918,64 +5952,64 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [884] = {.lex_state = 0}, [885] = {.lex_state = 0}, [886] = {.lex_state = 0}, - [887] = {.lex_state = 19}, - [888] = {.lex_state = 19}, + [887] = {.lex_state = 0}, + [888] = {.lex_state = 0}, [889] = {.lex_state = 0}, [890] = {.lex_state = 0}, [891] = {.lex_state = 0}, [892] = {.lex_state = 0}, [893] = {.lex_state = 0}, - [894] = {.lex_state = 19}, - [895] = {.lex_state = 19}, - [896] = {.lex_state = 134}, - [897] = {.lex_state = 0}, - [898] = {.lex_state = 134}, - [899] = {.lex_state = 0}, + [894] = {.lex_state = 137}, + [895] = {.lex_state = 137}, + [896] = {.lex_state = 137}, + [897] = {.lex_state = 19}, + [898] = {.lex_state = 137}, + [899] = {.lex_state = 137}, [900] = {.lex_state = 0}, - [901] = {.lex_state = 19}, - [902] = {.lex_state = 42}, + [901] = {.lex_state = 44}, + [902] = {.lex_state = 19}, [903] = {.lex_state = 0}, [904] = {.lex_state = 0}, [905] = {.lex_state = 0}, [906] = {.lex_state = 19}, - [907] = {.lex_state = 19}, - [908] = {.lex_state = 134}, - [909] = {.lex_state = 0}, - [910] = {.lex_state = 134}, - [911] = {.lex_state = 134}, - [912] = {.lex_state = 0}, - [913] = {.lex_state = 134}, + [907] = {.lex_state = 0}, + [908] = {.lex_state = 0}, + [909] = {.lex_state = 19}, + [910] = {.lex_state = 0}, + [911] = {.lex_state = 0}, + [912] = {.lex_state = 137}, + [913] = {.lex_state = 137}, [914] = {.lex_state = 0}, - [915] = {.lex_state = 42}, - [916] = {.lex_state = 19}, + [915] = {.lex_state = 0}, + [916] = {.lex_state = 0}, [917] = {.lex_state = 0}, [918] = {.lex_state = 0}, [919] = {.lex_state = 0}, - [920] = {.lex_state = 0}, + [920] = {.lex_state = 19}, [921] = {.lex_state = 0}, - [922] = {.lex_state = 134}, - [923] = {.lex_state = 134}, - [924] = {.lex_state = 134}, + [922] = {.lex_state = 19}, + [923] = {.lex_state = 0}, + [924] = {.lex_state = 137}, [925] = {.lex_state = 0}, - [926] = {.lex_state = 134}, - [927] = {.lex_state = 0}, - [928] = {.lex_state = 134}, + [926] = {.lex_state = 137}, + [927] = {.lex_state = 137}, + [928] = {.lex_state = 0}, [929] = {.lex_state = 0}, [930] = {.lex_state = 0}, - [931] = {.lex_state = 0}, + [931] = {.lex_state = 44}, [932] = {.lex_state = 0}, [933] = {.lex_state = 0}, [934] = {.lex_state = 0}, - [935] = {.lex_state = 0}, - [936] = {.lex_state = 0}, - [937] = {.lex_state = 0}, - [938] = {.lex_state = 42}, + [935] = {.lex_state = 44}, + [936] = {.lex_state = 137}, + [937] = {.lex_state = 137}, + [938] = {.lex_state = 0}, [939] = {.lex_state = 0}, [940] = {.lex_state = 0}, [941] = {.lex_state = 0}, [942] = {.lex_state = 0}, [943] = {.lex_state = 0}, - [944] = {.lex_state = 0}, + [944] = {.lex_state = 19}, [945] = {.lex_state = 0}, [946] = {.lex_state = 0}, [947] = {.lex_state = 0}, @@ -5984,38 +6018,38 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [950] = {.lex_state = 0}, [951] = {.lex_state = 0}, [952] = {.lex_state = 0}, - [953] = {.lex_state = 134}, + [953] = {.lex_state = 0}, [954] = {.lex_state = 0}, - [955] = {.lex_state = 20}, - [956] = {.lex_state = 0}, + [955] = {.lex_state = 19}, + [956] = {.lex_state = 20}, [957] = {.lex_state = 0}, - [958] = {.lex_state = 65}, - [959] = {.lex_state = 65}, + [958] = {.lex_state = 0}, + [959] = {.lex_state = 0}, [960] = {.lex_state = 0}, [961] = {.lex_state = 0}, [962] = {.lex_state = 0}, [963] = {.lex_state = 0}, [964] = {.lex_state = 0}, - [965] = {.lex_state = 20}, - [966] = {.lex_state = 20}, - [967] = {.lex_state = 20}, + [965] = {.lex_state = 0}, + [966] = {.lex_state = 0}, + [967] = {.lex_state = 0}, [968] = {.lex_state = 0}, [969] = {.lex_state = 0}, - [970] = {.lex_state = 0}, + [970] = {.lex_state = 137}, [971] = {.lex_state = 0}, [972] = {.lex_state = 0}, - [973] = {.lex_state = 20}, + [973] = {.lex_state = 0}, [974] = {.lex_state = 0}, - [975] = {.lex_state = 20}, - [976] = {.lex_state = 0}, - [977] = {.lex_state = 20}, + [975] = {.lex_state = 0}, + [976] = {.lex_state = 20}, + [977] = {.lex_state = 0}, [978] = {.lex_state = 20}, [979] = {.lex_state = 0}, - [980] = {.lex_state = 0}, - [981] = {.lex_state = 20}, + [980] = {.lex_state = 20}, + [981] = {.lex_state = 0}, [982] = {.lex_state = 0}, [983] = {.lex_state = 0}, - [984] = {.lex_state = 0}, + [984] = {.lex_state = 20}, [985] = {.lex_state = 0}, [986] = {.lex_state = 0}, [987] = {.lex_state = 0}, @@ -6032,19 +6066,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [998] = {.lex_state = 0}, [999] = {.lex_state = 0}, [1000] = {.lex_state = 0}, - [1001] = {.lex_state = 0}, + [1001] = {.lex_state = 137}, [1002] = {.lex_state = 20}, - [1003] = {.lex_state = 134}, - [1004] = {.lex_state = 20}, - [1005] = {.lex_state = 0}, - [1006] = {.lex_state = 20}, - [1007] = {.lex_state = 0}, + [1003] = {.lex_state = 0}, + [1004] = {.lex_state = 0}, + [1005] = {.lex_state = 20}, + [1006] = {.lex_state = 44}, + [1007] = {.lex_state = 20}, [1008] = {.lex_state = 0}, - [1009] = {.lex_state = 0}, - [1010] = {.lex_state = 20}, + [1009] = {.lex_state = 20}, + [1010] = {.lex_state = 0}, [1011] = {.lex_state = 0}, [1012] = {.lex_state = 0}, - [1013] = {.lex_state = 0}, + [1013] = {.lex_state = 20}, [1014] = {.lex_state = 0}, [1015] = {.lex_state = 0}, [1016] = {.lex_state = 0}, @@ -6060,92 +6094,92 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1026] = {.lex_state = 0}, [1027] = {.lex_state = 0}, [1028] = {.lex_state = 0}, - [1029] = {.lex_state = 42}, - [1030] = {.lex_state = 42}, - [1031] = {.lex_state = 42}, - [1032] = {.lex_state = 134}, - [1033] = {.lex_state = 0}, - [1034] = {.lex_state = 20}, - [1035] = {.lex_state = 0}, + [1029] = {.lex_state = 0}, + [1030] = {.lex_state = 44}, + [1031] = {.lex_state = 0}, + [1032] = {.lex_state = 44}, + [1033] = {.lex_state = 44}, + [1034] = {.lex_state = 44}, + [1035] = {.lex_state = 137}, [1036] = {.lex_state = 0}, - [1037] = {.lex_state = 42}, - [1038] = {.lex_state = 20}, + [1037] = {.lex_state = 0}, + [1038] = {.lex_state = 0}, [1039] = {.lex_state = 0}, - [1040] = {.lex_state = 65}, - [1041] = {.lex_state = 42}, - [1042] = {.lex_state = 134}, - [1043] = {.lex_state = 0}, - [1044] = {.lex_state = 0}, - [1045] = {.lex_state = 0}, - [1046] = {.lex_state = 0}, - [1047] = {.lex_state = 65}, + [1040] = {.lex_state = 44}, + [1041] = {.lex_state = 0}, + [1042] = {.lex_state = 0}, + [1043] = {.lex_state = 67}, + [1044] = {.lex_state = 44}, + [1045] = {.lex_state = 137}, + [1046] = {.lex_state = 67}, + [1047] = {.lex_state = 0}, [1048] = {.lex_state = 0}, - [1049] = {.lex_state = 0}, + [1049] = {.lex_state = 20}, [1050] = {.lex_state = 0}, [1051] = {.lex_state = 0}, - [1052] = {.lex_state = 0}, + [1052] = {.lex_state = 67}, [1053] = {.lex_state = 0}, [1054] = {.lex_state = 0}, - [1055] = {.lex_state = 42}, - [1056] = {.lex_state = 0}, + [1055] = {.lex_state = 137}, + [1056] = {.lex_state = 67}, [1057] = {.lex_state = 0}, [1058] = {.lex_state = 0}, - [1059] = {.lex_state = 0}, + [1059] = {.lex_state = 67}, [1060] = {.lex_state = 0}, [1061] = {.lex_state = 0}, [1062] = {.lex_state = 0}, [1063] = {.lex_state = 0}, - [1064] = {.lex_state = 42}, - [1065] = {.lex_state = 42}, + [1064] = {.lex_state = 67}, + [1065] = {.lex_state = 0}, [1066] = {.lex_state = 0}, - [1067] = {.lex_state = 0}, - [1068] = {.lex_state = 42}, + [1067] = {.lex_state = 44}, + [1068] = {.lex_state = 44}, [1069] = {.lex_state = 0}, - [1070] = {.lex_state = 0}, - [1071] = {.lex_state = 65}, + [1070] = {.lex_state = 67}, + [1071] = {.lex_state = 44}, [1072] = {.lex_state = 0}, [1073] = {.lex_state = 0}, - [1074] = {.lex_state = 0}, + [1074] = {.lex_state = 67}, [1075] = {.lex_state = 0}, - [1076] = {.lex_state = 0}, + [1076] = {.lex_state = 137}, [1077] = {.lex_state = 0}, - [1078] = {.lex_state = 0}, + [1078] = {.lex_state = 20}, [1079] = {.lex_state = 0}, [1080] = {.lex_state = 0}, - [1081] = {.lex_state = 65}, + [1081] = {.lex_state = 0}, [1082] = {.lex_state = 0}, [1083] = {.lex_state = 0}, - [1084] = {.lex_state = 0}, + [1084] = {.lex_state = 20}, [1085] = {.lex_state = 0}, - [1086] = {.lex_state = 42}, - [1087] = {.lex_state = 42}, - [1088] = {.lex_state = 134}, + [1086] = {.lex_state = 20}, + [1087] = {.lex_state = 0}, + [1088] = {.lex_state = 20}, [1089] = {.lex_state = 0}, [1090] = {.lex_state = 0}, - [1091] = {.lex_state = 0}, + [1091] = {.lex_state = 68}, [1092] = {.lex_state = 0}, - [1093] = {.lex_state = 42}, - [1094] = {.lex_state = 42}, - [1095] = {.lex_state = 134}, - [1096] = {.lex_state = 20}, - [1097] = {.lex_state = 42}, - [1098] = {.lex_state = 134}, + [1093] = {.lex_state = 0}, + [1094] = {.lex_state = 0}, + [1095] = {.lex_state = 0}, + [1096] = {.lex_state = 44}, + [1097] = {.lex_state = 44}, + [1098] = {.lex_state = 20}, [1099] = {.lex_state = 0}, - [1100] = {.lex_state = 65}, + [1100] = {.lex_state = 44}, [1101] = {.lex_state = 0}, - [1102] = {.lex_state = 65}, - [1103] = {.lex_state = 0}, - [1104] = {.lex_state = 0}, + [1102] = {.lex_state = 0}, + [1103] = {.lex_state = 67}, + [1104] = {.lex_state = 44}, [1105] = {.lex_state = 0}, - [1106] = {.lex_state = 42}, + [1106] = {.lex_state = 20}, [1107] = {.lex_state = 0}, [1108] = {.lex_state = 0}, [1109] = {.lex_state = 0}, - [1110] = {.lex_state = 0}, + [1110] = {.lex_state = 20}, [1111] = {.lex_state = 0}, [1112] = {.lex_state = 0}, [1113] = {.lex_state = 0}, - [1114] = {.lex_state = 42}, + [1114] = {.lex_state = 20}, [1115] = {.lex_state = 0}, [1116] = {.lex_state = 0}, [1117] = {.lex_state = 0}, @@ -6153,64 +6187,64 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1119] = {.lex_state = 0}, [1120] = {.lex_state = 0}, [1121] = {.lex_state = 0}, - [1122] = {.lex_state = 42}, - [1123] = {.lex_state = 42}, - [1124] = {.lex_state = 0}, - [1125] = {.lex_state = 0}, - [1126] = {.lex_state = 65}, + [1122] = {.lex_state = 0}, + [1123] = {.lex_state = 0}, + [1124] = {.lex_state = 44}, + [1125] = {.lex_state = 44}, + [1126] = {.lex_state = 44}, [1127] = {.lex_state = 0}, - [1128] = {.lex_state = 0}, - [1129] = {.lex_state = 0}, - [1130] = {.lex_state = 0}, - [1131] = {.lex_state = 20}, + [1128] = {.lex_state = 69}, + [1129] = {.lex_state = 67}, + [1130] = {.lex_state = 20}, + [1131] = {.lex_state = 0}, [1132] = {.lex_state = 0}, - [1133] = {.lex_state = 134}, + [1133] = {.lex_state = 0}, [1134] = {.lex_state = 0}, - [1135] = {.lex_state = 42}, - [1136] = {.lex_state = 0}, - [1137] = {.lex_state = 20}, - [1138] = {.lex_state = 134}, - [1139] = {.lex_state = 20}, + [1135] = {.lex_state = 0}, + [1136] = {.lex_state = 20}, + [1137] = {.lex_state = 0}, + [1138] = {.lex_state = 0}, + [1139] = {.lex_state = 0}, [1140] = {.lex_state = 0}, [1141] = {.lex_state = 0}, [1142] = {.lex_state = 0}, - [1143] = {.lex_state = 0}, - [1144] = {.lex_state = 20}, + [1143] = {.lex_state = 137}, + [1144] = {.lex_state = 0}, [1145] = {.lex_state = 0}, [1146] = {.lex_state = 0}, - [1147] = {.lex_state = 42}, - [1148] = {.lex_state = 42}, - [1149] = {.lex_state = 20}, - [1150] = {.lex_state = 0}, - [1151] = {.lex_state = 65}, + [1147] = {.lex_state = 20}, + [1148] = {.lex_state = 0}, + [1149] = {.lex_state = 0}, + [1150] = {.lex_state = 44}, + [1151] = {.lex_state = 44}, [1152] = {.lex_state = 0}, [1153] = {.lex_state = 0}, - [1154] = {.lex_state = 0}, + [1154] = {.lex_state = 67}, [1155] = {.lex_state = 0}, - [1156] = {.lex_state = 0}, + [1156] = {.lex_state = 20}, [1157] = {.lex_state = 0}, [1158] = {.lex_state = 0}, - [1159] = {.lex_state = 20}, + [1159] = {.lex_state = 0}, [1160] = {.lex_state = 0}, [1161] = {.lex_state = 0}, [1162] = {.lex_state = 0}, [1163] = {.lex_state = 0}, [1164] = {.lex_state = 0}, [1165] = {.lex_state = 0}, - [1166] = {.lex_state = 20}, + [1166] = {.lex_state = 0}, [1167] = {.lex_state = 0}, [1168] = {.lex_state = 0}, - [1169] = {.lex_state = 0}, - [1170] = {.lex_state = 134}, + [1169] = {.lex_state = 137}, + [1170] = {.lex_state = 44}, [1171] = {.lex_state = 0}, [1172] = {.lex_state = 0}, - [1173] = {.lex_state = 0}, + [1173] = {.lex_state = 137}, [1174] = {.lex_state = 0}, [1175] = {.lex_state = 0}, - [1176] = {.lex_state = 134}, + [1176] = {.lex_state = 0}, [1177] = {.lex_state = 0}, [1178] = {.lex_state = 0}, - [1179] = {.lex_state = 0}, + [1179] = {.lex_state = 137}, [1180] = {.lex_state = 0}, [1181] = {.lex_state = 0}, [1182] = {.lex_state = 0}, @@ -6219,12 +6253,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1185] = {.lex_state = 0}, [1186] = {.lex_state = 0}, [1187] = {.lex_state = 0}, - [1188] = {.lex_state = 20}, + [1188] = {.lex_state = 0}, [1189] = {.lex_state = 0}, [1190] = {.lex_state = 0}, - [1191] = {.lex_state = 0}, + [1191] = {.lex_state = 20}, [1192] = {.lex_state = 0}, - [1193] = {.lex_state = 66}, + [1193] = {.lex_state = 0}, [1194] = {.lex_state = 0}, [1195] = {.lex_state = 0}, [1196] = {.lex_state = 0}, @@ -6232,14 +6266,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1198] = {.lex_state = 0}, [1199] = {.lex_state = 0}, [1200] = {.lex_state = 0}, - [1201] = {.lex_state = 20}, + [1201] = {.lex_state = 0}, [1202] = {.lex_state = 0}, - [1203] = {.lex_state = 0}, + [1203] = {.lex_state = 20}, [1204] = {.lex_state = 0}, [1205] = {.lex_state = 0}, [1206] = {.lex_state = 0}, [1207] = {.lex_state = 0}, - [1208] = {.lex_state = 65}, + [1208] = {.lex_state = 0}, [1209] = {.lex_state = 0}, [1210] = {.lex_state = 0}, [1211] = {.lex_state = 0}, @@ -6255,32 +6289,35 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1221] = {.lex_state = 0}, [1222] = {.lex_state = 0}, [1223] = {.lex_state = 0}, - [1224] = {.lex_state = 0}, + [1224] = {.lex_state = 20}, [1225] = {.lex_state = 0}, [1226] = {.lex_state = 0}, [1227] = {.lex_state = 0}, [1228] = {.lex_state = 0}, - [1229] = {.lex_state = 65}, - [1230] = {.lex_state = 65}, - [1231] = {.lex_state = 65}, - [1232] = {.lex_state = 65}, - [1233] = {.lex_state = 65}, - [1234] = {.lex_state = 65}, - [1235] = {.lex_state = 65}, - [1236] = {.lex_state = 65}, - [1237] = {.lex_state = 65}, - [1238] = {.lex_state = 65}, - [1239] = {.lex_state = 65}, - [1240] = {.lex_state = 65}, - [1241] = {.lex_state = 65}, - [1242] = {.lex_state = 65}, - [1243] = {.lex_state = 65}, - [1244] = {.lex_state = 65}, - [1245] = {.lex_state = 65}, - [1246] = {.lex_state = 65}, - [1247] = {.lex_state = 65}, - [1248] = {.lex_state = 65}, - [1249] = {.lex_state = 20}, + [1229] = {.lex_state = 0}, + [1230] = {.lex_state = 0}, + [1231] = {.lex_state = 0}, + [1232] = {.lex_state = 67}, + [1233] = {.lex_state = 67}, + [1234] = {.lex_state = 67}, + [1235] = {.lex_state = 67}, + [1236] = {.lex_state = 67}, + [1237] = {.lex_state = 67}, + [1238] = {.lex_state = 67}, + [1239] = {.lex_state = 67}, + [1240] = {.lex_state = 67}, + [1241] = {.lex_state = 67}, + [1242] = {.lex_state = 67}, + [1243] = {.lex_state = 67}, + [1244] = {.lex_state = 67}, + [1245] = {.lex_state = 67}, + [1246] = {.lex_state = 67}, + [1247] = {.lex_state = 67}, + [1248] = {.lex_state = 67}, + [1249] = {.lex_state = 67}, + [1250] = {.lex_state = 67}, + [1251] = {.lex_state = 67}, + [1252] = {.lex_state = 44}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -6291,8 +6328,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__property_starts_with_number] = ACTIONS(1), [anon_sym_AMP] = ACTIONS(1), - [anon_sym_AMP_LBRACE] = ACTIONS(1), + [anon_sym_SLASH] = ACTIONS(1), [anon_sym_AT] = ACTIONS(1), + [anon_sym_AMP_LBRACE] = ACTIONS(1), [anon_sym_RBRACE] = ACTIONS(1), [anon_sym_LBRACE] = ACTIONS(1), [anon_sym_EQ] = ACTIONS(1), @@ -6313,7 +6351,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(1), [anon_sym_PLUS] = ACTIONS(1), [anon_sym_STAR] = ACTIONS(1), - [anon_sym_SLASH] = ACTIONS(1), [anon_sym_PERCENT] = ACTIONS(1), [anon_sym_PIPE_PIPE] = ACTIONS(1), [anon_sym_AMP_AMP] = ACTIONS(1), @@ -6341,14 +6378,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_defined] = ACTIONS(1), }, [1] = { - [sym_document] = STATE(1108), + [sym_document] = STATE(1075), [sym__top_level_item] = STATE(37), - [sym__label] = STATE(735), + [sym__label] = STATE(734), [sym_file_version] = STATE(37), [sym_plugin] = STATE(37), [sym_memory_reservation] = STATE(37), - [sym_reference] = STATE(1128), - [sym__label_reference] = STATE(710), + [sym_reference] = STATE(1105), + [sym__label_reference] = STATE(707), [sym__node_reference] = STATE(711), [sym_omit_if_no_ref] = STATE(37), [sym_node] = STATE(37), @@ -6361,7 +6398,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(37), [sym_preproc_ifdef] = STATE(37), [aux_sym_document_repeat1] = STATE(37), - [aux_sym_memory_reservation_repeat1] = STATE(700), + [aux_sym_memory_reservation_repeat1] = STATE(705), [ts_builtin_sym_end] = ACTIONS(5), [anon_sym_SLASHdts_DASHv1_SLASH] = ACTIONS(7), [anon_sym_SLASHplugin_SLASH] = ACTIONS(9), @@ -6420,15 +6457,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, ACTIONS(41), 1, aux_sym_preproc_elif_token1, - STATE(700), 1, + STATE(705), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(735), 1, + STATE(734), 1, sym__label, - STATE(1128), 1, + STATE(1105), 1, sym_reference, ACTIONS(15), 2, sym__node_path, @@ -6439,7 +6476,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(43), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1056), 3, + STATE(1160), 3, sym_preproc_else, sym_preproc_elif, sym_preproc_elifdef, @@ -6494,15 +6531,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elif_token1, ACTIONS(45), 1, aux_sym_preproc_if_token2, - STATE(700), 1, + STATE(705), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(735), 1, + STATE(734), 1, sym__label, - STATE(1128), 1, + STATE(1105), 1, sym_reference, ACTIONS(15), 2, sym__node_path, @@ -6513,7 +6550,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(43), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(956), 3, + STATE(1031), 3, sym_preproc_else, sym_preproc_elif, sym_preproc_elifdef, @@ -6568,15 +6605,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elif_token1, ACTIONS(47), 1, aux_sym_preproc_if_token2, - STATE(700), 1, + STATE(705), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(735), 1, + STATE(734), 1, sym__label, - STATE(1128), 1, + STATE(1105), 1, sym_reference, ACTIONS(15), 2, sym__node_path, @@ -6587,7 +6624,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(43), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(961), 3, + STATE(1223), 3, sym_preproc_else, sym_preproc_elif, sym_preproc_elifdef, @@ -6642,15 +6679,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elif_token1, ACTIONS(49), 1, aux_sym_preproc_if_token2, - STATE(700), 1, + STATE(705), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(735), 1, + STATE(734), 1, sym__label, - STATE(1128), 1, + STATE(1105), 1, sym_reference, ACTIONS(15), 2, sym__node_path, @@ -6661,7 +6698,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(43), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1053), 3, + STATE(1108), 3, sym_preproc_else, sym_preproc_elif, sym_preproc_elifdef, @@ -6712,15 +6749,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(98), 1, aux_sym_preproc_elif_token1, - STATE(700), 1, + STATE(705), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(735), 1, + STATE(734), 1, sym__label, - STATE(1128), 1, + STATE(1105), 1, sym_reference, ACTIONS(65), 2, sym__node_path, @@ -6785,15 +6822,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token2, ACTIONS(128), 1, aux_sym_preproc_elif_token1, - STATE(706), 1, + STATE(703), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(735), 1, + STATE(734), 1, sym__label, - STATE(1187), 1, + STATE(1190), 1, sym_reference, ACTIONS(108), 2, sym__node_path, @@ -6801,7 +6838,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(126), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1173), 2, + STATE(1152), 2, sym_preproc_else, sym_preproc_elif, STATE(9), 15, @@ -6853,15 +6890,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, ACTIONS(158), 1, aux_sym_preproc_elif_token1, - STATE(680), 1, + STATE(685), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1198), 1, + STATE(1201), 1, sym_reference, ACTIONS(43), 2, aux_sym_preproc_elifdef_token1, @@ -6872,7 +6909,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(154), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1112), 3, + STATE(1193), 3, sym_preproc_elifdef, sym_preproc_else_in_node, sym_preproc_elif_in_node, @@ -6925,15 +6962,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elif_token1, ACTIONS(160), 1, aux_sym_preproc_if_token2, - STATE(706), 1, + STATE(703), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(735), 1, + STATE(734), 1, sym__label, - STATE(1187), 1, + STATE(1190), 1, sym_reference, ACTIONS(108), 2, sym__node_path, @@ -6941,7 +6978,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(126), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1189), 2, + STATE(1204), 2, sym_preproc_else, sym_preproc_elif, STATE(23), 15, @@ -6995,15 +7032,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elif_token1, ACTIONS(162), 1, aux_sym_preproc_if_token2, - STATE(706), 1, + STATE(703), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(735), 1, + STATE(734), 1, sym__label, - STATE(1187), 1, + STATE(1190), 1, sym_reference, ACTIONS(108), 2, sym__node_path, @@ -7011,7 +7048,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(126), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1153), 2, + STATE(972), 2, sym_preproc_else, sym_preproc_elif, STATE(13), 15, @@ -7063,15 +7100,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elif_token1, ACTIONS(164), 1, aux_sym_preproc_if_token2, - STATE(680), 1, + STATE(685), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1198), 1, + STATE(1201), 1, sym_reference, ACTIONS(43), 2, aux_sym_preproc_elifdef_token1, @@ -7082,7 +7119,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(154), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1109), 3, + STATE(1092), 3, sym_preproc_elifdef, sym_preproc_else_in_node, sym_preproc_elif_in_node, @@ -7135,15 +7172,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elif_token1, ACTIONS(166), 1, aux_sym_preproc_if_token2, - STATE(706), 1, + STATE(703), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(735), 1, + STATE(734), 1, sym__label, - STATE(1187), 1, + STATE(1190), 1, sym_reference, ACTIONS(108), 2, sym__node_path, @@ -7151,7 +7188,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(126), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(970), 2, + STATE(1099), 2, sym_preproc_else, sym_preproc_elif, STATE(14), 15, @@ -7205,15 +7242,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elif_token1, ACTIONS(168), 1, aux_sym_preproc_if_token2, - STATE(706), 1, + STATE(703), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(735), 1, + STATE(734), 1, sym__label, - STATE(1187), 1, + STATE(1190), 1, sym_reference, ACTIONS(108), 2, sym__node_path, @@ -7221,7 +7258,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(126), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(998), 2, + STATE(1196), 2, sym_preproc_else, sym_preproc_elif, STATE(23), 15, @@ -7275,15 +7312,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elif_token1, ACTIONS(170), 1, aux_sym_preproc_if_token2, - STATE(706), 1, + STATE(703), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(735), 1, + STATE(734), 1, sym__label, - STATE(1187), 1, + STATE(1190), 1, sym_reference, ACTIONS(108), 2, sym__node_path, @@ -7291,7 +7328,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(126), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1169), 2, + STATE(1037), 2, sym_preproc_else, sym_preproc_elif, STATE(23), 15, @@ -7343,15 +7380,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elif_token1, ACTIONS(172), 1, aux_sym_preproc_if_token2, - STATE(680), 1, + STATE(685), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1198), 1, + STATE(1201), 1, sym_reference, ACTIONS(43), 2, aux_sym_preproc_elifdef_token1, @@ -7362,7 +7399,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(154), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1050), 3, + STATE(1123), 3, sym_preproc_elifdef, sym_preproc_else_in_node, sym_preproc_elif_in_node, @@ -7415,15 +7452,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elif_token1, ACTIONS(174), 1, aux_sym_preproc_if_token2, - STATE(706), 1, + STATE(703), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(735), 1, + STATE(734), 1, sym__label, - STATE(1187), 1, + STATE(1190), 1, sym_reference, ACTIONS(108), 2, sym__node_path, @@ -7431,7 +7468,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(126), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1051), 2, + STATE(1093), 2, sym_preproc_else, sym_preproc_elif, STATE(18), 15, @@ -7483,15 +7520,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elif_token1, ACTIONS(176), 1, aux_sym_preproc_if_token2, - STATE(680), 1, + STATE(685), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1198), 1, + STATE(1201), 1, sym_reference, ACTIONS(43), 2, aux_sym_preproc_elifdef_token1, @@ -7502,7 +7539,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(154), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1092), 3, + STATE(1202), 3, sym_preproc_elifdef, sym_preproc_else_in_node, sym_preproc_elif_in_node, @@ -7555,15 +7592,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elif_token1, ACTIONS(178), 1, aux_sym_preproc_if_token2, - STATE(706), 1, + STATE(703), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(735), 1, + STATE(734), 1, sym__label, - STATE(1187), 1, + STATE(1190), 1, sym_reference, ACTIONS(108), 2, sym__node_path, @@ -7571,7 +7608,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(126), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1113), 2, + STATE(958), 2, sym_preproc_else, sym_preproc_elif, STATE(23), 15, @@ -7623,15 +7660,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elif_token1, ACTIONS(180), 1, aux_sym_preproc_if_token2, - STATE(680), 1, + STATE(685), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1198), 1, + STATE(1201), 1, sym_reference, ACTIONS(43), 2, aux_sym_preproc_elifdef_token1, @@ -7642,7 +7679,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(154), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1132), 3, + STATE(971), 3, sym_preproc_elifdef, sym_preproc_else_in_node, sym_preproc_elif_in_node, @@ -7693,15 +7730,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elif_token1, ACTIONS(182), 1, aux_sym_preproc_if_token2, - STATE(680), 1, + STATE(685), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1198), 1, + STATE(1201), 1, sym_reference, ACTIONS(43), 2, aux_sym_preproc_elifdef_token1, @@ -7712,7 +7749,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(154), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1077), 3, + STATE(1148), 3, sym_preproc_elifdef, sym_preproc_else_in_node, sym_preproc_elif_in_node, @@ -7763,15 +7800,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elif_token1, ACTIONS(184), 1, aux_sym_preproc_if_token2, - STATE(680), 1, + STATE(685), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1198), 1, + STATE(1201), 1, sym_reference, ACTIONS(43), 2, aux_sym_preproc_elifdef_token1, @@ -7782,7 +7819,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(154), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1168), 3, + STATE(1109), 3, sym_preproc_elifdef, sym_preproc_else_in_node, sym_preproc_elif_in_node, @@ -7833,15 +7870,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elif_token1, ACTIONS(186), 1, aux_sym_preproc_if_token2, - STATE(680), 1, + STATE(685), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1198), 1, + STATE(1201), 1, sym_reference, ACTIONS(43), 2, aux_sym_preproc_elifdef_token1, @@ -7852,7 +7889,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(154), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1197), 3, + STATE(1192), 3, sym_preproc_elifdef, sym_preproc_else_in_node, sym_preproc_elif_in_node, @@ -7899,15 +7936,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(221), 1, aux_sym_preproc_if_token1, - STATE(706), 1, + STATE(703), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(735), 1, + STATE(734), 1, sym__label, - STATE(1187), 1, + STATE(1190), 1, sym_reference, ACTIONS(200), 2, sym__node_path, @@ -7968,15 +8005,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token2, ACTIONS(253), 1, aux_sym_preproc_elif_token1, - STATE(690), 1, + STATE(682), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1209), 1, + STATE(1212), 1, sym_reference, ACTIONS(233), 2, sym__property_with_hash, @@ -7984,7 +8021,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(251), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1130), 2, + STATE(969), 2, sym_preproc_else_in_node, sym_preproc_elif_in_node, STATE(30), 13, @@ -8034,15 +8071,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elif_token1, ACTIONS(255), 1, aux_sym_preproc_if_token2, - STATE(690), 1, + STATE(682), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1209), 1, + STATE(1212), 1, sym_reference, ACTIONS(233), 2, sym__property_with_hash, @@ -8050,7 +8087,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(251), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1057), 2, + STATE(1213), 2, sym_preproc_else_in_node, sym_preproc_elif_in_node, STATE(26), 13, @@ -8100,15 +8137,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elif_token1, ACTIONS(257), 1, aux_sym_preproc_if_token2, - STATE(690), 1, + STATE(682), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1209), 1, + STATE(1212), 1, sym_reference, ACTIONS(233), 2, sym__property_with_hash, @@ -8116,7 +8153,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(251), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1110), 2, + STATE(1060), 2, sym_preproc_else_in_node, sym_preproc_elif_in_node, STATE(38), 13, @@ -8166,15 +8203,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elif_token1, ACTIONS(259), 1, aux_sym_preproc_if_token2, - STATE(690), 1, + STATE(682), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1209), 1, + STATE(1212), 1, sym_reference, ACTIONS(233), 2, sym__property_with_hash, @@ -8182,7 +8219,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(251), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1105), 2, + STATE(1180), 2, sym_preproc_else_in_node, sym_preproc_elif_in_node, STATE(38), 13, @@ -8232,15 +8269,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elif_token1, ACTIONS(261), 1, aux_sym_preproc_if_token2, - STATE(690), 1, + STATE(682), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1209), 1, + STATE(1212), 1, sym_reference, ACTIONS(233), 2, sym__property_with_hash, @@ -8248,7 +8285,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(251), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1073), 2, + STATE(1146), 2, sym_preproc_else_in_node, sym_preproc_elif_in_node, STATE(27), 13, @@ -8294,15 +8331,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(307), 1, aux_sym_preproc_elif_token1, - STATE(680), 1, + STATE(685), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1198), 1, + STATE(1201), 1, sym_reference, ACTIONS(272), 2, sym__property_with_hash, @@ -8362,15 +8399,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elif_token1, ACTIONS(309), 1, aux_sym_preproc_if_token2, - STATE(690), 1, + STATE(682), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1209), 1, + STATE(1212), 1, sym_reference, ACTIONS(233), 2, sym__property_with_hash, @@ -8378,7 +8415,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(251), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1167), 2, + STATE(1050), 2, sym_preproc_else_in_node, sym_preproc_elif_in_node, STATE(38), 13, @@ -8428,15 +8465,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elif_token1, ACTIONS(311), 1, aux_sym_preproc_if_token2, - STATE(690), 1, + STATE(682), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1209), 1, + STATE(1212), 1, sym_reference, ACTIONS(233), 2, sym__property_with_hash, @@ -8444,7 +8481,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(251), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(968), 2, + STATE(1036), 2, sym_preproc_else_in_node, sym_preproc_elif_in_node, STATE(32), 13, @@ -8494,15 +8531,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elif_token1, ACTIONS(313), 1, aux_sym_preproc_if_token2, - STATE(690), 1, + STATE(682), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1209), 1, + STATE(1212), 1, sym_reference, ACTIONS(233), 2, sym__property_with_hash, @@ -8510,7 +8547,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(251), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1142), 2, + STATE(1164), 2, sym_preproc_else_in_node, sym_preproc_elif_in_node, STATE(38), 13, @@ -8560,15 +8597,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elif_token1, ACTIONS(315), 1, aux_sym_preproc_if_token2, - STATE(690), 1, + STATE(682), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1209), 1, + STATE(1212), 1, sym_reference, ACTIONS(233), 2, sym__property_with_hash, @@ -8576,7 +8613,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(251), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1190), 2, + STATE(1182), 2, sym_preproc_else_in_node, sym_preproc_elif_in_node, STATE(34), 13, @@ -8626,15 +8663,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elif_token1, ACTIONS(317), 1, aux_sym_preproc_if_token2, - STATE(690), 1, + STATE(682), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1209), 1, + STATE(1212), 1, sym_reference, ACTIONS(233), 2, sym__property_with_hash, @@ -8642,7 +8679,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(251), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1228), 2, + STATE(1225), 2, sym_preproc_else_in_node, sym_preproc_elif_in_node, STATE(38), 13, @@ -8690,15 +8727,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(319), 1, aux_sym_preproc_if_token2, - STATE(700), 1, + STATE(705), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(735), 1, + STATE(734), 1, sym__label, - STATE(1128), 1, + STATE(1105), 1, sym_reference, ACTIONS(15), 2, sym__node_path, @@ -8753,15 +8790,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(321), 1, aux_sym_preproc_if_token2, - STATE(700), 1, + STATE(705), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(735), 1, + STATE(734), 1, sym__label, - STATE(1128), 1, + STATE(1105), 1, sym_reference, ACTIONS(15), 2, sym__node_path, @@ -8816,15 +8853,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(323), 1, ts_builtin_sym_end, - STATE(700), 1, + STATE(705), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(735), 1, + STATE(734), 1, sym__label, - STATE(1128), 1, + STATE(1105), 1, sym_reference, ACTIONS(15), 2, sym__node_path, @@ -8875,15 +8912,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(355), 1, aux_sym_preproc_if_token1, - STATE(690), 1, + STATE(682), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1209), 1, + STATE(1212), 1, sym_reference, ACTIONS(334), 2, sym__property_with_hash, @@ -8938,15 +8975,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(383), 1, aux_sym_preproc_if_token1, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -8954,7 +8991,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(58), 13, + STATE(43), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -8997,15 +9034,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(387), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -9013,7 +9050,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(58), 13, + STATE(60), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -9056,15 +9093,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(389), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -9072,7 +9109,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(58), 13, + STATE(60), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -9115,15 +9152,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(391), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -9131,7 +9168,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(58), 13, + STATE(60), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -9152,45 +9189,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(19), 1, anon_sym_AMP_LBRACE, - ACTIONS(393), 1, + ACTIONS(361), 1, sym__label_name, - ACTIONS(395), 1, + ACTIONS(363), 1, sym__node_path, - ACTIONS(397), 1, + ACTIONS(365), 1, sym__node_or_property, - ACTIONS(401), 1, + ACTIONS(371), 1, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, - ACTIONS(403), 1, + ACTIONS(373), 1, anon_sym_SLASHdelete_DASHnode_SLASH, - ACTIONS(405), 1, + ACTIONS(375), 1, anon_sym_SLASHdelete_DASHproperty_SLASH, - ACTIONS(407), 1, + ACTIONS(377), 1, aux_sym_preproc_include_token1, - ACTIONS(409), 1, + ACTIONS(379), 1, aux_sym_preproc_def_token1, - ACTIONS(411), 1, + ACTIONS(381), 1, aux_sym_preproc_undef_token1, - ACTIONS(413), 1, + ACTIONS(383), 1, aux_sym_preproc_if_token1, - ACTIONS(415), 1, - aux_sym_preproc_if_token2, - STATE(691), 1, + ACTIONS(393), 1, + anon_sym_RBRACE, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1219), 1, + STATE(1177), 1, sym_reference, - ACTIONS(399), 2, + ACTIONS(367), 2, sym__property_with_hash, sym__property_starts_with_number, - ACTIONS(417), 2, + ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(47), 13, + STATE(60), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -9231,17 +9268,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(383), 1, aux_sym_preproc_if_token1, - ACTIONS(419), 1, + ACTIONS(395), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -9249,7 +9286,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(48), 13, + STATE(60), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -9290,17 +9327,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(383), 1, aux_sym_preproc_if_token1, - ACTIONS(421), 1, + ACTIONS(397), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -9308,7 +9345,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(49), 13, + STATE(60), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -9329,42 +9366,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(19), 1, anon_sym_AMP_LBRACE, - ACTIONS(361), 1, + ACTIONS(399), 1, sym__label_name, - ACTIONS(363), 1, + ACTIONS(401), 1, sym__node_path, - ACTIONS(365), 1, + ACTIONS(403), 1, sym__node_or_property, - ACTIONS(371), 1, + ACTIONS(407), 1, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, - ACTIONS(373), 1, + ACTIONS(409), 1, anon_sym_SLASHdelete_DASHnode_SLASH, - ACTIONS(375), 1, + ACTIONS(411), 1, anon_sym_SLASHdelete_DASHproperty_SLASH, - ACTIONS(377), 1, + ACTIONS(413), 1, aux_sym_preproc_include_token1, - ACTIONS(379), 1, + ACTIONS(415), 1, aux_sym_preproc_def_token1, - ACTIONS(381), 1, + ACTIONS(417), 1, aux_sym_preproc_undef_token1, - ACTIONS(383), 1, + ACTIONS(419), 1, aux_sym_preproc_if_token1, - ACTIONS(423), 1, - anon_sym_RBRACE, - STATE(698), 1, + ACTIONS(421), 1, + aux_sym_preproc_if_token2, + STATE(687), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1222), 1, sym_reference, - ACTIONS(367), 2, + ACTIONS(405), 2, sym__property_with_hash, sym__property_starts_with_number, - ACTIONS(385), 2, + ACTIONS(423), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, STATE(50), 13, @@ -9388,45 +9425,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(19), 1, anon_sym_AMP_LBRACE, - ACTIONS(393), 1, + ACTIONS(361), 1, sym__label_name, - ACTIONS(395), 1, + ACTIONS(363), 1, sym__node_path, - ACTIONS(397), 1, + ACTIONS(365), 1, sym__node_or_property, - ACTIONS(401), 1, + ACTIONS(371), 1, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, - ACTIONS(403), 1, + ACTIONS(373), 1, anon_sym_SLASHdelete_DASHnode_SLASH, - ACTIONS(405), 1, + ACTIONS(375), 1, anon_sym_SLASHdelete_DASHproperty_SLASH, - ACTIONS(407), 1, + ACTIONS(377), 1, aux_sym_preproc_include_token1, - ACTIONS(409), 1, + ACTIONS(379), 1, aux_sym_preproc_def_token1, - ACTIONS(411), 1, + ACTIONS(381), 1, aux_sym_preproc_undef_token1, - ACTIONS(413), 1, + ACTIONS(383), 1, aux_sym_preproc_if_token1, ACTIONS(425), 1, - aux_sym_preproc_if_token2, - STATE(691), 1, + anon_sym_RBRACE, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1219), 1, + STATE(1177), 1, sym_reference, - ACTIONS(399), 2, + ACTIONS(367), 2, sym__property_with_hash, sym__property_starts_with_number, - ACTIONS(417), 2, + ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(54), 13, + STATE(51), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -9469,15 +9506,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(427), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -9485,7 +9522,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(58), 13, + STATE(52), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -9528,15 +9565,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(429), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -9544,7 +9581,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(58), 13, + STATE(53), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -9565,45 +9602,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(19), 1, anon_sym_AMP_LBRACE, - ACTIONS(361), 1, + ACTIONS(399), 1, sym__label_name, - ACTIONS(363), 1, + ACTIONS(401), 1, sym__node_path, - ACTIONS(365), 1, + ACTIONS(403), 1, sym__node_or_property, - ACTIONS(371), 1, + ACTIONS(407), 1, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, - ACTIONS(373), 1, + ACTIONS(409), 1, anon_sym_SLASHdelete_DASHnode_SLASH, - ACTIONS(375), 1, + ACTIONS(411), 1, anon_sym_SLASHdelete_DASHproperty_SLASH, - ACTIONS(377), 1, + ACTIONS(413), 1, aux_sym_preproc_include_token1, - ACTIONS(379), 1, + ACTIONS(415), 1, aux_sym_preproc_def_token1, - ACTIONS(381), 1, + ACTIONS(417), 1, aux_sym_preproc_undef_token1, - ACTIONS(383), 1, + ACTIONS(419), 1, aux_sym_preproc_if_token1, ACTIONS(431), 1, - anon_sym_RBRACE, - STATE(698), 1, + aux_sym_preproc_if_token2, + STATE(687), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1222), 1, sym_reference, - ACTIONS(367), 2, + ACTIONS(405), 2, sym__property_with_hash, sym__property_starts_with_number, - ACTIONS(385), 2, + ACTIONS(423), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(58), 13, + STATE(55), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -9646,15 +9683,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(433), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -9662,7 +9699,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(123), 13, + STATE(60), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -9705,15 +9742,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(435), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -9721,7 +9758,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(92), 13, + STATE(60), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -9764,15 +9801,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(437), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -9780,7 +9817,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(40), 13, + STATE(60), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -9797,49 +9834,49 @@ static const uint16_t ts_small_parse_table[] = { [4674] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(275), 1, + ACTIONS(17), 1, anon_sym_AMP, - ACTIONS(278), 1, + ACTIONS(19), 1, anon_sym_AMP_LBRACE, - ACTIONS(302), 1, - aux_sym_preproc_if_token2, - ACTIONS(439), 1, + ACTIONS(361), 1, sym__label_name, - ACTIONS(442), 1, + ACTIONS(363), 1, sym__node_path, - ACTIONS(445), 1, + ACTIONS(365), 1, sym__node_or_property, - ACTIONS(451), 1, + ACTIONS(371), 1, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, - ACTIONS(454), 1, + ACTIONS(373), 1, anon_sym_SLASHdelete_DASHnode_SLASH, - ACTIONS(457), 1, + ACTIONS(375), 1, anon_sym_SLASHdelete_DASHproperty_SLASH, - ACTIONS(460), 1, + ACTIONS(377), 1, aux_sym_preproc_include_token1, - ACTIONS(463), 1, + ACTIONS(379), 1, aux_sym_preproc_def_token1, - ACTIONS(466), 1, + ACTIONS(381), 1, aux_sym_preproc_undef_token1, - ACTIONS(469), 1, + ACTIONS(383), 1, aux_sym_preproc_if_token1, - STATE(691), 1, + ACTIONS(439), 1, + anon_sym_RBRACE, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1219), 1, + STATE(1177), 1, sym_reference, - ACTIONS(448), 2, + ACTIONS(367), 2, sym__property_with_hash, sym__property_starts_with_number, - ACTIONS(472), 2, + ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(54), 13, + STATE(40), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -9856,49 +9893,49 @@ static const uint16_t ts_small_parse_table[] = { [4755] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(17), 1, + ACTIONS(275), 1, anon_sym_AMP, - ACTIONS(19), 1, + ACTIONS(278), 1, anon_sym_AMP_LBRACE, - ACTIONS(361), 1, + ACTIONS(302), 1, + aux_sym_preproc_if_token2, + ACTIONS(441), 1, sym__label_name, - ACTIONS(363), 1, + ACTIONS(444), 1, sym__node_path, - ACTIONS(365), 1, + ACTIONS(447), 1, sym__node_or_property, - ACTIONS(371), 1, + ACTIONS(453), 1, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, - ACTIONS(373), 1, + ACTIONS(456), 1, anon_sym_SLASHdelete_DASHnode_SLASH, - ACTIONS(375), 1, + ACTIONS(459), 1, anon_sym_SLASHdelete_DASHproperty_SLASH, - ACTIONS(377), 1, + ACTIONS(462), 1, aux_sym_preproc_include_token1, - ACTIONS(379), 1, + ACTIONS(465), 1, aux_sym_preproc_def_token1, - ACTIONS(381), 1, + ACTIONS(468), 1, aux_sym_preproc_undef_token1, - ACTIONS(383), 1, + ACTIONS(471), 1, aux_sym_preproc_if_token1, - ACTIONS(475), 1, - anon_sym_RBRACE, - STATE(698), 1, + STATE(687), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1222), 1, sym_reference, - ACTIONS(367), 2, + ACTIONS(450), 2, sym__property_with_hash, sym__property_starts_with_number, - ACTIONS(385), 2, + ACTIONS(474), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(41), 13, + STATE(55), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -9941,15 +9978,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(477), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -9957,7 +9994,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(42), 13, + STATE(41), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -10000,15 +10037,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(479), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -10016,7 +10053,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(59), 13, + STATE(42), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -10033,49 +10070,49 @@ static const uint16_t ts_small_parse_table[] = { [4998] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(275), 1, + ACTIONS(17), 1, anon_sym_AMP, - ACTIONS(278), 1, + ACTIONS(19), 1, anon_sym_AMP_LBRACE, - ACTIONS(302), 1, - anon_sym_RBRACE, - ACTIONS(481), 1, + ACTIONS(361), 1, sym__label_name, - ACTIONS(484), 1, + ACTIONS(363), 1, sym__node_path, - ACTIONS(487), 1, + ACTIONS(365), 1, sym__node_or_property, - ACTIONS(493), 1, + ACTIONS(371), 1, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, - ACTIONS(496), 1, + ACTIONS(373), 1, anon_sym_SLASHdelete_DASHnode_SLASH, - ACTIONS(499), 1, + ACTIONS(375), 1, anon_sym_SLASHdelete_DASHproperty_SLASH, - ACTIONS(502), 1, + ACTIONS(377), 1, aux_sym_preproc_include_token1, - ACTIONS(505), 1, + ACTIONS(379), 1, aux_sym_preproc_def_token1, - ACTIONS(508), 1, + ACTIONS(381), 1, aux_sym_preproc_undef_token1, - ACTIONS(511), 1, + ACTIONS(383), 1, aux_sym_preproc_if_token1, - STATE(698), 1, + ACTIONS(481), 1, + anon_sym_RBRACE, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, - ACTIONS(490), 2, + ACTIONS(367), 2, sym__property_with_hash, sym__property_starts_with_number, - ACTIONS(514), 2, + ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(58), 13, + STATE(44), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -10116,17 +10153,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(383), 1, aux_sym_preproc_if_token1, - ACTIONS(517), 1, + ACTIONS(483), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -10134,7 +10171,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(58), 13, + STATE(45), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -10151,49 +10188,49 @@ static const uint16_t ts_small_parse_table[] = { [5160] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(17), 1, + ACTIONS(275), 1, anon_sym_AMP, - ACTIONS(19), 1, + ACTIONS(278), 1, anon_sym_AMP_LBRACE, - ACTIONS(361), 1, + ACTIONS(302), 1, + anon_sym_RBRACE, + ACTIONS(485), 1, sym__label_name, - ACTIONS(363), 1, + ACTIONS(488), 1, sym__node_path, - ACTIONS(365), 1, + ACTIONS(491), 1, sym__node_or_property, - ACTIONS(371), 1, + ACTIONS(497), 1, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, - ACTIONS(373), 1, + ACTIONS(500), 1, anon_sym_SLASHdelete_DASHnode_SLASH, - ACTIONS(375), 1, + ACTIONS(503), 1, anon_sym_SLASHdelete_DASHproperty_SLASH, - ACTIONS(377), 1, + ACTIONS(506), 1, aux_sym_preproc_include_token1, - ACTIONS(379), 1, + ACTIONS(509), 1, aux_sym_preproc_def_token1, - ACTIONS(381), 1, + ACTIONS(512), 1, aux_sym_preproc_undef_token1, - ACTIONS(383), 1, + ACTIONS(515), 1, aux_sym_preproc_if_token1, - ACTIONS(519), 1, - anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, - ACTIONS(367), 2, + ACTIONS(494), 2, sym__property_with_hash, sym__property_starts_with_number, - ACTIONS(385), 2, + ACTIONS(518), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(61), 13, + STATE(60), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -10236,15 +10273,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(521), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -10252,7 +10289,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(58), 13, + STATE(62), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -10295,15 +10332,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(523), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -10311,7 +10348,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(67), 13, + STATE(60), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -10354,15 +10391,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(525), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -10413,15 +10450,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(527), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -10472,15 +10509,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(529), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -10531,15 +10568,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(531), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -10590,15 +10627,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(533), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -10606,7 +10643,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(58), 13, + STATE(72), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -10649,15 +10686,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(535), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -10665,7 +10702,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(58), 13, + STATE(60), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -10708,15 +10745,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(537), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -10724,7 +10761,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(58), 13, + STATE(60), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -10767,15 +10804,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(539), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -10783,7 +10820,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(58), 13, + STATE(60), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -10826,15 +10863,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(541), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -10842,7 +10879,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(58), 13, + STATE(60), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -10885,15 +10922,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(543), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -10901,7 +10938,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(75), 13, + STATE(60), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -10944,15 +10981,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(545), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -11003,15 +11040,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(547), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -11062,15 +11099,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(549), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -11078,7 +11115,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(58), 13, + STATE(78), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -11121,15 +11158,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(551), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -11137,7 +11174,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(58), 13, + STATE(60), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -11180,15 +11217,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(553), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -11196,7 +11233,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(58), 13, + STATE(60), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -11239,15 +11276,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(555), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -11255,7 +11292,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(79), 13, + STATE(60), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -11298,15 +11335,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(557), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -11314,7 +11351,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(58), 13, + STATE(80), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -11357,15 +11394,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(559), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -11373,7 +11410,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(85), 13, + STATE(60), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -11416,15 +11453,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(561), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -11475,15 +11512,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(563), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -11534,15 +11571,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(565), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -11593,15 +11630,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(567), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -11652,15 +11689,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(569), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -11668,7 +11705,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(58), 13, + STATE(90), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -11711,15 +11748,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(571), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -11727,7 +11764,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(58), 13, + STATE(60), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -11770,15 +11807,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(573), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -11786,7 +11823,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(58), 13, + STATE(60), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -11829,15 +11866,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(575), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -11845,7 +11882,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(58), 13, + STATE(60), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -11888,15 +11925,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(577), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -11904,7 +11941,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(58), 13, + STATE(60), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -11947,15 +11984,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(579), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -11963,7 +12000,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(93), 13, + STATE(60), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -12006,15 +12043,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(581), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -12065,15 +12102,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(583), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -12081,7 +12118,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(58), 13, + STATE(60), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -12124,15 +12161,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(585), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -12140,7 +12177,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(58), 13, + STATE(96), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -12183,15 +12220,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(587), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -12199,7 +12236,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(58), 13, + STATE(60), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -12242,15 +12279,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(589), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -12258,7 +12295,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(58), 13, + STATE(60), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -12301,15 +12338,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(591), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -12317,7 +12354,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(97), 13, + STATE(60), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -12360,15 +12397,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(593), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -12376,7 +12413,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(58), 13, + STATE(98), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -12419,15 +12456,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(595), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -12435,7 +12472,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(103), 13, + STATE(60), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -12478,15 +12515,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(597), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -12537,15 +12574,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(599), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -12596,15 +12633,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(601), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -12655,15 +12692,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(603), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -12714,15 +12751,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(605), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -12730,7 +12767,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(58), 13, + STATE(108), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -12773,15 +12810,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(607), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -12789,7 +12826,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(58), 13, + STATE(60), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -12832,15 +12869,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(609), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -12848,7 +12885,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(58), 13, + STATE(60), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -12891,15 +12928,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(611), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -12907,7 +12944,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(58), 13, + STATE(60), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -12950,15 +12987,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(613), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -12966,7 +13003,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(58), 13, + STATE(60), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -13009,15 +13046,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(615), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -13025,7 +13062,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(111), 13, + STATE(60), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -13068,15 +13105,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(617), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -13127,15 +13164,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(619), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -13186,15 +13223,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(621), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -13202,7 +13239,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(58), 13, + STATE(114), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -13245,15 +13282,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(623), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -13261,7 +13298,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(58), 13, + STATE(60), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -13304,15 +13341,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(625), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -13320,7 +13357,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(58), 13, + STATE(60), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -13363,15 +13400,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(627), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -13379,7 +13416,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(115), 13, + STATE(60), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -13422,15 +13459,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(629), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -13438,7 +13475,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(58), 13, + STATE(116), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -13481,15 +13518,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(631), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -13497,7 +13534,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(121), 13, + STATE(60), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -13540,15 +13577,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(633), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -13599,15 +13636,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(635), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -13615,7 +13652,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(39), 13, + STATE(123), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -13658,15 +13695,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(637), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -13717,15 +13754,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(639), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -13776,15 +13813,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(641), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -13792,7 +13829,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(58), 13, + STATE(126), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -13835,15 +13872,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(643), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -13851,7 +13888,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(58), 13, + STATE(60), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -13894,15 +13931,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(645), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -13910,7 +13947,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(58), 13, + STATE(60), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -13953,15 +13990,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(647), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -13969,7 +14006,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(58), 13, + STATE(60), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -14012,15 +14049,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(649), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -14028,7 +14065,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(58), 13, + STATE(60), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -14071,15 +14108,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(651), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -14087,7 +14124,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(129), 13, + STATE(60), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -14130,15 +14167,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(653), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -14189,15 +14226,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(655), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -14248,15 +14285,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(657), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -14264,7 +14301,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(58), 13, + STATE(132), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -14307,15 +14344,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(659), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -14323,7 +14360,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(58), 13, + STATE(60), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -14366,15 +14403,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(661), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -14382,7 +14419,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(58), 13, + STATE(60), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -14425,15 +14462,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(663), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -14441,7 +14478,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(133), 13, + STATE(60), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -14484,15 +14521,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(665), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -14500,7 +14537,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(58), 13, + STATE(134), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -14543,15 +14580,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(667), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -14559,7 +14596,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(139), 13, + STATE(60), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -14602,15 +14639,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(669), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -14661,15 +14698,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(671), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -14720,15 +14757,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(673), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -14779,15 +14816,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(675), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -14838,15 +14875,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(677), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -14854,7 +14891,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(58), 13, + STATE(144), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -14897,15 +14934,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(679), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -14913,7 +14950,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(58), 13, + STATE(60), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -14956,15 +14993,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(681), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -14972,7 +15009,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(58), 13, + STATE(60), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -15015,15 +15052,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(683), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -15031,7 +15068,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(58), 13, + STATE(60), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -15074,15 +15111,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(685), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -15090,7 +15127,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(58), 13, + STATE(60), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -15133,15 +15170,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(687), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -15149,7 +15186,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(147), 13, + STATE(60), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -15192,15 +15229,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(689), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -15251,15 +15288,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(691), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -15310,15 +15347,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(693), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -15326,7 +15363,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(58), 13, + STATE(92), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -15369,15 +15406,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(695), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -15385,7 +15422,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(58), 13, + STATE(60), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -15428,15 +15465,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(697), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -15444,7 +15481,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(385), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(58), 13, + STATE(60), 13, sym_omit_if_no_ref, sym_node, sym_property, @@ -15487,15 +15524,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(699), 1, anon_sym_RBRACE, - STATE(698), 1, + STATE(693), 1, aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1174), 1, + STATE(1177), 1, sym_reference, ACTIONS(367), 2, sym__property_with_hash, @@ -15520,13 +15557,75 @@ static const uint16_t ts_small_parse_table[] = { [12531] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(703), 5, + ACTIONS(703), 11, + anon_sym_SLASHdts_DASHv1_SLASH, + anon_sym_SLASHplugin_SLASH, + anon_sym_SLASHmemreserve_SLASH, + sym__label_name, + sym__node_path, + sym__node_or_property, + anon_sym_AMP, + anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, + anon_sym_SLASHinclude_SLASH, + aux_sym_preproc_if_token1, + aux_sym_preproc_elif_token1, + ACTIONS(701), 15, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_AMP_LBRACE, + anon_sym_COMMA, + anon_sym_SLASHdelete_DASHnode_SLASH, + anon_sym_RPAREN, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_undef_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [12565] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(707), 11, + anon_sym_SLASHdts_DASHv1_SLASH, + anon_sym_SLASHplugin_SLASH, + anon_sym_SLASHmemreserve_SLASH, + sym__label_name, + sym__node_path, + sym__node_or_property, + anon_sym_AMP, + anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, + anon_sym_SLASHinclude_SLASH, + aux_sym_preproc_if_token1, + aux_sym_preproc_elif_token1, + ACTIONS(705), 15, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_AMP_LBRACE, + anon_sym_COMMA, + anon_sym_SLASHdelete_DASHnode_SLASH, + anon_sym_RPAREN, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_undef_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [12599] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(711), 5, anon_sym_AMP, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_PIPE, - ACTIONS(701), 21, + ACTIONS(709), 21, anon_sym_COLON, anon_sym_AMP_LBRACE, anon_sym_COMMA, @@ -15548,16 +15647,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [12565] = 3, + [12633] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(707), 5, + ACTIONS(715), 5, anon_sym_AMP, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_PIPE, - ACTIONS(705), 21, + ACTIONS(713), 21, anon_sym_COLON, anon_sym_AMP_LBRACE, anon_sym_COMMA, @@ -15579,16 +15678,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [12599] = 3, + [12667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(711), 5, + ACTIONS(719), 5, anon_sym_AMP, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_PIPE, - ACTIONS(709), 21, + ACTIONS(717), 21, anon_sym_COLON, anon_sym_AMP_LBRACE, anon_sym_COMMA, @@ -15610,16 +15709,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [12633] = 3, + [12701] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(715), 5, + ACTIONS(723), 5, anon_sym_AMP, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_PIPE, - ACTIONS(713), 21, + ACTIONS(721), 21, anon_sym_COLON, anon_sym_AMP_LBRACE, anon_sym_COMMA, @@ -15641,80 +15740,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [12667] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 11, - anon_sym_SLASHdts_DASHv1_SLASH, - anon_sym_SLASHplugin_SLASH, - anon_sym_SLASHmemreserve_SLASH, - sym__label_name, - sym__node_path, - sym__node_or_property, - anon_sym_AMP, - anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, - anon_sym_SLASHinclude_SLASH, - aux_sym_preproc_if_token1, - aux_sym_preproc_elif_token1, - ACTIONS(717), 15, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_AMP_LBRACE, - anon_sym_COMMA, - anon_sym_SLASHdelete_DASHnode_SLASH, - anon_sym_RPAREN, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_undef_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - [12701] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(723), 11, - anon_sym_SLASHdts_DASHv1_SLASH, - anon_sym_SLASHplugin_SLASH, - anon_sym_SLASHmemreserve_SLASH, - sym__label_name, - sym__node_path, - sym__node_or_property, - anon_sym_AMP, - anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, - anon_sym_SLASHinclude_SLASH, - aux_sym_preproc_if_token1, - aux_sym_preproc_elif_token1, - ACTIONS(721), 15, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_AMP_LBRACE, - anon_sym_COMMA, - anon_sym_SLASHdelete_DASHnode_SLASH, - anon_sym_RPAREN, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_undef_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, [12735] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(729), 1, anon_sym_LPAREN, - STATE(151), 1, + STATE(153), 1, sym_argument_list, ACTIONS(727), 5, anon_sym_AMP, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_PIPE, ACTIONS(725), 17, anon_sym_COLON, @@ -15821,7 +15858,7 @@ static const uint16_t ts_small_parse_table[] = { [12864] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(737), 11, + ACTIONS(745), 11, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -15833,7 +15870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(735), 12, + ACTIONS(743), 12, ts_builtin_sym_end, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -15849,7 +15886,7 @@ static const uint16_t ts_small_parse_table[] = { [12895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(737), 11, + ACTIONS(749), 11, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -15861,7 +15898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(735), 12, + ACTIONS(747), 12, ts_builtin_sym_end, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -15877,7 +15914,7 @@ static const uint16_t ts_small_parse_table[] = { [12926] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(745), 11, + ACTIONS(753), 11, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -15889,7 +15926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(743), 12, + ACTIONS(751), 12, ts_builtin_sym_end, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -15905,7 +15942,7 @@ static const uint16_t ts_small_parse_table[] = { [12957] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(749), 11, + ACTIONS(757), 11, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -15917,7 +15954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(747), 12, + ACTIONS(755), 12, ts_builtin_sym_end, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -15933,7 +15970,7 @@ static const uint16_t ts_small_parse_table[] = { [12988] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(753), 11, + ACTIONS(761), 11, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -15945,7 +15982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(751), 12, + ACTIONS(759), 12, ts_builtin_sym_end, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -15961,7 +15998,7 @@ static const uint16_t ts_small_parse_table[] = { [13019] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(757), 11, + ACTIONS(765), 11, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -15973,7 +16010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(755), 12, + ACTIONS(763), 12, ts_builtin_sym_end, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -15989,7 +16026,7 @@ static const uint16_t ts_small_parse_table[] = { [13050] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(761), 11, + ACTIONS(769), 11, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -16001,7 +16038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(759), 12, + ACTIONS(767), 12, ts_builtin_sym_end, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -16017,7 +16054,7 @@ static const uint16_t ts_small_parse_table[] = { [13081] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(765), 11, + ACTIONS(773), 11, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -16029,7 +16066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(763), 12, + ACTIONS(771), 12, ts_builtin_sym_end, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -16045,7 +16082,7 @@ static const uint16_t ts_small_parse_table[] = { [13112] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(769), 11, + ACTIONS(777), 11, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -16057,7 +16094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(767), 12, + ACTIONS(775), 12, ts_builtin_sym_end, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -16073,7 +16110,7 @@ static const uint16_t ts_small_parse_table[] = { [13143] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(773), 11, + ACTIONS(781), 11, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -16085,7 +16122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(771), 12, + ACTIONS(779), 12, ts_builtin_sym_end, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -16101,7 +16138,7 @@ static const uint16_t ts_small_parse_table[] = { [13174] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(777), 11, + ACTIONS(785), 11, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -16113,7 +16150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(775), 12, + ACTIONS(783), 12, ts_builtin_sym_end, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -16129,7 +16166,7 @@ static const uint16_t ts_small_parse_table[] = { [13205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(781), 11, + ACTIONS(789), 11, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -16141,7 +16178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(779), 12, + ACTIONS(787), 12, ts_builtin_sym_end, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -16157,7 +16194,7 @@ static const uint16_t ts_small_parse_table[] = { [13236] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(785), 11, + ACTIONS(793), 11, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -16169,7 +16206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(783), 12, + ACTIONS(791), 12, ts_builtin_sym_end, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -16185,7 +16222,7 @@ static const uint16_t ts_small_parse_table[] = { [13267] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(789), 11, + ACTIONS(797), 11, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -16197,7 +16234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(787), 12, + ACTIONS(795), 12, ts_builtin_sym_end, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -16213,7 +16250,7 @@ static const uint16_t ts_small_parse_table[] = { [13298] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(793), 11, + ACTIONS(801), 11, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -16225,7 +16262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(791), 12, + ACTIONS(799), 12, ts_builtin_sym_end, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -16241,7 +16278,7 @@ static const uint16_t ts_small_parse_table[] = { [13329] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(797), 11, + ACTIONS(801), 11, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -16253,7 +16290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(795), 12, + ACTIONS(799), 12, ts_builtin_sym_end, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -16269,7 +16306,7 @@ static const uint16_t ts_small_parse_table[] = { [13360] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(801), 11, + ACTIONS(805), 11, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -16281,7 +16318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(799), 12, + ACTIONS(803), 12, ts_builtin_sym_end, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -16297,7 +16334,7 @@ static const uint16_t ts_small_parse_table[] = { [13391] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(805), 11, + ACTIONS(809), 11, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -16309,7 +16346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(803), 12, + ACTIONS(807), 12, ts_builtin_sym_end, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -16325,7 +16362,7 @@ static const uint16_t ts_small_parse_table[] = { [13422] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(809), 11, + ACTIONS(801), 11, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -16337,7 +16374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(807), 12, + ACTIONS(799), 12, ts_builtin_sym_end, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -16353,7 +16390,7 @@ static const uint16_t ts_small_parse_table[] = { [13453] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(805), 11, + ACTIONS(813), 11, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -16365,7 +16402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(803), 12, + ACTIONS(811), 12, ts_builtin_sym_end, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -16381,7 +16418,7 @@ static const uint16_t ts_small_parse_table[] = { [13484] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(813), 11, + ACTIONS(817), 11, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -16393,7 +16430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(811), 12, + ACTIONS(815), 12, ts_builtin_sym_end, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -16409,7 +16446,7 @@ static const uint16_t ts_small_parse_table[] = { [13515] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(805), 11, + ACTIONS(821), 11, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -16421,7 +16458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(803), 12, + ACTIONS(819), 12, ts_builtin_sym_end, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -16437,7 +16474,7 @@ static const uint16_t ts_small_parse_table[] = { [13546] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(805), 11, + ACTIONS(825), 11, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -16449,7 +16486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(803), 12, + ACTIONS(823), 12, ts_builtin_sym_end, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -16465,7 +16502,7 @@ static const uint16_t ts_small_parse_table[] = { [13577] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(817), 11, + ACTIONS(829), 11, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -16477,7 +16514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(815), 12, + ACTIONS(827), 12, ts_builtin_sym_end, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -16493,7 +16530,7 @@ static const uint16_t ts_small_parse_table[] = { [13608] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(821), 11, + ACTIONS(833), 11, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -16505,7 +16542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(819), 12, + ACTIONS(831), 12, ts_builtin_sym_end, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -16521,7 +16558,7 @@ static const uint16_t ts_small_parse_table[] = { [13639] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(825), 11, + ACTIONS(837), 11, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -16533,7 +16570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(823), 12, + ACTIONS(835), 12, ts_builtin_sym_end, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -16549,7 +16586,7 @@ static const uint16_t ts_small_parse_table[] = { [13670] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(829), 11, + ACTIONS(837), 11, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -16561,7 +16598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(827), 12, + ACTIONS(835), 12, ts_builtin_sym_end, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -16577,7 +16614,7 @@ static const uint16_t ts_small_parse_table[] = { [13701] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(833), 11, + ACTIONS(837), 11, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -16589,7 +16626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(831), 12, + ACTIONS(835), 12, ts_builtin_sym_end, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -16605,7 +16642,7 @@ static const uint16_t ts_small_parse_table[] = { [13732] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(833), 11, + ACTIONS(837), 11, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -16617,7 +16654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(831), 12, + ACTIONS(835), 12, ts_builtin_sym_end, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -16633,7 +16670,7 @@ static const uint16_t ts_small_parse_table[] = { [13763] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(833), 11, + ACTIONS(841), 11, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -16645,7 +16682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(831), 12, + ACTIONS(839), 12, ts_builtin_sym_end, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -16661,7 +16698,7 @@ static const uint16_t ts_small_parse_table[] = { [13794] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(837), 11, + ACTIONS(845), 11, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -16673,7 +16710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(835), 12, + ACTIONS(843), 12, ts_builtin_sym_end, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -16689,7 +16726,7 @@ static const uint16_t ts_small_parse_table[] = { [13825] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(841), 11, + ACTIONS(849), 11, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -16701,7 +16738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(839), 12, + ACTIONS(847), 12, ts_builtin_sym_end, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -16717,7 +16754,7 @@ static const uint16_t ts_small_parse_table[] = { [13856] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(841), 11, + ACTIONS(853), 11, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -16729,7 +16766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(839), 12, + ACTIONS(851), 12, ts_builtin_sym_end, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -16745,7 +16782,7 @@ static const uint16_t ts_small_parse_table[] = { [13887] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(841), 11, + ACTIONS(853), 11, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -16757,7 +16794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(839), 12, + ACTIONS(851), 12, ts_builtin_sym_end, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -16773,7 +16810,7 @@ static const uint16_t ts_small_parse_table[] = { [13918] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(845), 11, + ACTIONS(853), 11, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -16785,7 +16822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(843), 12, + ACTIONS(851), 12, ts_builtin_sym_end, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -16801,7 +16838,7 @@ static const uint16_t ts_small_parse_table[] = { [13949] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(737), 11, + ACTIONS(809), 11, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -16813,7 +16850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(735), 12, + ACTIONS(807), 12, ts_builtin_sym_end, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -16829,7 +16866,7 @@ static const uint16_t ts_small_parse_table[] = { [13980] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(849), 11, + ACTIONS(809), 11, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -16841,7 +16878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(847), 12, + ACTIONS(807), 12, ts_builtin_sym_end, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -16857,7 +16894,7 @@ static const uint16_t ts_small_parse_table[] = { [14011] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(853), 11, + ACTIONS(801), 11, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -16869,7 +16906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(851), 12, + ACTIONS(799), 12, ts_builtin_sym_end, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -16882,64 +16919,65 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [14042] = 10, + [14042] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(865), 1, - anon_sym_SLASH, - ACTIONS(857), 2, + ACTIONS(857), 1, anon_sym_AMP, + ACTIONS(859), 1, + anon_sym_SLASH, + ACTIONS(863), 1, + anon_sym_QMARK, + ACTIONS(869), 1, + anon_sym_PIPE_PIPE, + ACTIONS(871), 1, + anon_sym_AMP_AMP, + ACTIONS(873), 1, anon_sym_PIPE, - ACTIONS(859), 2, + ACTIONS(875), 1, + anon_sym_CARET, + ACTIONS(861), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(861), 2, + ACTIONS(865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(863), 2, + ACTIONS(867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(867), 2, + ACTIONS(877), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(869), 2, + ACTIONS(879), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(871), 2, + ACTIONS(881), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(855), 7, + ACTIONS(855), 3, anon_sym_COLON, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [14086] = 7, + [14096] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(865), 1, - anon_sym_SLASH, - ACTIONS(861), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(863), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(871), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(857), 4, + ACTIONS(887), 1, + anon_sym_LPAREN, + STATE(336), 1, + sym_preproc_argument_list, + ACTIONS(883), 5, anon_sym_AMP, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - ACTIONS(855), 11, - anon_sym_COLON, + ACTIONS(885), 15, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_QMARK, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -16947,26 +16985,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [14124] = 5, + anon_sym_LT_LT, + anon_sym_GT_GT, + [14130] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(865), 1, - anon_sym_SLASH, - ACTIONS(863), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(857), 4, + ACTIONS(891), 5, anon_sym_AMP, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - ACTIONS(855), 15, + ACTIONS(889), 17, anon_sym_COLON, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_QMARK, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -16976,201 +17014,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [14158] = 3, + [14160] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(857), 5, + ACTIONS(857), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(859), 1, anon_sym_SLASH, + ACTIONS(863), 1, + anon_sym_QMARK, + ACTIONS(869), 1, + anon_sym_PIPE_PIPE, + ACTIONS(871), 1, + anon_sym_AMP_AMP, + ACTIONS(873), 1, anon_sym_PIPE, - ACTIONS(855), 17, - anon_sym_COLON, + ACTIONS(875), 1, + anon_sym_CARET, + ACTIONS(893), 1, anon_sym_COMMA, + ACTIONS(895), 1, anon_sym_RPAREN, - anon_sym_QMARK, + STATE(807), 1, + aux_sym_argument_list_repeat1, + ACTIONS(861), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(865), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(867), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(877), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(879), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(881), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [14188] = 13, + [14218] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(865), 1, - anon_sym_SLASH, - ACTIONS(873), 1, + ACTIONS(899), 5, anon_sym_AMP, - ACTIONS(875), 1, - anon_sym_AMP_AMP, - ACTIONS(877), 1, - anon_sym_PIPE, - ACTIONS(879), 1, - anon_sym_CARET, - ACTIONS(859), 2, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(861), 2, + anon_sym_PIPE, + ACTIONS(897), 17, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_QMARK, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(863), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(867), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(869), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(871), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(855), 5, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, - [14238] = 12, + [14248] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(865), 1, + ACTIONS(859), 1, anon_sym_SLASH, - ACTIONS(873), 1, - anon_sym_AMP, - ACTIONS(877), 1, - anon_sym_PIPE, - ACTIONS(879), 1, - anon_sym_CARET, - ACTIONS(859), 2, + ACTIONS(861), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(861), 2, + ACTIONS(865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(863), 2, + ACTIONS(867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(867), 2, + ACTIONS(877), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(869), 2, + ACTIONS(879), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(871), 2, + ACTIONS(881), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(855), 6, + ACTIONS(903), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(901), 7, anon_sym_COLON, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - [14286] = 12, + anon_sym_CARET, + [14292] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(857), 1, - anon_sym_PIPE, - ACTIONS(865), 1, - anon_sym_SLASH, - ACTIONS(873), 1, + ACTIONS(903), 5, anon_sym_AMP, - ACTIONS(879), 1, - anon_sym_CARET, - ACTIONS(859), 2, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(861), 2, + anon_sym_PIPE, + ACTIONS(901), 17, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_QMARK, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(863), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(867), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(869), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(871), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(855), 6, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [14334] = 11, + [14322] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(857), 1, - anon_sym_PIPE, - ACTIONS(865), 1, + ACTIONS(859), 1, anon_sym_SLASH, - ACTIONS(873), 1, - anon_sym_AMP, - ACTIONS(859), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(861), 2, + ACTIONS(865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(863), 2, + ACTIONS(867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(867), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(869), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(871), 2, + ACTIONS(881), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(855), 7, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [14380] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(865), 1, - anon_sym_SLASH, - ACTIONS(857), 2, + ACTIONS(903), 4, anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(859), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(861), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(863), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(869), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(871), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(855), 9, + anon_sym_PIPE, + ACTIONS(901), 11, anon_sym_COLON, anon_sym_COMMA, anon_sym_RPAREN, @@ -17180,27 +17172,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [14422] = 6, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [14360] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(865), 1, + ACTIONS(859), 1, anon_sym_SLASH, - ACTIONS(861), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(863), 2, + ACTIONS(867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(857), 4, + ACTIONS(903), 4, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - ACTIONS(855), 13, + ACTIONS(901), 15, anon_sym_COLON, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_QMARK, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -17210,160 +17203,204 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [14458] = 17, + [14394] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(865), 1, - anon_sym_SLASH, - ACTIONS(873), 1, + ACTIONS(857), 1, anon_sym_AMP, - ACTIONS(875), 1, + ACTIONS(859), 1, + anon_sym_SLASH, + ACTIONS(871), 1, anon_sym_AMP_AMP, - ACTIONS(877), 1, + ACTIONS(873), 1, anon_sym_PIPE, - ACTIONS(879), 1, + ACTIONS(875), 1, anon_sym_CARET, - ACTIONS(881), 1, - anon_sym_COMMA, - ACTIONS(883), 1, - anon_sym_RPAREN, - ACTIONS(885), 1, - anon_sym_QMARK, - ACTIONS(887), 1, - anon_sym_PIPE_PIPE, - STATE(846), 1, - aux_sym_argument_list_repeat1, - ACTIONS(859), 2, + ACTIONS(861), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(861), 2, + ACTIONS(865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(863), 2, + ACTIONS(867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(867), 2, + ACTIONS(877), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(869), 2, + ACTIONS(879), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(871), 2, + ACTIONS(881), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [14516] = 3, + ACTIONS(901), 5, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, + [14444] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(891), 5, + ACTIONS(857), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(859), 1, anon_sym_SLASH, + ACTIONS(873), 1, anon_sym_PIPE, - ACTIONS(889), 17, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_QMARK, + ACTIONS(875), 1, + anon_sym_CARET, + ACTIONS(861), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(865), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(867), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(877), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(879), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(881), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [14546] = 15, + ACTIONS(901), 6, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [14492] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(865), 1, - anon_sym_SLASH, - ACTIONS(873), 1, + ACTIONS(857), 1, anon_sym_AMP, + ACTIONS(859), 1, + anon_sym_SLASH, ACTIONS(875), 1, - anon_sym_AMP_AMP, - ACTIONS(877), 1, - anon_sym_PIPE, - ACTIONS(879), 1, anon_sym_CARET, - ACTIONS(885), 1, - anon_sym_QMARK, - ACTIONS(887), 1, - anon_sym_PIPE_PIPE, - ACTIONS(859), 2, + ACTIONS(903), 1, + anon_sym_PIPE, + ACTIONS(861), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(861), 2, + ACTIONS(865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(863), 2, + ACTIONS(867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(867), 2, + ACTIONS(877), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(869), 2, + ACTIONS(879), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(871), 2, + ACTIONS(881), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(893), 3, + ACTIONS(901), 6, anon_sym_COLON, anon_sym_COMMA, anon_sym_RPAREN, - [14600] = 5, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [14540] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(899), 1, - anon_sym_LPAREN, - STATE(309), 1, - sym_preproc_argument_list, - ACTIONS(895), 5, + ACTIONS(857), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(859), 1, anon_sym_SLASH, + ACTIONS(903), 1, anon_sym_PIPE, - ACTIONS(897), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(861), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(865), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(867), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(877), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(879), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(881), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [14634] = 3, + ACTIONS(901), 7, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [14586] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(903), 5, - anon_sym_AMP, + ACTIONS(859), 1, + anon_sym_SLASH, + ACTIONS(861), 2, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + ACTIONS(865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(867), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(879), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(881), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(903), 2, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(901), 17, + ACTIONS(901), 9, anon_sym_COLON, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [14628] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(859), 1, + anon_sym_SLASH, + ACTIONS(865), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(867), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(903), 4, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(901), 13, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -17402,7 +17439,7 @@ static const uint16_t ts_small_parse_table[] = { [14693] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(841), 9, + ACTIONS(801), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -17412,7 +17449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(839), 12, + ACTIONS(799), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -17428,7 +17465,7 @@ static const uint16_t ts_small_parse_table[] = { [14722] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(841), 9, + ACTIONS(813), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -17438,7 +17475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(839), 12, + ACTIONS(811), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -17454,7 +17491,7 @@ static const uint16_t ts_small_parse_table[] = { [14751] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(909), 9, + ACTIONS(837), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -17464,7 +17501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(911), 12, + ACTIONS(835), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -17480,7 +17517,7 @@ static const uint16_t ts_small_parse_table[] = { [14780] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(913), 9, + ACTIONS(837), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -17490,7 +17527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(915), 12, + ACTIONS(835), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -17506,7 +17543,7 @@ static const uint16_t ts_small_parse_table[] = { [14809] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 9, + ACTIONS(837), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -17516,7 +17553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(919), 12, + ACTIONS(835), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -17532,7 +17569,7 @@ static const uint16_t ts_small_parse_table[] = { [14838] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(905), 9, + ACTIONS(837), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -17542,7 +17579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(907), 12, + ACTIONS(835), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -17558,7 +17595,7 @@ static const uint16_t ts_small_parse_table[] = { [14867] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(921), 9, + ACTIONS(841), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -17568,7 +17605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(923), 12, + ACTIONS(839), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -17584,7 +17621,7 @@ static const uint16_t ts_small_parse_table[] = { [14896] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(905), 9, + ACTIONS(853), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -17594,7 +17631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(907), 12, + ACTIONS(851), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -17607,49 +17644,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [14925] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - anon_sym_AMP, - ACTIONS(927), 1, - anon_sym_COMMA, - ACTIONS(929), 1, - anon_sym_RPAREN, - ACTIONS(937), 1, - anon_sym_SLASH, - ACTIONS(939), 1, - anon_sym_PIPE_PIPE, - ACTIONS(941), 1, - anon_sym_AMP_AMP, - ACTIONS(943), 1, - anon_sym_PIPE, - ACTIONS(945), 1, - anon_sym_CARET, - STATE(820), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(931), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(933), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(935), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(947), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(949), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(951), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [14980] = 3, + [14925] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(921), 9, + ACTIONS(853), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -17659,7 +17657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(923), 12, + ACTIONS(851), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -17672,10 +17670,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [15009] = 3, + [14954] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(905), 9, + ACTIONS(853), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -17685,7 +17683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(907), 12, + ACTIONS(851), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -17698,10 +17696,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [15038] = 3, + [14983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(921), 9, + ACTIONS(809), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -17711,7 +17709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(923), 12, + ACTIONS(807), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -17724,49 +17722,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [15067] = 16, + [15012] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(925), 1, - anon_sym_AMP, - ACTIONS(927), 1, - anon_sym_COMMA, - ACTIONS(937), 1, - anon_sym_SLASH, - ACTIONS(939), 1, - anon_sym_PIPE_PIPE, - ACTIONS(941), 1, - anon_sym_AMP_AMP, - ACTIONS(943), 1, - anon_sym_PIPE, - ACTIONS(945), 1, - anon_sym_CARET, - ACTIONS(953), 1, - anon_sym_RPAREN, - STATE(863), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(931), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(933), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(935), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(947), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(949), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(951), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [15122] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(921), 9, + ACTIONS(809), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -17776,7 +17735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(923), 12, + ACTIONS(807), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -17789,10 +17748,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [15151] = 3, + [15041] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(955), 9, + ACTIONS(809), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -17802,7 +17761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(957), 12, + ACTIONS(807), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -17815,10 +17774,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [15180] = 3, + [15070] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(959), 9, + ACTIONS(909), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -17828,7 +17787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(961), 12, + ACTIONS(911), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -17841,10 +17800,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [15209] = 3, + [15099] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(963), 9, + ACTIONS(909), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -17854,7 +17813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(965), 12, + ACTIONS(911), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -17867,10 +17826,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [15238] = 3, + [15128] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(967), 9, + ACTIONS(909), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -17880,7 +17839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(969), 12, + ACTIONS(911), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -17893,10 +17852,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [15267] = 3, + [15157] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(963), 9, + ACTIONS(913), 1, + anon_sym_AMP, + ACTIONS(915), 1, + anon_sym_SLASH, + ACTIONS(917), 1, + anon_sym_COMMA, + ACTIONS(919), 1, + anon_sym_RPAREN, + ACTIONS(927), 1, + anon_sym_PIPE_PIPE, + ACTIONS(929), 1, + anon_sym_AMP_AMP, + ACTIONS(931), 1, + anon_sym_PIPE, + ACTIONS(933), 1, + anon_sym_CARET, + STATE(798), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(921), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(923), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(925), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(935), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(937), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(939), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [15212] = 5, + ACTIONS(885), 1, + anon_sym_LF, + ACTIONS(941), 1, + sym_comment, + ACTIONS(943), 1, + anon_sym_LPAREN, + STATE(405), 1, + sym_preproc_argument_list, + ACTIONS(883), 18, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [15245] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(909), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -17906,7 +17932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(965), 12, + ACTIONS(911), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -17919,10 +17945,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [15296] = 3, + [15274] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(967), 9, + ACTIONS(945), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -17932,7 +17958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(969), 12, + ACTIONS(947), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -17945,10 +17971,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [15325] = 3, + [15303] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(963), 9, + ACTIONS(949), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -17958,7 +17984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(965), 12, + ACTIONS(951), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -17971,10 +17997,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [15354] = 3, + [15332] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(967), 9, + ACTIONS(953), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -17984,7 +18010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(969), 12, + ACTIONS(955), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -17997,10 +18023,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [15383] = 3, + [15361] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(963), 9, + ACTIONS(957), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -18010,7 +18036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(965), 12, + ACTIONS(959), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -18023,10 +18049,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [15412] = 3, + [15390] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(967), 9, + ACTIONS(961), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -18036,7 +18062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(969), 12, + ACTIONS(963), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -18049,10 +18075,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [15441] = 3, + [15419] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(971), 9, + ACTIONS(965), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -18062,7 +18088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(973), 12, + ACTIONS(967), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -18075,10 +18101,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [15470] = 3, + [15448] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(971), 9, + ACTIONS(965), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -18088,7 +18114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(973), 12, + ACTIONS(967), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -18101,10 +18127,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [15499] = 3, + [15477] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(971), 9, + ACTIONS(965), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -18114,7 +18140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(973), 12, + ACTIONS(967), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -18127,10 +18153,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [15528] = 3, + [15506] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(971), 9, + ACTIONS(965), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -18140,7 +18166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(973), 12, + ACTIONS(967), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -18153,10 +18179,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [15557] = 3, + [15535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(757), 9, + ACTIONS(969), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -18166,7 +18192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(755), 12, + ACTIONS(971), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -18179,10 +18205,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [15586] = 3, + [15564] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(781), 9, + ACTIONS(973), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -18192,7 +18218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(779), 12, + ACTIONS(975), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -18205,10 +18231,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [15615] = 3, + [15593] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(785), 9, + ACTIONS(977), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -18218,7 +18244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(783), 12, + ACTIONS(979), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -18231,10 +18257,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [15644] = 3, + [15622] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(845), 9, + ACTIONS(981), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -18244,7 +18270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(843), 12, + ACTIONS(983), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -18257,10 +18283,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [15673] = 3, + [15651] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(813), 9, + ACTIONS(985), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -18270,7 +18296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(811), 12, + ACTIONS(987), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -18283,10 +18309,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [15702] = 3, + [15680] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(821), 9, + ACTIONS(989), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -18296,7 +18322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(819), 12, + ACTIONS(991), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -18309,10 +18335,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [15731] = 3, + [15709] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(753), 9, + ACTIONS(993), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -18322,7 +18348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(751), 12, + ACTIONS(995), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -18335,10 +18361,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [15760] = 3, + [15738] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(975), 9, + ACTIONS(989), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -18348,7 +18374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(977), 12, + ACTIONS(991), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -18361,38 +18387,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [15789] = 5, - ACTIONS(897), 1, - anon_sym_LF, - ACTIONS(979), 1, - sym_comment, - ACTIONS(981), 1, - anon_sym_LPAREN, - STATE(409), 1, - sym_preproc_argument_list, - ACTIONS(895), 18, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [15822] = 3, + [15767] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(765), 9, + ACTIONS(993), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -18402,7 +18400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(763), 12, + ACTIONS(995), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -18415,10 +18413,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [15851] = 3, + [15796] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(769), 9, + ACTIONS(989), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -18428,7 +18426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(767), 12, + ACTIONS(991), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -18441,10 +18439,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [15880] = 3, + [15825] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(853), 9, + ACTIONS(993), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -18454,7 +18452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(851), 12, + ACTIONS(995), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -18467,7 +18465,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [15909] = 3, + [15854] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(741), 9, @@ -18493,10 +18491,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [15938] = 3, + [15883] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(983), 9, + ACTIONS(993), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -18506,7 +18504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(985), 12, + ACTIONS(995), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -18519,10 +18517,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [15967] = 3, + [15912] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(737), 9, + ACTIONS(997), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -18532,7 +18530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(735), 12, + ACTIONS(999), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -18545,10 +18543,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [15996] = 3, + [15941] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(737), 9, + ACTIONS(1001), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -18558,7 +18556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(735), 12, + ACTIONS(1003), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -18571,10 +18569,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [16025] = 3, + [15970] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(737), 9, + ACTIONS(1005), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -18584,7 +18582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(735), 12, + ACTIONS(1007), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -18597,10 +18595,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [16054] = 3, + [15999] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(737), 9, + ACTIONS(1009), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -18610,7 +18608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(735), 12, + ACTIONS(1011), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -18623,10 +18621,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [16083] = 3, + [16028] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(749), 9, + ACTIONS(1005), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -18636,7 +18634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(747), 12, + ACTIONS(1007), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -18649,10 +18647,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [16112] = 3, + [16057] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(805), 9, + ACTIONS(1009), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -18662,7 +18660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(803), 12, + ACTIONS(1011), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -18675,10 +18673,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [16141] = 3, + [16086] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(805), 9, + ACTIONS(1005), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -18688,7 +18686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(803), 12, + ACTIONS(1007), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -18701,10 +18699,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [16170] = 3, + [16115] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(805), 9, + ACTIONS(1009), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -18714,7 +18712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(803), 12, + ACTIONS(1011), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -18727,10 +18725,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [16199] = 3, + [16144] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(805), 9, + ACTIONS(1005), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -18740,7 +18738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(803), 12, + ACTIONS(1007), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -18753,48 +18751,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [16228] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(865), 1, - anon_sym_SLASH, - ACTIONS(873), 1, - anon_sym_AMP, - ACTIONS(875), 1, - anon_sym_AMP_AMP, - ACTIONS(877), 1, - anon_sym_PIPE, - ACTIONS(879), 1, - anon_sym_CARET, - ACTIONS(885), 1, - anon_sym_QMARK, - ACTIONS(887), 1, - anon_sym_PIPE_PIPE, - ACTIONS(859), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(861), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(863), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(867), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(869), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(871), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(987), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [16281] = 3, + [16173] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(817), 9, + ACTIONS(1009), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -18804,7 +18764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(815), 12, + ACTIONS(1011), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -18817,10 +18777,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [16310] = 3, + [16202] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(833), 9, + ACTIONS(1013), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -18830,7 +18790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(831), 12, + ACTIONS(1015), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -18843,10 +18803,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [16339] = 3, + [16231] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(833), 9, + ACTIONS(733), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -18856,7 +18816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(831), 12, + ACTIONS(731), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -18869,10 +18829,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [16368] = 3, + [16260] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(833), 9, + ACTIONS(749), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -18882,7 +18842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(831), 12, + ACTIONS(747), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -18895,10 +18855,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [16397] = 3, + [16289] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(989), 9, + ACTIONS(1013), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -18908,7 +18868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(991), 12, + ACTIONS(1015), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -18921,10 +18881,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [16426] = 3, + [16318] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(841), 9, + ACTIONS(1013), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -18934,7 +18894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(839), 12, + ACTIONS(1015), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -18947,10 +18907,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [16455] = 3, + [16347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(993), 9, + ACTIONS(1013), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -18960,7 +18920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(995), 12, + ACTIONS(1015), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -18973,10 +18933,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [16484] = 3, + [16376] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(997), 9, + ACTIONS(789), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -18986,7 +18946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(999), 12, + ACTIONS(787), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -18999,10 +18959,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [16513] = 3, + [16405] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1001), 9, + ACTIONS(817), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -19012,7 +18972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(1003), 12, + ACTIONS(815), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -19025,10 +18985,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [16542] = 3, + [16434] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1005), 9, + ACTIONS(829), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -19038,7 +18998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(1007), 12, + ACTIONS(827), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -19051,10 +19011,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [16571] = 3, + [16463] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1005), 9, + ACTIONS(761), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -19064,7 +19024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(1007), 12, + ACTIONS(759), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -19077,10 +19037,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [16600] = 3, + [16492] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1005), 9, + ACTIONS(773), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -19090,7 +19050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(1007), 12, + ACTIONS(771), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -19103,10 +19063,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [16629] = 3, + [16521] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1005), 9, + ACTIONS(777), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -19116,7 +19076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(1007), 12, + ACTIONS(775), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -19129,10 +19089,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [16658] = 3, + [16550] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1009), 9, + ACTIONS(757), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -19142,7 +19102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(1011), 12, + ACTIONS(755), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -19155,10 +19115,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [16687] = 3, + [16579] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 9, + ACTIONS(765), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -19168,7 +19128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(1015), 12, + ACTIONS(763), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -19181,10 +19141,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [16716] = 3, + [16608] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1017), 9, + ACTIONS(769), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -19194,7 +19154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(1019), 12, + ACTIONS(767), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -19207,10 +19167,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [16745] = 3, + [16637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1021), 9, + ACTIONS(801), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -19220,7 +19180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(1023), 12, + ACTIONS(799), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -19233,10 +19193,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [16774] = 3, + [16666] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1025), 9, + ACTIONS(801), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -19246,7 +19206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(1027), 12, + ACTIONS(799), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -19259,20 +19219,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [16803] = 3, + [16695] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1029), 9, - sym__label_name, - sym__node_path, - sym__node_or_property, - sym__property_with_hash, - sym__property_starts_with_number, + ACTIONS(857), 1, + anon_sym_AMP, + ACTIONS(859), 1, + anon_sym_SLASH, + ACTIONS(863), 1, + anon_sym_QMARK, + ACTIONS(869), 1, + anon_sym_PIPE_PIPE, + ACTIONS(871), 1, + anon_sym_AMP_AMP, + ACTIONS(873), 1, + anon_sym_PIPE, + ACTIONS(875), 1, + anon_sym_CARET, + ACTIONS(861), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(867), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(877), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(879), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(881), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1017), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [16748] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1019), 9, + sym__label_name, + sym__node_path, + sym__node_or_property, + sym__property_with_hash, + sym__property_starts_with_number, anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(1031), 12, + ACTIONS(1021), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -19285,10 +19283,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [16832] = 3, + [16777] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1029), 9, + ACTIONS(801), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -19298,7 +19296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(1031), 12, + ACTIONS(799), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -19311,10 +19309,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [16861] = 3, + [16806] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1029), 9, + ACTIONS(1023), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -19324,7 +19322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(1031), 12, + ACTIONS(1025), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -19337,6 +19335,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + [16835] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(913), 1, + anon_sym_AMP, + ACTIONS(915), 1, + anon_sym_SLASH, + ACTIONS(917), 1, + anon_sym_COMMA, + ACTIONS(927), 1, + anon_sym_PIPE_PIPE, + ACTIONS(929), 1, + anon_sym_AMP_AMP, + ACTIONS(931), 1, + anon_sym_PIPE, + ACTIONS(933), 1, + anon_sym_CARET, + ACTIONS(1027), 1, + anon_sym_RPAREN, + STATE(826), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(921), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(923), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(925), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(935), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(937), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(939), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, [16890] = 3, ACTIONS(3), 1, sym_comment, @@ -19366,7 +19403,7 @@ static const uint16_t ts_small_parse_table[] = { [16919] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(761), 9, + ACTIONS(989), 9, sym__label_name, sym__node_path, sym__node_or_property, @@ -19376,7 +19413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, aux_sym_preproc_elif_token1, - ACTIONS(759), 12, + ACTIONS(991), 12, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -19389,80 +19426,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [16948] = 11, + [16948] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(925), 1, + ACTIONS(913), 1, anon_sym_AMP, - ACTIONS(937), 1, + ACTIONS(915), 1, anon_sym_SLASH, - ACTIONS(1035), 1, + ACTIONS(931), 1, anon_sym_PIPE, - ACTIONS(931), 2, + ACTIONS(933), 1, + anon_sym_CARET, + ACTIONS(921), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(933), 2, + ACTIONS(923), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(935), 2, + ACTIONS(925), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(947), 2, + ACTIONS(935), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(949), 2, + ACTIONS(937), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(951), 2, + ACTIONS(939), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1033), 5, + ACTIONS(1033), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - [16992] = 15, + [16994] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(865), 1, - anon_sym_SLASH, - ACTIONS(873), 1, + ACTIONS(1035), 5, anon_sym_AMP, - ACTIONS(875), 1, - anon_sym_AMP_AMP, - ACTIONS(877), 1, - anon_sym_PIPE, - ACTIONS(879), 1, - anon_sym_CARET, - ACTIONS(885), 1, - anon_sym_QMARK, - ACTIONS(887), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1037), 1, - anon_sym_COLON, - ACTIONS(859), 2, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(861), 2, + anon_sym_PIPE, + ACTIONS(1037), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(863), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(867), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(869), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(871), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [17044] = 3, + [17022] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(767), 10, + ACTIONS(739), 10, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, aux_sym_preproc_include_token1, @@ -19473,7 +19499,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - ACTIONS(769), 10, + ACTIONS(741), 10, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -19484,10 +19510,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, - [17072] = 3, + [17050] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(851), 10, + ACTIONS(731), 10, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, aux_sym_preproc_include_token1, @@ -19498,7 +19524,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - ACTIONS(853), 10, + ACTIONS(733), 10, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -19509,10 +19535,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, - [17100] = 3, + [17078] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(739), 10, + ACTIONS(747), 10, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, aux_sym_preproc_include_token1, @@ -19523,7 +19549,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - ACTIONS(741), 10, + ACTIONS(749), 10, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -19534,10 +19560,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, - [17128] = 3, + [17106] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(759), 10, + ACTIONS(787), 10, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, aux_sym_preproc_include_token1, @@ -19548,7 +19574,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - ACTIONS(761), 10, + ACTIONS(789), 10, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -19559,10 +19585,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, - [17156] = 3, + [17134] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(735), 10, + ACTIONS(815), 10, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, aux_sym_preproc_include_token1, @@ -19573,7 +19599,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - ACTIONS(737), 10, + ACTIONS(817), 10, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -19584,10 +19610,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, - [17184] = 3, + [17162] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(735), 10, + ACTIONS(827), 10, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, aux_sym_preproc_include_token1, @@ -19598,7 +19624,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - ACTIONS(737), 10, + ACTIONS(829), 10, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -19609,10 +19635,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, - [17212] = 3, + [17190] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(735), 10, + ACTIONS(759), 10, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, aux_sym_preproc_include_token1, @@ -19623,7 +19649,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - ACTIONS(737), 10, + ACTIONS(761), 10, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -19634,10 +19660,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, - [17240] = 3, + [17218] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(735), 10, + ACTIONS(771), 10, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, aux_sym_preproc_include_token1, @@ -19648,7 +19674,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - ACTIONS(737), 10, + ACTIONS(773), 10, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -19659,10 +19685,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, - [17268] = 3, + [17246] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(747), 10, + ACTIONS(775), 10, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, aux_sym_preproc_include_token1, @@ -19673,7 +19699,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - ACTIONS(749), 10, + ACTIONS(777), 10, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -19684,10 +19710,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, - [17296] = 3, + [17274] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(803), 10, + ACTIONS(755), 10, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, aux_sym_preproc_include_token1, @@ -19698,7 +19724,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - ACTIONS(805), 10, + ACTIONS(757), 10, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -19709,10 +19735,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, - [17324] = 3, + [17302] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(803), 10, + ACTIONS(763), 10, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, aux_sym_preproc_include_token1, @@ -19723,7 +19749,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - ACTIONS(805), 10, + ACTIONS(765), 10, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -19734,10 +19760,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, - [17352] = 3, + [17330] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(803), 10, + ACTIONS(767), 10, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, aux_sym_preproc_include_token1, @@ -19748,7 +19774,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - ACTIONS(805), 10, + ACTIONS(769), 10, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -19759,10 +19785,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, - [17380] = 3, + [17358] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(835), 10, + ACTIONS(799), 10, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, aux_sym_preproc_include_token1, @@ -19773,7 +19799,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - ACTIONS(837), 10, + ACTIONS(801), 10, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -19784,10 +19810,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, - [17408] = 3, + [17386] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(847), 10, + ACTIONS(799), 10, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, aux_sym_preproc_include_token1, @@ -19798,7 +19824,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - ACTIONS(849), 10, + ACTIONS(801), 10, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -19809,10 +19835,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, - [17436] = 3, + [17414] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(795), 10, + ACTIONS(799), 10, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, aux_sym_preproc_include_token1, @@ -19823,7 +19849,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - ACTIONS(797), 10, + ACTIONS(801), 10, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -19834,10 +19860,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, - [17464] = 3, + [17442] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(803), 10, + ACTIONS(799), 10, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, aux_sym_preproc_include_token1, @@ -19848,7 +19874,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - ACTIONS(805), 10, + ACTIONS(801), 10, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -19859,10 +19885,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, - [17492] = 3, + [17470] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(815), 10, + ACTIONS(811), 10, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, aux_sym_preproc_include_token1, @@ -19873,7 +19899,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - ACTIONS(817), 10, + ACTIONS(813), 10, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -19884,85 +19910,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, - [17520] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1039), 5, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_PIPE, - ACTIONS(1041), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [17548] = 3, + [17498] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1043), 5, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_PIPE, - ACTIONS(1045), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [17576] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1047), 5, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_PIPE, - ACTIONS(1049), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [17604] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(827), 10, + ACTIONS(835), 10, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, aux_sym_preproc_include_token1, @@ -19973,7 +19924,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - ACTIONS(829), 10, + ACTIONS(837), 10, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -19984,10 +19935,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, - [17632] = 3, + [17526] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(743), 10, + ACTIONS(835), 10, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, aux_sym_preproc_include_token1, @@ -19998,7 +19949,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - ACTIONS(745), 10, + ACTIONS(837), 10, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -20009,10 +19960,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, - [17660] = 3, + [17554] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(831), 10, + ACTIONS(835), 10, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, aux_sym_preproc_include_token1, @@ -20023,7 +19974,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - ACTIONS(833), 10, + ACTIONS(837), 10, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -20034,10 +19985,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, - [17688] = 3, + [17582] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(831), 10, + ACTIONS(835), 10, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, aux_sym_preproc_include_token1, @@ -20048,7 +19999,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - ACTIONS(833), 10, + ACTIONS(837), 10, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -20059,276 +20010,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, - [17716] = 3, + [17610] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1051), 5, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_PIPE, - ACTIONS(1053), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [17744] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1055), 5, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_PIPE, - ACTIONS(1057), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [17772] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(937), 1, - anon_sym_SLASH, - ACTIONS(931), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(933), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(935), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(947), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(949), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(951), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1035), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1033), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [17814] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(937), 1, - anon_sym_SLASH, - ACTIONS(933), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(935), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(951), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1035), 4, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - ACTIONS(1033), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [17850] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(937), 1, - anon_sym_SLASH, - ACTIONS(935), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1035), 4, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - ACTIONS(1033), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [17882] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1035), 5, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_PIPE, - ACTIONS(1033), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [17910] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - anon_sym_AMP, - ACTIONS(937), 1, - anon_sym_SLASH, - ACTIONS(941), 1, - anon_sym_AMP_AMP, - ACTIONS(943), 1, - anon_sym_PIPE, - ACTIONS(945), 1, - anon_sym_CARET, - ACTIONS(931), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(933), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(935), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(947), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(949), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(951), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1033), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - [17958] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - anon_sym_AMP, - ACTIONS(937), 1, - anon_sym_SLASH, - ACTIONS(943), 1, - anon_sym_PIPE, - ACTIONS(945), 1, - anon_sym_CARET, - ACTIONS(931), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(933), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(935), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(947), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(949), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(951), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1033), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [18004] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - anon_sym_AMP, - ACTIONS(937), 1, - anon_sym_SLASH, - ACTIONS(945), 1, - anon_sym_CARET, - ACTIONS(1035), 1, - anon_sym_PIPE, - ACTIONS(931), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(933), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(935), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(947), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(949), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(951), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1033), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [18050] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(763), 10, + ACTIONS(839), 10, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, aux_sym_preproc_include_token1, @@ -20339,7 +20024,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - ACTIONS(765), 10, + ACTIONS(841), 10, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -20350,10 +20035,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, - [18078] = 3, + [17638] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(775), 10, + ACTIONS(851), 10, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, aux_sym_preproc_include_token1, @@ -20364,7 +20049,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - ACTIONS(777), 10, + ACTIONS(853), 10, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -20375,38 +20060,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, - [18106] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(937), 1, - anon_sym_SLASH, - ACTIONS(933), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(935), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1035), 4, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - ACTIONS(1033), 11, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [18140] = 3, + [17666] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(771), 10, + ACTIONS(851), 10, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, aux_sym_preproc_include_token1, @@ -20417,7 +20074,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - ACTIONS(773), 10, + ACTIONS(853), 10, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -20428,10 +20085,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, - [18168] = 3, + [17694] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(787), 10, + ACTIONS(851), 10, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, aux_sym_preproc_include_token1, @@ -20442,7 +20099,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - ACTIONS(789), 10, + ACTIONS(853), 10, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -20453,10 +20110,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, - [18196] = 3, + [17722] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(791), 10, + ACTIONS(807), 10, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, aux_sym_preproc_include_token1, @@ -20467,7 +20124,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - ACTIONS(793), 10, + ACTIONS(809), 10, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -20478,10 +20135,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, - [18224] = 3, + [17750] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(831), 10, + ACTIONS(807), 10, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, aux_sym_preproc_include_token1, @@ -20492,7 +20149,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - ACTIONS(833), 10, + ACTIONS(809), 10, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -20503,47 +20160,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, - [18252] = 15, + [17778] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(865), 1, - anon_sym_SLASH, - ACTIONS(873), 1, + ACTIONS(807), 10, + anon_sym_AMP_LBRACE, + anon_sym_SLASHdelete_DASHnode_SLASH, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_undef_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + ACTIONS(809), 10, + anon_sym_SLASHdts_DASHv1_SLASH, + anon_sym_SLASHplugin_SLASH, + anon_sym_SLASHmemreserve_SLASH, + sym__label_name, + sym__node_path, + sym__node_or_property, anon_sym_AMP, - ACTIONS(875), 1, - anon_sym_AMP_AMP, - ACTIONS(877), 1, - anon_sym_PIPE, - ACTIONS(879), 1, - anon_sym_CARET, - ACTIONS(885), 1, - anon_sym_QMARK, - ACTIONS(887), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1059), 1, - anon_sym_RPAREN, - ACTIONS(859), 2, + anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, + anon_sym_SLASHinclude_SLASH, + aux_sym_preproc_if_token1, + [17806] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(779), 10, + anon_sym_AMP_LBRACE, + anon_sym_SLASHdelete_DASHnode_SLASH, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_undef_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + ACTIONS(781), 10, + anon_sym_SLASHdts_DASHv1_SLASH, + anon_sym_SLASHplugin_SLASH, + anon_sym_SLASHmemreserve_SLASH, + sym__label_name, + sym__node_path, + sym__node_or_property, + anon_sym_AMP, + anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, + anon_sym_SLASHinclude_SLASH, + aux_sym_preproc_if_token1, + [17834] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(701), 10, + anon_sym_AMP_LBRACE, + anon_sym_SLASHdelete_DASHnode_SLASH, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_undef_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + ACTIONS(703), 10, + anon_sym_SLASHdts_DASHv1_SLASH, + anon_sym_SLASHplugin_SLASH, + anon_sym_SLASHmemreserve_SLASH, + sym__label_name, + sym__node_path, + sym__node_or_property, + anon_sym_AMP, + anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, + anon_sym_SLASHinclude_SLASH, + aux_sym_preproc_if_token1, + [17862] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1039), 5, + anon_sym_AMP, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(861), 2, + anon_sym_PIPE, + ACTIONS(1041), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(863), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(867), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(869), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(871), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [18304] = 3, + [17890] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(839), 10, + ACTIONS(823), 10, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, aux_sym_preproc_include_token1, @@ -20554,7 +20274,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - ACTIONS(841), 10, + ACTIONS(825), 10, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -20565,10 +20285,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, - [18332] = 3, + [17918] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(839), 10, + ACTIONS(783), 10, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, aux_sym_preproc_include_token1, @@ -20579,7 +20299,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - ACTIONS(841), 10, + ACTIONS(785), 10, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -20590,10 +20310,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, - [18360] = 3, + [17946] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(717), 10, + ACTIONS(791), 10, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, aux_sym_preproc_include_token1, @@ -20604,7 +20324,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - ACTIONS(719), 10, + ACTIONS(793), 10, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -20615,10 +20335,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, - [18388] = 3, + [17974] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(839), 10, + ACTIONS(847), 10, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, aux_sym_preproc_include_token1, @@ -20629,7 +20349,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - ACTIONS(841), 10, + ACTIONS(849), 10, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -20640,10 +20360,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, - [18416] = 3, + [18002] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(755), 10, + ACTIONS(795), 10, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, aux_sym_preproc_include_token1, @@ -20654,7 +20374,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - ACTIONS(757), 10, + ACTIONS(797), 10, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -20665,16 +20385,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, - [18444] = 3, + [18030] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1061), 5, + ACTIONS(1043), 5, anon_sym_AMP, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_PIPE, - ACTIONS(1063), 15, + ACTIONS(1045), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -20690,60 +20410,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [18472] = 3, + [18058] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1065), 5, + ACTIONS(913), 1, anon_sym_AMP, + ACTIONS(915), 1, + anon_sym_SLASH, + ACTIONS(927), 1, + anon_sym_PIPE_PIPE, + ACTIONS(929), 1, + anon_sym_AMP_AMP, + ACTIONS(931), 1, + anon_sym_PIPE, + ACTIONS(933), 1, + anon_sym_CARET, + ACTIONS(921), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(923), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(925), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(935), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(937), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(939), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1047), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [18108] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(857), 1, + anon_sym_AMP, + ACTIONS(859), 1, anon_sym_SLASH, + ACTIONS(863), 1, + anon_sym_QMARK, + ACTIONS(869), 1, + anon_sym_PIPE_PIPE, + ACTIONS(871), 1, + anon_sym_AMP_AMP, + ACTIONS(873), 1, anon_sym_PIPE, - ACTIONS(1067), 15, - anon_sym_COMMA, + ACTIONS(875), 1, + anon_sym_CARET, + ACTIONS(1049), 1, anon_sym_RPAREN, + ACTIONS(861), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(865), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(867), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(877), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(879), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(881), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [18160] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(857), 1, + anon_sym_AMP, + ACTIONS(859), 1, + anon_sym_SLASH, + ACTIONS(863), 1, + anon_sym_QMARK, + ACTIONS(869), 1, anon_sym_PIPE_PIPE, + ACTIONS(871), 1, anon_sym_AMP_AMP, + ACTIONS(873), 1, + anon_sym_PIPE, + ACTIONS(875), 1, anon_sym_CARET, + ACTIONS(1051), 1, + anon_sym_RPAREN, + ACTIONS(861), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(867), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(877), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(879), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(881), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [18500] = 3, + [18212] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(799), 10, - anon_sym_AMP_LBRACE, - anon_sym_SLASHdelete_DASHnode_SLASH, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_undef_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - ACTIONS(801), 10, - anon_sym_SLASHdts_DASHv1_SLASH, - anon_sym_SLASHplugin_SLASH, - anon_sym_SLASHmemreserve_SLASH, - sym__label_name, - sym__node_path, - sym__node_or_property, + ACTIONS(857), 1, anon_sym_AMP, - anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, - anon_sym_SLASHinclude_SLASH, - aux_sym_preproc_if_token1, - [18528] = 3, + ACTIONS(859), 1, + anon_sym_SLASH, + ACTIONS(863), 1, + anon_sym_QMARK, + ACTIONS(869), 1, + anon_sym_PIPE_PIPE, + ACTIONS(871), 1, + anon_sym_AMP_AMP, + ACTIONS(873), 1, + anon_sym_PIPE, + ACTIONS(875), 1, + anon_sym_CARET, + ACTIONS(1053), 1, + anon_sym_COLON, + ACTIONS(861), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(867), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(877), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(879), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(881), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [18264] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(807), 10, + ACTIONS(819), 10, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, aux_sym_preproc_include_token1, @@ -20754,7 +20571,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - ACTIONS(809), 10, + ACTIONS(821), 10, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -20765,10 +20582,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, - [18556] = 3, + [18292] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(823), 10, + ACTIONS(831), 10, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, aux_sym_preproc_include_token1, @@ -20779,7 +20596,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - ACTIONS(825), 10, + ACTIONS(833), 10, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -20790,10 +20607,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, - [18584] = 3, + [18320] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(731), 10, + ACTIONS(743), 10, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, aux_sym_preproc_include_token1, @@ -20804,7 +20621,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - ACTIONS(733), 10, + ACTIONS(745), 10, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -20815,172 +20632,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, - [18612] = 15, + [18348] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(865), 1, - anon_sym_SLASH, - ACTIONS(873), 1, + ACTIONS(1055), 5, anon_sym_AMP, - ACTIONS(875), 1, - anon_sym_AMP_AMP, - ACTIONS(877), 1, - anon_sym_PIPE, - ACTIONS(879), 1, - anon_sym_CARET, - ACTIONS(885), 1, - anon_sym_QMARK, - ACTIONS(887), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1069), 1, - anon_sym_RPAREN, - ACTIONS(859), 2, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(861), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(863), 2, + anon_sym_PIPE, + ACTIONS(1057), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(867), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(869), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(871), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [18664] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(779), 10, - anon_sym_AMP_LBRACE, - anon_sym_SLASHdelete_DASHnode_SLASH, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_undef_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - ACTIONS(781), 10, - anon_sym_SLASHdts_DASHv1_SLASH, - anon_sym_SLASHplugin_SLASH, - anon_sym_SLASHmemreserve_SLASH, - sym__label_name, - sym__node_path, - sym__node_or_property, - anon_sym_AMP, - anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, - anon_sym_SLASHinclude_SLASH, - aux_sym_preproc_if_token1, - [18692] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(783), 10, - anon_sym_AMP_LBRACE, - anon_sym_SLASHdelete_DASHnode_SLASH, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_undef_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - ACTIONS(785), 10, - anon_sym_SLASHdts_DASHv1_SLASH, - anon_sym_SLASHplugin_SLASH, - anon_sym_SLASHmemreserve_SLASH, - sym__label_name, - sym__node_path, - sym__node_or_property, - anon_sym_AMP, - anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, - anon_sym_SLASHinclude_SLASH, - aux_sym_preproc_if_token1, - [18720] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(843), 10, - anon_sym_AMP_LBRACE, - anon_sym_SLASHdelete_DASHnode_SLASH, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_undef_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - ACTIONS(845), 10, - anon_sym_SLASHdts_DASHv1_SLASH, - anon_sym_SLASHplugin_SLASH, - anon_sym_SLASHmemreserve_SLASH, - sym__label_name, - sym__node_path, - sym__node_or_property, - anon_sym_AMP, - anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, - anon_sym_SLASHinclude_SLASH, - aux_sym_preproc_if_token1, - [18748] = 3, + [18376] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(811), 10, - anon_sym_AMP_LBRACE, - anon_sym_SLASHdelete_DASHnode_SLASH, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_undef_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - ACTIONS(813), 10, - anon_sym_SLASHdts_DASHv1_SLASH, - anon_sym_SLASHplugin_SLASH, - anon_sym_SLASHmemreserve_SLASH, - sym__label_name, - sym__node_path, - sym__node_or_property, + ACTIONS(1059), 5, anon_sym_AMP, - anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, - anon_sym_SLASHinclude_SLASH, - aux_sym_preproc_if_token1, - [18776] = 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(1061), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [18404] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(721), 10, - anon_sym_AMP_LBRACE, - anon_sym_SLASHdelete_DASHnode_SLASH, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_undef_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - ACTIONS(723), 10, - anon_sym_SLASHdts_DASHv1_SLASH, - anon_sym_SLASHplugin_SLASH, - anon_sym_SLASHmemreserve_SLASH, - sym__label_name, - sym__node_path, - sym__node_or_property, + ACTIONS(1063), 5, anon_sym_AMP, - anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, - anon_sym_SLASHinclude_SLASH, - aux_sym_preproc_if_token1, - [18804] = 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(1065), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [18432] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(819), 10, + ACTIONS(735), 10, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, aux_sym_preproc_include_token1, @@ -20991,7 +20721,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - ACTIONS(821), 10, + ACTIONS(737), 10, anon_sym_SLASHdts_DASHv1_SLASH, anon_sym_SLASHplugin_SLASH, anon_sym_SLASHmemreserve_SLASH, @@ -21002,7 +20732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, - [18832] = 3, + [18460] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(751), 10, @@ -21027,52 +20757,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, - [18860] = 14, + [18488] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(925), 1, + ACTIONS(1067), 5, anon_sym_AMP, - ACTIONS(937), 1, anon_sym_SLASH, - ACTIONS(939), 1, - anon_sym_PIPE_PIPE, - ACTIONS(941), 1, - anon_sym_AMP_AMP, - ACTIONS(943), 1, - anon_sym_PIPE, - ACTIONS(945), 1, - anon_sym_CARET, - ACTIONS(931), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(933), 2, + anon_sym_PIPE, + ACTIONS(1069), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(935), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(947), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(949), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(951), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1071), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [18910] = 3, + [18516] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1073), 5, + ACTIONS(1071), 5, anon_sym_AMP, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_PIPE, - ACTIONS(1075), 15, + ACTIONS(1073), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -21088,149 +20807,286 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [18938] = 9, + [18544] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(937), 1, + ACTIONS(915), 1, anon_sym_SLASH, - ACTIONS(931), 2, + ACTIONS(921), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(933), 2, + ACTIONS(923), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(935), 2, + ACTIONS(925), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(949), 2, + ACTIONS(935), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(937), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(951), 2, + ACTIONS(939), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1035), 2, + ACTIONS(1075), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1033), 7, + ACTIONS(1033), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [18586] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1075), 5, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(1033), 15, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [18978] = 3, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [18614] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(971), 8, - sym__label_name, - sym__node_path, - sym__node_or_property, - sym__property_with_hash, - sym__property_starts_with_number, + ACTIONS(915), 1, + anon_sym_SLASH, + ACTIONS(923), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(925), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(939), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1075), 4, anon_sym_AMP, - anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, - aux_sym_preproc_if_token1, - ACTIONS(973), 11, - anon_sym_AMP_LBRACE, - anon_sym_SLASHdelete_DASHnode_SLASH, - anon_sym_SLASHdelete_DASHproperty_SLASH, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_undef_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [19005] = 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(1033), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [18650] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(967), 8, - sym__label_name, - sym__node_path, - sym__node_or_property, - sym__property_with_hash, - sym__property_starts_with_number, - anon_sym_AMP, - anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, - aux_sym_preproc_if_token1, - ACTIONS(969), 11, - anon_sym_AMP_LBRACE, - anon_sym_SLASHdelete_DASHnode_SLASH, - anon_sym_SLASHdelete_DASHproperty_SLASH, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_undef_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [19032] = 3, + ACTIONS(915), 1, + anon_sym_SLASH, + ACTIONS(925), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1075), 4, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(1033), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [18682] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(963), 8, - sym__label_name, - sym__node_path, - sym__node_or_property, - sym__property_with_hash, - sym__property_starts_with_number, + ACTIONS(913), 1, anon_sym_AMP, - anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, - aux_sym_preproc_if_token1, - ACTIONS(965), 11, - anon_sym_AMP_LBRACE, - anon_sym_SLASHdelete_DASHnode_SLASH, - anon_sym_SLASHdelete_DASHproperty_SLASH, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_undef_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [19059] = 3, + ACTIONS(915), 1, + anon_sym_SLASH, + ACTIONS(929), 1, + anon_sym_AMP_AMP, + ACTIONS(931), 1, + anon_sym_PIPE, + ACTIONS(933), 1, + anon_sym_CARET, + ACTIONS(921), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(923), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(925), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(935), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(937), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(939), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1033), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + [18730] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(967), 8, - sym__label_name, - sym__node_path, - sym__node_or_property, - sym__property_with_hash, - sym__property_starts_with_number, + ACTIONS(913), 1, anon_sym_AMP, - anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, - aux_sym_preproc_if_token1, - ACTIONS(969), 11, - anon_sym_AMP_LBRACE, - anon_sym_SLASHdelete_DASHnode_SLASH, - anon_sym_SLASHdelete_DASHproperty_SLASH, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_undef_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [19086] = 3, + ACTIONS(915), 1, + anon_sym_SLASH, + ACTIONS(933), 1, + anon_sym_CARET, + ACTIONS(1075), 1, + anon_sym_PIPE, + ACTIONS(921), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(923), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(925), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(935), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(937), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(939), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1033), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [18776] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(963), 8, - sym__label_name, - sym__node_path, - sym__node_or_property, - sym__property_with_hash, - sym__property_starts_with_number, + ACTIONS(913), 1, anon_sym_AMP, - anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, - aux_sym_preproc_if_token1, - ACTIONS(965), 11, + ACTIONS(915), 1, + anon_sym_SLASH, + ACTIONS(1075), 1, + anon_sym_PIPE, + ACTIONS(921), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(923), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(925), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(935), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(937), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(939), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1033), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [18820] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_SLASH, + ACTIONS(921), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(923), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(925), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(937), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(939), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1075), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1033), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [18860] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_SLASH, + ACTIONS(923), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(925), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1075), 4, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(1033), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [18894] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(803), 10, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, - anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, @@ -21239,22 +21095,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [19113] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(967), 8, + ACTIONS(805), 10, + anon_sym_SLASHdts_DASHv1_SLASH, + anon_sym_SLASHplugin_SLASH, + anon_sym_SLASHmemreserve_SLASH, sym__label_name, sym__node_path, sym__node_or_property, - sym__property_with_hash, - sym__property_starts_with_number, anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, + anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, - ACTIONS(969), 11, + [18922] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(843), 10, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, - anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, @@ -21263,22 +21120,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [19140] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(971), 8, + ACTIONS(845), 10, + anon_sym_SLASHdts_DASHv1_SLASH, + anon_sym_SLASHplugin_SLASH, + anon_sym_SLASHmemreserve_SLASH, sym__label_name, sym__node_path, sym__node_or_property, - sym__property_with_hash, - sym__property_starts_with_number, anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, + anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, - ACTIONS(973), 11, + [18950] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(705), 10, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, - anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, @@ -21287,34 +21145,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [19167] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(971), 8, + ACTIONS(707), 10, + anon_sym_SLASHdts_DASHv1_SLASH, + anon_sym_SLASHplugin_SLASH, + anon_sym_SLASHmemreserve_SLASH, sym__label_name, sym__node_path, sym__node_or_property, - sym__property_with_hash, - sym__property_starts_with_number, anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, + anon_sym_SLASHinclude_SLASH, aux_sym_preproc_if_token1, - ACTIONS(973), 11, - anon_sym_AMP_LBRACE, - anon_sym_SLASHdelete_DASHnode_SLASH, - anon_sym_SLASHdelete_DASHproperty_SLASH, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_undef_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [19194] = 3, + [18978] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(971), 8, + ACTIONS(977), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -21323,7 +21168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(973), 11, + ACTIONS(979), 11, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -21335,10 +21180,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [19221] = 3, + [19005] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(757), 8, + ACTIONS(953), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -21347,7 +21192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(755), 11, + ACTIONS(955), 11, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -21359,10 +21204,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [19248] = 3, + [19032] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(781), 8, + ACTIONS(957), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -21371,7 +21216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(779), 11, + ACTIONS(959), 11, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -21383,10 +21228,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [19275] = 3, + [19059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(785), 8, + ACTIONS(961), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -21395,7 +21240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(783), 11, + ACTIONS(963), 11, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -21407,34 +21252,115 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [19302] = 3, - ACTIONS(3), 1, + [19086] = 3, + ACTIONS(941), 1, sym_comment, - ACTIONS(845), 8, - sym__label_name, - sym__node_path, - sym__node_or_property, - sym__property_with_hash, - sym__property_starts_with_number, + ACTIONS(1069), 1, + anon_sym_LF, + ACTIONS(1067), 18, anon_sym_AMP, - anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, - aux_sym_preproc_if_token1, - ACTIONS(843), 11, - anon_sym_AMP_LBRACE, - anon_sym_SLASHdelete_DASHnode_SLASH, - anon_sym_SLASHdelete_DASHproperty_SLASH, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_undef_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [19329] = 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [19113] = 3, + ACTIONS(941), 1, + sym_comment, + ACTIONS(1045), 1, + anon_sym_LF, + ACTIONS(1043), 18, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [19140] = 12, + ACTIONS(941), 1, + sym_comment, + ACTIONS(1077), 1, + anon_sym_AMP, + ACTIONS(1085), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1087), 1, + anon_sym_AMP_AMP, + ACTIONS(1089), 1, + anon_sym_PIPE, + ACTIONS(1091), 1, + anon_sym_CARET, + ACTIONS(1097), 1, + anon_sym_LF, + ACTIONS(1083), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1093), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1095), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1079), 3, + anon_sym_SLASH, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1081), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [19185] = 3, + ACTIONS(941), 1, + sym_comment, + ACTIONS(1037), 1, + anon_sym_LF, + ACTIONS(1035), 18, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [19212] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(813), 8, + ACTIONS(965), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -21443,7 +21369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(811), 11, + ACTIONS(967), 11, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -21455,10 +21381,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [19356] = 3, + [19239] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(821), 8, + ACTIONS(965), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -21467,7 +21393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(819), 11, + ACTIONS(967), 11, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -21479,10 +21405,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [19383] = 3, + [19266] = 9, + ACTIONS(941), 1, + sym_comment, + ACTIONS(1033), 1, + anon_sym_LF, + ACTIONS(1077), 1, + anon_sym_AMP, + ACTIONS(1083), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1093), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1095), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1079), 3, + anon_sym_SLASH, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1075), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(1081), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [19305] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(753), 8, + ACTIONS(965), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -21491,7 +21447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(751), 11, + ACTIONS(967), 11, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -21503,10 +21459,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [19410] = 3, + [19332] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(765), 8, + ACTIONS(965), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -21515,7 +21471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(763), 11, + ACTIONS(967), 11, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -21527,10 +21483,104 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [19437] = 3, + [19359] = 12, + ACTIONS(941), 1, + sym_comment, + ACTIONS(1077), 1, + anon_sym_AMP, + ACTIONS(1085), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1087), 1, + anon_sym_AMP_AMP, + ACTIONS(1089), 1, + anon_sym_PIPE, + ACTIONS(1091), 1, + anon_sym_CARET, + ACTIONS(1099), 1, + anon_sym_LF, + ACTIONS(1083), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1093), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1095), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1079), 3, + anon_sym_SLASH, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1081), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [19404] = 12, + ACTIONS(941), 1, + sym_comment, + ACTIONS(1033), 1, + anon_sym_LF, + ACTIONS(1075), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1077), 1, + anon_sym_AMP, + ACTIONS(1087), 1, + anon_sym_AMP_AMP, + ACTIONS(1089), 1, + anon_sym_PIPE, + ACTIONS(1091), 1, + anon_sym_CARET, + ACTIONS(1083), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1093), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1095), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1079), 3, + anon_sym_SLASH, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1081), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [19449] = 7, + ACTIONS(941), 1, + sym_comment, + ACTIONS(1033), 1, + anon_sym_LF, + ACTIONS(1083), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1095), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1079), 3, + anon_sym_SLASH, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1081), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1075), 7, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [19484] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(769), 8, + ACTIONS(841), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -21539,7 +21589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(767), 11, + ACTIONS(839), 11, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -21551,10 +21601,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [19464] = 3, + [19511] = 5, + ACTIONS(941), 1, + sym_comment, + ACTIONS(1033), 1, + anon_sym_LF, + ACTIONS(1083), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1079), 3, + anon_sym_SLASH, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1075), 13, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [19542] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(853), 8, + ACTIONS(773), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -21563,7 +21639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(851), 11, + ACTIONS(771), 11, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -21575,10 +21651,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [19491] = 3, + [19569] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(741), 8, + ACTIONS(853), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -21587,7 +21663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(739), 11, + ACTIONS(851), 11, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -21599,10 +21675,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [19518] = 3, + [19596] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(761), 8, + ACTIONS(1029), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -21611,7 +21687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(759), 11, + ACTIONS(1031), 11, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -21623,10 +21699,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [19545] = 3, + [19623] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(737), 8, + ACTIONS(969), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -21635,7 +21711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(735), 11, + ACTIONS(971), 11, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -21647,10 +21723,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [19572] = 3, + [19650] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(737), 8, + ACTIONS(973), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -21659,7 +21735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(735), 11, + ACTIONS(975), 11, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -21671,10 +21747,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [19599] = 3, + [19677] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(737), 8, + ACTIONS(761), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -21683,7 +21759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(735), 11, + ACTIONS(759), 11, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -21695,10 +21771,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [19626] = 3, + [19704] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(737), 8, + ACTIONS(981), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -21707,7 +21783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(735), 11, + ACTIONS(983), 11, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -21719,19 +21795,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [19653] = 3, - ACTIONS(3), 1, + [19731] = 12, + ACTIONS(941), 1, sym_comment, - ACTIONS(749), 8, - sym__label_name, - sym__node_path, - sym__node_or_property, - sym__property_with_hash, - sym__property_starts_with_number, + ACTIONS(1077), 1, anon_sym_AMP, - anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, + ACTIONS(1085), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1087), 1, + anon_sym_AMP_AMP, + ACTIONS(1089), 1, + anon_sym_PIPE, + ACTIONS(1091), 1, + anon_sym_CARET, + ACTIONS(1101), 1, + anon_sym_LF, + ACTIONS(1083), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1093), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1095), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1079), 3, + anon_sym_SLASH, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1081), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [19776] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(853), 8, + sym__label_name, + sym__node_path, + sym__node_or_property, + sym__property_with_hash, + sym__property_starts_with_number, + anon_sym_AMP, + anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(747), 11, + ACTIONS(851), 11, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -21743,10 +21852,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [19680] = 3, + [19803] = 3, + ACTIONS(941), 1, + sym_comment, + ACTIONS(1041), 1, + anon_sym_LF, + ACTIONS(1039), 18, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [19830] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(805), 8, + ACTIONS(905), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -21755,7 +21888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(803), 11, + ACTIONS(907), 11, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -21767,10 +21900,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [19707] = 3, + [19857] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(805), 8, + ACTIONS(989), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -21779,7 +21912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(803), 11, + ACTIONS(991), 11, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -21791,10 +21924,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [19734] = 3, + [19884] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(805), 8, + ACTIONS(993), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -21803,7 +21936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(803), 11, + ACTIONS(995), 11, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -21815,10 +21948,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [19761] = 3, + [19911] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(805), 8, + ACTIONS(989), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -21827,7 +21960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(803), 11, + ACTIONS(991), 11, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -21839,10 +21972,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [19788] = 3, + [19938] = 12, + ACTIONS(941), 1, + sym_comment, + ACTIONS(1077), 1, + anon_sym_AMP, + ACTIONS(1085), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1087), 1, + anon_sym_AMP_AMP, + ACTIONS(1089), 1, + anon_sym_PIPE, + ACTIONS(1091), 1, + anon_sym_CARET, + ACTIONS(1103), 1, + anon_sym_LF, + ACTIONS(1083), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1093), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1095), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1079), 3, + anon_sym_SLASH, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1081), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [19983] = 12, + ACTIONS(941), 1, + sym_comment, + ACTIONS(1077), 1, + anon_sym_AMP, + ACTIONS(1085), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1087), 1, + anon_sym_AMP_AMP, + ACTIONS(1089), 1, + anon_sym_PIPE, + ACTIONS(1091), 1, + anon_sym_CARET, + ACTIONS(1105), 1, + anon_sym_LF, + ACTIONS(1083), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1093), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1095), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1079), 3, + anon_sym_SLASH, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1081), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [20028] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(817), 8, + ACTIONS(993), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -21851,7 +22050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(815), 11, + ACTIONS(995), 11, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -21863,10 +22062,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [19815] = 3, + [20055] = 8, + ACTIONS(941), 1, + sym_comment, + ACTIONS(1033), 1, + anon_sym_LF, + ACTIONS(1083), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1093), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1095), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1079), 3, + anon_sym_SLASH, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1081), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1075), 5, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + [20092] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(833), 8, + ACTIONS(989), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -21875,7 +22103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(831), 11, + ACTIONS(991), 11, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -21887,10 +22115,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [19842] = 3, + [20119] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(833), 8, + ACTIONS(993), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -21899,7 +22127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(831), 11, + ACTIONS(995), 11, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -21911,10 +22139,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [19869] = 3, + [20146] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(833), 8, + ACTIONS(989), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -21923,7 +22151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(831), 11, + ACTIONS(991), 11, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -21935,10 +22163,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [19896] = 3, + [20173] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(841), 8, + ACTIONS(993), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -21947,7 +22175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(839), 11, + ACTIONS(995), 11, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -21959,10 +22187,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [19923] = 3, + [20200] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(841), 8, + ACTIONS(853), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -21971,7 +22199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(839), 11, + ACTIONS(851), 11, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -21983,10 +22211,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [19950] = 3, + [20227] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(841), 8, + ACTIONS(1019), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -21995,7 +22223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(839), 11, + ACTIONS(1021), 11, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -22007,554 +22235,174 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [19977] = 3, - ACTIONS(979), 1, + [20254] = 14, + ACTIONS(3), 1, sym_comment, - ACTIONS(1033), 1, - anon_sym_LF, - ACTIONS(1035), 18, + ACTIONS(913), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(915), 1, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [20004] = 12, - ACTIONS(979), 1, - sym_comment, - ACTIONS(1033), 1, - anon_sym_LF, - ACTIONS(1035), 1, + ACTIONS(927), 1, anon_sym_PIPE_PIPE, - ACTIONS(1077), 1, - anon_sym_AMP, - ACTIONS(1085), 1, + ACTIONS(929), 1, anon_sym_AMP_AMP, - ACTIONS(1087), 1, - anon_sym_PIPE, - ACTIONS(1089), 1, - anon_sym_CARET, - ACTIONS(1081), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1091), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1093), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1083), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1079), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [20049] = 11, - ACTIONS(979), 1, - sym_comment, - ACTIONS(1033), 1, - anon_sym_LF, - ACTIONS(1077), 1, - anon_sym_AMP, - ACTIONS(1087), 1, + ACTIONS(931), 1, anon_sym_PIPE, - ACTIONS(1089), 1, + ACTIONS(933), 1, anon_sym_CARET, - ACTIONS(1035), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(1081), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1091), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1093), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1083), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1079), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [20092] = 3, - ACTIONS(979), 1, - sym_comment, - ACTIONS(1063), 1, - anon_sym_LF, - ACTIONS(1061), 18, - anon_sym_AMP, + ACTIONS(1107), 1, + anon_sym_RPAREN, + ACTIONS(921), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(923), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(925), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(935), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(937), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(939), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [20119] = 3, - ACTIONS(979), 1, + [20303] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1067), 1, - anon_sym_LF, - ACTIONS(1065), 18, + ACTIONS(985), 8, + sym__label_name, + sym__node_path, + sym__node_or_property, + sym__property_with_hash, + sym__property_starts_with_number, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [20146] = 10, - ACTIONS(979), 1, - sym_comment, - ACTIONS(1033), 1, - anon_sym_LF, - ACTIONS(1077), 1, - anon_sym_AMP, - ACTIONS(1089), 1, - anon_sym_CARET, - ACTIONS(1081), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1091), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1093), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1035), 3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - ACTIONS(1083), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1079), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [20187] = 9, - ACTIONS(979), 1, - sym_comment, - ACTIONS(1033), 1, - anon_sym_LF, - ACTIONS(1077), 1, - anon_sym_AMP, - ACTIONS(1081), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1091), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1093), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1083), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1035), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(1079), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [20226] = 14, + anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, + aux_sym_preproc_if_token1, + ACTIONS(987), 11, + anon_sym_AMP_LBRACE, + anon_sym_SLASHdelete_DASHnode_SLASH, + anon_sym_SLASHdelete_DASHproperty_SLASH, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_undef_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [20330] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(925), 1, - anon_sym_AMP, - ACTIONS(937), 1, - anon_sym_SLASH, - ACTIONS(939), 1, - anon_sym_PIPE_PIPE, - ACTIONS(941), 1, - anon_sym_AMP_AMP, - ACTIONS(943), 1, - anon_sym_PIPE, - ACTIONS(945), 1, - anon_sym_CARET, - ACTIONS(1095), 1, - anon_sym_RPAREN, - ACTIONS(931), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(933), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(935), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(947), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(949), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(951), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [20275] = 7, - ACTIONS(979), 1, - sym_comment, - ACTIONS(1033), 1, - anon_sym_LF, - ACTIONS(1081), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1093), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1083), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1079), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1035), 7, - anon_sym_AMP, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [20310] = 5, - ACTIONS(979), 1, - sym_comment, - ACTIONS(1033), 1, - anon_sym_LF, - ACTIONS(1081), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1083), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1035), 13, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [20341] = 12, - ACTIONS(979), 1, - sym_comment, - ACTIONS(1077), 1, - anon_sym_AMP, - ACTIONS(1085), 1, - anon_sym_AMP_AMP, - ACTIONS(1087), 1, - anon_sym_PIPE, - ACTIONS(1089), 1, - anon_sym_CARET, - ACTIONS(1097), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1099), 1, - anon_sym_LF, - ACTIONS(1081), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1091), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1093), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1083), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1079), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [20386] = 3, - ACTIONS(979), 1, - sym_comment, - ACTIONS(1049), 1, - anon_sym_LF, - ACTIONS(1047), 18, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [20413] = 12, - ACTIONS(979), 1, - sym_comment, - ACTIONS(1077), 1, - anon_sym_AMP, - ACTIONS(1085), 1, - anon_sym_AMP_AMP, - ACTIONS(1087), 1, - anon_sym_PIPE, - ACTIONS(1089), 1, - anon_sym_CARET, - ACTIONS(1097), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1101), 1, - anon_sym_LF, - ACTIONS(1081), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1091), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1093), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1083), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1079), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [20458] = 12, - ACTIONS(979), 1, - sym_comment, - ACTIONS(1077), 1, - anon_sym_AMP, - ACTIONS(1085), 1, - anon_sym_AMP_AMP, - ACTIONS(1087), 1, - anon_sym_PIPE, - ACTIONS(1089), 1, - anon_sym_CARET, - ACTIONS(1097), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1103), 1, - anon_sym_LF, - ACTIONS(1081), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1091), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1093), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1083), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1079), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [20503] = 12, - ACTIONS(979), 1, - sym_comment, - ACTIONS(1077), 1, + ACTIONS(909), 8, + sym__label_name, + sym__node_path, + sym__node_or_property, + sym__property_with_hash, + sym__property_starts_with_number, anon_sym_AMP, - ACTIONS(1085), 1, - anon_sym_AMP_AMP, - ACTIONS(1087), 1, - anon_sym_PIPE, - ACTIONS(1089), 1, - anon_sym_CARET, - ACTIONS(1097), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1105), 1, - anon_sym_LF, - ACTIONS(1081), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1091), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1093), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1083), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1079), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [20548] = 14, + anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, + aux_sym_preproc_if_token1, + ACTIONS(911), 11, + anon_sym_AMP_LBRACE, + anon_sym_SLASHdelete_DASHnode_SLASH, + anon_sym_SLASHdelete_DASHproperty_SLASH, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_undef_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [20357] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(925), 1, + ACTIONS(997), 8, + sym__label_name, + sym__node_path, + sym__node_or_property, + sym__property_with_hash, + sym__property_starts_with_number, anon_sym_AMP, - ACTIONS(937), 1, - anon_sym_SLASH, - ACTIONS(939), 1, - anon_sym_PIPE_PIPE, - ACTIONS(941), 1, - anon_sym_AMP_AMP, - ACTIONS(943), 1, - anon_sym_PIPE, - ACTIONS(945), 1, - anon_sym_CARET, - ACTIONS(1107), 1, - anon_sym_RPAREN, - ACTIONS(931), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(933), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(935), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(947), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(949), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(951), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [20597] = 12, - ACTIONS(979), 1, + anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, + aux_sym_preproc_if_token1, + ACTIONS(999), 11, + anon_sym_AMP_LBRACE, + anon_sym_SLASHdelete_DASHnode_SLASH, + anon_sym_SLASHdelete_DASHproperty_SLASH, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_undef_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [20384] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1077), 1, - anon_sym_AMP, - ACTIONS(1085), 1, - anon_sym_AMP_AMP, - ACTIONS(1087), 1, - anon_sym_PIPE, - ACTIONS(1089), 1, - anon_sym_CARET, - ACTIONS(1097), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1109), 1, - anon_sym_LF, - ACTIONS(1081), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1091), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1093), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1083), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1079), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [20642] = 3, - ACTIONS(979), 1, + ACTIONS(809), 8, + sym__label_name, + sym__node_path, + sym__node_or_property, + sym__property_with_hash, + sym__property_starts_with_number, + anon_sym_AMP, + anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, + aux_sym_preproc_if_token1, + ACTIONS(807), 11, + anon_sym_AMP_LBRACE, + anon_sym_SLASHdelete_DASHnode_SLASH, + anon_sym_SLASHdelete_DASHproperty_SLASH, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_undef_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [20411] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1041), 1, - anon_sym_LF, - ACTIONS(1039), 18, + ACTIONS(1001), 8, + sym__label_name, + sym__node_path, + sym__node_or_property, + sym__property_with_hash, + sym__property_starts_with_number, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [20669] = 3, - ACTIONS(979), 1, + anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, + aux_sym_preproc_if_token1, + ACTIONS(1003), 11, + anon_sym_AMP_LBRACE, + anon_sym_SLASHdelete_DASHnode_SLASH, + anon_sym_SLASHdelete_DASHproperty_SLASH, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_undef_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [20438] = 3, + ACTIONS(941), 1, sym_comment, - ACTIONS(1045), 1, + ACTIONS(1033), 1, anon_sym_LF, - ACTIONS(1043), 18, + ACTIONS(1075), 18, anon_sym_AMP, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -22566,43 +22414,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [20696] = 3, - ACTIONS(979), 1, + [20465] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1053), 1, - anon_sym_LF, - ACTIONS(1051), 18, + ACTIONS(1005), 8, + sym__label_name, + sym__node_path, + sym__node_or_property, + sym__property_with_hash, + sym__property_starts_with_number, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [20723] = 3, - ACTIONS(979), 1, + anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, + aux_sym_preproc_if_token1, + ACTIONS(1007), 11, + anon_sym_AMP_LBRACE, + anon_sym_SLASHdelete_DASHnode_SLASH, + anon_sym_SLASHdelete_DASHproperty_SLASH, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_undef_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [20492] = 3, + ACTIONS(941), 1, sym_comment, ACTIONS(1057), 1, anon_sym_LF, ACTIONS(1055), 18, anon_sym_AMP, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -22614,76 +22462,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [20750] = 12, - ACTIONS(979), 1, + [20519] = 12, + ACTIONS(941), 1, sym_comment, ACTIONS(1077), 1, anon_sym_AMP, ACTIONS(1085), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(1087), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1089), 1, + anon_sym_PIPE, + ACTIONS(1091), 1, anon_sym_CARET, - ACTIONS(1097), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1111), 1, + ACTIONS(1109), 1, anon_sym_LF, - ACTIONS(1081), 2, + ACTIONS(1083), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1091), 2, + ACTIONS(1093), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1093), 2, + ACTIONS(1095), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1083), 3, - anon_sym_STAR, + ACTIONS(1079), 3, anon_sym_SLASH, + anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1079), 4, + ACTIONS(1081), 4, anon_sym_LT, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, - [20795] = 12, - ACTIONS(979), 1, + [20564] = 11, + ACTIONS(941), 1, sym_comment, + ACTIONS(1033), 1, + anon_sym_LF, ACTIONS(1077), 1, anon_sym_AMP, - ACTIONS(1085), 1, - anon_sym_AMP_AMP, - ACTIONS(1087), 1, - anon_sym_PIPE, ACTIONS(1089), 1, + anon_sym_PIPE, + ACTIONS(1091), 1, anon_sym_CARET, - ACTIONS(1097), 1, + ACTIONS(1075), 2, anon_sym_PIPE_PIPE, - ACTIONS(1113), 1, - anon_sym_LF, - ACTIONS(1081), 2, + anon_sym_AMP_AMP, + ACTIONS(1083), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1091), 2, + ACTIONS(1093), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1093), 2, + ACTIONS(1095), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1083), 3, - anon_sym_STAR, + ACTIONS(1079), 3, anon_sym_SLASH, + anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1079), 4, + ACTIONS(1081), 4, anon_sym_LT, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, - [20840] = 3, + [20607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(989), 8, + ACTIONS(1005), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -22692,7 +22539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(991), 11, + ACTIONS(1007), 11, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -22704,10 +22551,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [20867] = 3, + [20634] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(993), 8, + ACTIONS(1009), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -22716,7 +22563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(995), 11, + ACTIONS(1011), 11, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -22728,10 +22575,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [20894] = 3, + [20661] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(997), 8, + ACTIONS(1005), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -22740,7 +22587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(999), 11, + ACTIONS(1007), 11, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -22752,43 +22599,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [20921] = 12, - ACTIONS(979), 1, - sym_comment, - ACTIONS(1077), 1, - anon_sym_AMP, - ACTIONS(1085), 1, - anon_sym_AMP_AMP, - ACTIONS(1087), 1, - anon_sym_PIPE, - ACTIONS(1089), 1, - anon_sym_CARET, - ACTIONS(1097), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1115), 1, - anon_sym_LF, - ACTIONS(1081), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1091), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1093), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1083), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1079), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [20966] = 3, + [20688] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1001), 8, + ACTIONS(1009), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -22797,7 +22611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(1003), 11, + ACTIONS(1011), 11, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -22809,7 +22623,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [20993] = 3, + [20715] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1005), 8, @@ -22833,10 +22647,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [21020] = 3, + [20742] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1005), 8, + ACTIONS(1009), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -22845,7 +22659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(1007), 11, + ACTIONS(1011), 11, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -22857,10 +22671,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [21047] = 3, + [20769] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1005), 8, + ACTIONS(809), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -22869,7 +22683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(1007), 11, + ACTIONS(807), 11, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -22881,10 +22695,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [21074] = 3, + [20796] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1005), 8, + ACTIONS(909), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -22893,7 +22707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(1007), 11, + ACTIONS(911), 11, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -22905,34 +22719,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [21101] = 3, - ACTIONS(979), 1, + [20823] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1075), 1, - anon_sym_LF, - ACTIONS(1073), 18, + ACTIONS(909), 8, + sym__label_name, + sym__node_path, + sym__node_or_property, + sym__property_with_hash, + sym__property_starts_with_number, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [21128] = 3, + anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, + aux_sym_preproc_if_token1, + ACTIONS(911), 11, + anon_sym_AMP_LBRACE, + anon_sym_SLASHdelete_DASHnode_SLASH, + anon_sym_SLASHdelete_DASHproperty_SLASH, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_undef_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [20850] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(909), 8, + sym__label_name, + sym__node_path, + sym__node_or_property, + sym__property_with_hash, + sym__property_starts_with_number, + anon_sym_AMP, + anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, + aux_sym_preproc_if_token1, + ACTIONS(911), 11, + anon_sym_AMP_LBRACE, + anon_sym_SLASHdelete_DASHnode_SLASH, + anon_sym_SLASHdelete_DASHproperty_SLASH, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_undef_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [20877] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1013), 8, + sym__label_name, + sym__node_path, + sym__node_or_property, + sym__property_with_hash, + sym__property_starts_with_number, + anon_sym_AMP, + anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, + aux_sym_preproc_if_token1, + ACTIONS(1015), 11, + anon_sym_AMP_LBRACE, + anon_sym_SLASHdelete_DASHnode_SLASH, + anon_sym_SLASHdelete_DASHproperty_SLASH, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_undef_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [20904] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1009), 8, + ACTIONS(1013), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -22941,7 +22803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(1011), 11, + ACTIONS(1015), 11, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -22953,7 +22815,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [21155] = 3, + [20931] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1013), 8, @@ -22977,10 +22839,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [21182] = 3, + [20958] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1017), 8, + ACTIONS(1013), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -22989,7 +22851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(1019), 11, + ACTIONS(1015), 11, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -23001,10 +22863,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [21209] = 3, + [20985] = 6, + ACTIONS(941), 1, + sym_comment, + ACTIONS(1033), 1, + anon_sym_LF, + ACTIONS(1083), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1095), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1079), 3, + anon_sym_SLASH, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1075), 11, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [21018] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1021), 8, + ACTIONS(741), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -23013,7 +22902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(1023), 11, + ACTIONS(739), 11, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -23025,10 +22914,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [21236] = 3, + [21045] = 4, + ACTIONS(941), 1, + sym_comment, + ACTIONS(1033), 1, + anon_sym_LF, + ACTIONS(1079), 3, + anon_sym_SLASH, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1075), 15, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [21074] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1025), 8, + ACTIONS(733), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -23037,7 +22951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(1027), 11, + ACTIONS(731), 11, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -23049,10 +22963,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [21263] = 3, + [21101] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1029), 8, + ACTIONS(809), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -23061,7 +22975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(1031), 11, + ACTIONS(807), 11, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -23073,10 +22987,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [21290] = 3, + [21128] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1029), 8, + ACTIONS(777), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -23085,7 +22999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(1031), 11, + ACTIONS(775), 11, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -23097,10 +23011,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [21317] = 3, + [21155] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1029), 8, + ACTIONS(757), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -23109,7 +23023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(1031), 11, + ACTIONS(755), 11, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -23121,10 +23035,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [21344] = 3, + [21182] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1029), 8, + ACTIONS(749), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -23133,7 +23047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(1031), 11, + ACTIONS(747), 11, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -23145,77 +23059,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [21371] = 8, - ACTIONS(979), 1, + [21209] = 3, + ACTIONS(941), 1, sym_comment, - ACTIONS(1033), 1, + ACTIONS(1061), 1, anon_sym_LF, - ACTIONS(1081), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1091), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1093), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1083), 3, - anon_sym_STAR, + ACTIONS(1059), 18, + anon_sym_AMP, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1079), 4, anon_sym_LT, anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1035), 5, - anon_sym_AMP, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - [21408] = 6, - ACTIONS(979), 1, - sym_comment, - ACTIONS(1033), 1, - anon_sym_LF, - ACTIONS(1081), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1093), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1083), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1035), 11, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [21441] = 4, - ACTIONS(979), 1, - sym_comment, - ACTIONS(1033), 1, - anon_sym_LF, - ACTIONS(1083), 3, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1035), 15, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -23226,10 +23083,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [21470] = 3, + [21236] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(983), 8, + ACTIONS(765), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -23238,7 +23095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(985), 11, + ACTIONS(763), 11, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -23250,10 +23107,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [21497] = 3, + [21263] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(975), 8, + ACTIONS(769), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -23262,7 +23119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(977), 11, + ACTIONS(767), 11, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -23274,10 +23131,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [21524] = 3, + [21290] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(909), 8, + ACTIONS(801), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -23286,7 +23143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(911), 11, + ACTIONS(799), 11, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -23298,10 +23155,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [21551] = 3, + [21317] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(913), 8, + ACTIONS(801), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -23310,7 +23167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(915), 11, + ACTIONS(799), 11, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -23322,10 +23179,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [21578] = 3, + [21344] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 8, + ACTIONS(801), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -23334,7 +23191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(919), 11, + ACTIONS(799), 11, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -23346,10 +23203,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [21605] = 3, + [21371] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(905), 8, + ACTIONS(789), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -23358,7 +23215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(907), 11, + ACTIONS(787), 11, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -23370,10 +23227,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [21632] = 3, + [21398] = 3, + ACTIONS(941), 1, + sym_comment, + ACTIONS(1065), 1, + anon_sym_LF, + ACTIONS(1063), 18, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [21425] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(921), 8, + ACTIONS(801), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -23382,7 +23263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(923), 11, + ACTIONS(799), 11, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -23394,10 +23275,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [21659] = 3, + [21452] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(905), 8, + ACTIONS(913), 1, + anon_sym_AMP, + ACTIONS(915), 1, + anon_sym_SLASH, + ACTIONS(927), 1, + anon_sym_PIPE_PIPE, + ACTIONS(929), 1, + anon_sym_AMP_AMP, + ACTIONS(931), 1, + anon_sym_PIPE, + ACTIONS(933), 1, + anon_sym_CARET, + ACTIONS(1111), 1, + anon_sym_RPAREN, + ACTIONS(921), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(923), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(925), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(935), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(937), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(939), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [21501] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(813), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -23406,7 +23322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(907), 11, + ACTIONS(811), 11, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -23418,10 +23334,65 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [21686] = 3, + [21528] = 3, + ACTIONS(941), 1, + sym_comment, + ACTIONS(1073), 1, + anon_sym_LF, + ACTIONS(1071), 18, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [21555] = 10, + ACTIONS(941), 1, + sym_comment, + ACTIONS(1033), 1, + anon_sym_LF, + ACTIONS(1077), 1, + anon_sym_AMP, + ACTIONS(1091), 1, + anon_sym_CARET, + ACTIONS(1083), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1093), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1095), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1075), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + ACTIONS(1079), 3, + anon_sym_SLASH, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1081), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [21596] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(921), 8, + ACTIONS(837), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -23430,7 +23401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(923), 11, + ACTIONS(835), 11, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -23442,10 +23413,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [21713] = 3, + [21623] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(905), 8, + ACTIONS(837), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -23454,7 +23425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(907), 11, + ACTIONS(835), 11, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -23466,10 +23437,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [21740] = 3, + [21650] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(921), 8, + ACTIONS(817), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -23478,7 +23449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(923), 11, + ACTIONS(815), 11, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -23490,10 +23461,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [21767] = 3, + [21677] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(905), 8, + ACTIONS(837), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -23502,7 +23473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(907), 11, + ACTIONS(835), 11, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -23514,10 +23485,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [21794] = 3, + [21704] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(921), 8, + ACTIONS(1023), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -23526,7 +23497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(923), 11, + ACTIONS(1025), 11, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -23538,10 +23509,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [21821] = 3, + [21731] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(955), 8, + ACTIONS(837), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -23550,7 +23521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(957), 11, + ACTIONS(835), 11, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -23562,10 +23533,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [21848] = 3, + [21758] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(959), 8, + ACTIONS(945), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -23574,7 +23545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(961), 11, + ACTIONS(947), 11, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -23586,10 +23557,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + [21785] = 12, + ACTIONS(941), 1, + sym_comment, + ACTIONS(1077), 1, + anon_sym_AMP, + ACTIONS(1085), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1087), 1, + anon_sym_AMP_AMP, + ACTIONS(1089), 1, + anon_sym_PIPE, + ACTIONS(1091), 1, + anon_sym_CARET, + ACTIONS(1113), 1, + anon_sym_LF, + ACTIONS(1083), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1093), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1095), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1079), 3, + anon_sym_SLASH, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1081), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [21830] = 12, + ACTIONS(941), 1, + sym_comment, + ACTIONS(1077), 1, + anon_sym_AMP, + ACTIONS(1085), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1087), 1, + anon_sym_AMP_AMP, + ACTIONS(1089), 1, + anon_sym_PIPE, + ACTIONS(1091), 1, + anon_sym_CARET, + ACTIONS(1115), 1, + anon_sym_LF, + ACTIONS(1083), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1093), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1095), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1079), 3, + anon_sym_SLASH, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1081), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, [21875] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(963), 8, + ACTIONS(949), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -23598,7 +23635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(965), 11, + ACTIONS(951), 11, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -23613,7 +23650,7 @@ static const uint16_t ts_small_parse_table[] = { [21902] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(967), 8, + ACTIONS(829), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -23622,7 +23659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(969), 11, + ACTIONS(827), 11, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -23637,7 +23674,7 @@ static const uint16_t ts_small_parse_table[] = { [21929] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(963), 8, + ACTIONS(1009), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -23646,7 +23683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(965), 11, + ACTIONS(1011), 11, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -23661,7 +23698,7 @@ static const uint16_t ts_small_parse_table[] = { [21956] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(983), 8, + ACTIONS(981), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -23670,7 +23707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(985), 9, + ACTIONS(983), 9, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -23683,7 +23720,7 @@ static const uint16_t ts_small_parse_table[] = { [21981] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(737), 8, + ACTIONS(801), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -23692,20 +23729,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(735), 9, + ACTIONS(799), 9, anon_sym_AMP_LBRACE, + anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, [22006] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(749), 8, + ACTIONS(801), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -23714,20 +23751,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(747), 9, + ACTIONS(799), 9, anon_sym_AMP_LBRACE, + anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, [22031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(805), 8, + ACTIONS(801), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -23736,20 +23773,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(803), 9, + ACTIONS(799), 9, anon_sym_AMP_LBRACE, + anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, [22056] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(805), 8, + ACTIONS(801), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -23758,20 +23795,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(803), 9, + ACTIONS(799), 9, anon_sym_AMP_LBRACE, + anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, [22081] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(805), 8, + ACTIONS(813), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -23780,20 +23817,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(803), 9, + ACTIONS(811), 9, anon_sym_AMP_LBRACE, + anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, [22106] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(805), 8, + ACTIONS(1029), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -23802,20 +23839,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(803), 9, + ACTIONS(1031), 9, anon_sym_AMP_LBRACE, + anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, [22131] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(817), 8, + ACTIONS(1019), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -23824,20 +23861,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(815), 9, + ACTIONS(1021), 9, anon_sym_AMP_LBRACE, + anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, [22156] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(833), 8, + ACTIONS(985), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -23846,20 +23883,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(831), 9, + ACTIONS(987), 9, anon_sym_AMP_LBRACE, + anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, [22181] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(833), 8, + ACTIONS(837), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -23868,20 +23905,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(831), 9, + ACTIONS(835), 9, anon_sym_AMP_LBRACE, + anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, [22206] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(833), 8, + ACTIONS(837), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -23890,20 +23927,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(831), 9, + ACTIONS(835), 9, anon_sym_AMP_LBRACE, + anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, [22231] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(841), 8, + ACTIONS(837), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -23912,20 +23949,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(839), 9, + ACTIONS(835), 9, anon_sym_AMP_LBRACE, + anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, [22256] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(841), 8, + ACTIONS(837), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -23934,14 +23971,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(839), 9, + ACTIONS(835), 9, anon_sym_AMP_LBRACE, + anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, [22281] = 3, @@ -23958,18 +23995,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(839), 9, anon_sym_AMP_LBRACE, + anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, [22306] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(975), 8, + ACTIONS(909), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -23978,7 +24015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(977), 9, + ACTIONS(911), 9, anon_sym_AMP_LBRACE, anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -23988,7 +24025,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [22331] = 3, + [22331] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17), 1, + anon_sym_AMP, + ACTIONS(19), 1, + anon_sym_AMP_LBRACE, + ACTIONS(1117), 1, + anon_sym_SEMI, + ACTIONS(1119), 1, + anon_sym_SLASHbits_SLASH, + ACTIONS(1121), 1, + anon_sym_SLASHincbin_SLASH, + ACTIONS(1123), 1, + anon_sym_LT, + ACTIONS(1125), 1, + anon_sym_DQUOTE, + ACTIONS(1127), 1, + anon_sym_LBRACK, + STATE(628), 1, + sym__bits, + STATE(707), 1, + sym__label_reference, + STATE(711), 1, + sym__node_reference, + STATE(868), 6, + sym_reference, + sym_incbin, + sym__property_value, + sym_integer_cells, + sym_string_literal, + sym_byte_string_literal, + [22376] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(909), 8, @@ -24010,10 +24079,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [22356] = 3, + [22401] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17), 1, + anon_sym_AMP, + ACTIONS(19), 1, + anon_sym_AMP_LBRACE, + ACTIONS(1119), 1, + anon_sym_SLASHbits_SLASH, + ACTIONS(1121), 1, + anon_sym_SLASHincbin_SLASH, + ACTIONS(1123), 1, + anon_sym_LT, + ACTIONS(1125), 1, + anon_sym_DQUOTE, + ACTIONS(1127), 1, + anon_sym_LBRACK, + ACTIONS(1129), 1, + anon_sym_SEMI, + STATE(629), 1, + sym__bits, + STATE(707), 1, + sym__label_reference, + STATE(711), 1, + sym__node_reference, + STATE(803), 6, + sym_reference, + sym_incbin, + sym__property_value, + sym_integer_cells, + sym_string_literal, + sym_byte_string_literal, + [22446] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(913), 8, + ACTIONS(909), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -24022,7 +24123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(915), 9, + ACTIONS(911), 9, anon_sym_AMP_LBRACE, anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -24032,15 +24133,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [22381] = 13, + [22471] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, anon_sym_AMP, ACTIONS(19), 1, anon_sym_AMP_LBRACE, - ACTIONS(1117), 1, - anon_sym_SEMI, ACTIONS(1119), 1, anon_sym_SLASHbits_SLASH, ACTIONS(1121), 1, @@ -24051,9 +24150,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1127), 1, anon_sym_LBRACK, - STATE(622), 1, + ACTIONS(1131), 1, + anon_sym_SEMI, + STATE(635), 1, sym__bits, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, @@ -24064,10 +24165,108 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_cells, sym_string_literal, sym_byte_string_literal, - [22426] = 3, + [22516] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(909), 8, + sym__label_name, + sym__node_path, + sym__node_or_property, + sym__property_with_hash, + sym__property_starts_with_number, + anon_sym_AMP, + anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, + aux_sym_preproc_if_token1, + ACTIONS(911), 9, + anon_sym_AMP_LBRACE, + anon_sym_RBRACE, + anon_sym_SLASHdelete_DASHnode_SLASH, + anon_sym_SLASHdelete_DASHproperty_SLASH, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_undef_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + [22541] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17), 1, + anon_sym_AMP, + ACTIONS(19), 1, + anon_sym_AMP_LBRACE, + ACTIONS(1119), 1, + anon_sym_SLASHbits_SLASH, + ACTIONS(1121), 1, + anon_sym_SLASHincbin_SLASH, + ACTIONS(1123), 1, + anon_sym_LT, + ACTIONS(1125), 1, + anon_sym_DQUOTE, + ACTIONS(1127), 1, + anon_sym_LBRACK, + ACTIONS(1133), 1, + anon_sym_SEMI, + STATE(636), 1, + sym__bits, + STATE(707), 1, + sym__label_reference, + STATE(711), 1, + sym__node_reference, + STATE(848), 6, + sym_reference, + sym_incbin, + sym__property_value, + sym_integer_cells, + sym_string_literal, + sym_byte_string_literal, + [22586] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(853), 8, + sym__label_name, + sym__node_path, + sym__node_or_property, + sym__property_with_hash, + sym__property_starts_with_number, + anon_sym_AMP, + anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, + aux_sym_preproc_if_token1, + ACTIONS(851), 9, + anon_sym_AMP_LBRACE, + anon_sym_RBRACE, + anon_sym_SLASHdelete_DASHnode_SLASH, + anon_sym_SLASHdelete_DASHproperty_SLASH, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_undef_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + [22611] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(853), 8, + sym__label_name, + sym__node_path, + sym__node_or_property, + sym__property_with_hash, + sym__property_starts_with_number, + anon_sym_AMP, + anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, + aux_sym_preproc_if_token1, + ACTIONS(851), 9, + anon_sym_AMP_LBRACE, + anon_sym_RBRACE, + anon_sym_SLASHdelete_DASHnode_SLASH, + anon_sym_SLASHdelete_DASHproperty_SLASH, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_undef_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + [22636] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 8, + ACTIONS(853), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -24076,7 +24275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(919), 9, + ACTIONS(851), 9, anon_sym_AMP_LBRACE, anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -24086,10 +24285,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [22451] = 3, + [22661] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(905), 8, + ACTIONS(809), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -24098,7 +24297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(907), 9, + ACTIONS(807), 9, anon_sym_AMP_LBRACE, anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -24108,10 +24307,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [22476] = 3, + [22686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(921), 8, + ACTIONS(809), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -24120,7 +24319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(923), 9, + ACTIONS(807), 9, anon_sym_AMP_LBRACE, anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -24130,10 +24329,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [22501] = 3, + [22711] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(905), 8, + ACTIONS(809), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -24142,7 +24341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(907), 9, + ACTIONS(807), 9, anon_sym_AMP_LBRACE, anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -24152,10 +24351,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [22526] = 3, + [22736] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(921), 8, + ACTIONS(945), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -24164,7 +24363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(923), 9, + ACTIONS(947), 9, anon_sym_AMP_LBRACE, anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -24174,10 +24373,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [22551] = 3, + [22761] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(905), 8, + ACTIONS(949), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -24186,7 +24385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(907), 9, + ACTIONS(951), 9, anon_sym_AMP_LBRACE, anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -24196,10 +24395,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [22576] = 3, + [22786] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(853), 8, + ACTIONS(953), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -24208,7 +24407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(851), 9, + ACTIONS(955), 9, anon_sym_AMP_LBRACE, anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -24218,10 +24417,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [22601] = 3, + [22811] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(741), 8, + ACTIONS(957), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -24230,7 +24429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(739), 9, + ACTIONS(959), 9, anon_sym_AMP_LBRACE, anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -24240,10 +24439,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [22626] = 3, + [22836] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(761), 8, + ACTIONS(961), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -24252,7 +24451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(759), 9, + ACTIONS(963), 9, anon_sym_AMP_LBRACE, anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -24262,10 +24461,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [22651] = 3, + [22861] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(921), 8, + ACTIONS(965), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -24274,7 +24473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(923), 9, + ACTIONS(967), 9, anon_sym_AMP_LBRACE, anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -24284,10 +24483,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [22676] = 3, + [22886] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(905), 8, + ACTIONS(965), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -24296,7 +24495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(907), 9, + ACTIONS(967), 9, anon_sym_AMP_LBRACE, anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -24306,10 +24505,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [22701] = 3, + [22911] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(921), 8, + ACTIONS(965), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -24318,7 +24517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(923), 9, + ACTIONS(967), 9, anon_sym_AMP_LBRACE, anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -24328,10 +24527,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [22726] = 3, + [22936] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(993), 8, + ACTIONS(965), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -24340,20 +24539,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(995), 9, + ACTIONS(967), 9, anon_sym_AMP_LBRACE, + anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [22751] = 3, + [22961] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(997), 8, + ACTIONS(1023), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -24362,7 +24561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(999), 9, + ACTIONS(1025), 9, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -24372,10 +24571,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [22776] = 3, + [22986] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1009), 8, + ACTIONS(969), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -24384,20 +24583,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(1011), 9, + ACTIONS(971), 9, anon_sym_AMP_LBRACE, + anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [22801] = 3, + [23011] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(737), 8, + ACTIONS(1029), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -24406,20 +24605,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(735), 9, + ACTIONS(1031), 9, anon_sym_AMP_LBRACE, - anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [22826] = 3, + [23036] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(737), 8, + ACTIONS(1019), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -24428,20 +24627,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(735), 9, + ACTIONS(1021), 9, anon_sym_AMP_LBRACE, - anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [22851] = 3, + [23061] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(737), 8, + ACTIONS(985), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -24450,20 +24649,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(735), 9, + ACTIONS(987), 9, anon_sym_AMP_LBRACE, - anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [22876] = 3, + [23086] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(737), 8, + ACTIONS(909), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -24472,20 +24671,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(735), 9, + ACTIONS(911), 9, anon_sym_AMP_LBRACE, - anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [22901] = 3, + [23111] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(749), 8, + ACTIONS(909), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -24494,20 +24693,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(747), 9, + ACTIONS(911), 9, anon_sym_AMP_LBRACE, - anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [22926] = 3, + [23136] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 8, + ACTIONS(909), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -24516,7 +24715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(1015), 9, + ACTIONS(911), 9, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -24526,10 +24725,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [22951] = 3, + [23161] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1017), 8, + ACTIONS(909), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -24538,7 +24737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(1019), 9, + ACTIONS(911), 9, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -24548,10 +24747,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [22976] = 3, + [23186] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1021), 8, + ACTIONS(973), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -24560,20 +24759,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(1023), 9, + ACTIONS(975), 9, anon_sym_AMP_LBRACE, + anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [23001] = 3, + [23211] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1025), 8, + ACTIONS(977), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -24582,20 +24781,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(1027), 9, + ACTIONS(979), 9, anon_sym_AMP_LBRACE, + anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [23026] = 3, + [23236] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(955), 8, + ACTIONS(981), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -24604,7 +24803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(957), 9, + ACTIONS(983), 9, anon_sym_AMP_LBRACE, anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -24614,10 +24813,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [23051] = 3, + [23261] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1029), 8, + ACTIONS(905), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -24626,20 +24825,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(1031), 9, + ACTIONS(907), 9, anon_sym_AMP_LBRACE, + anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [23076] = 3, + [23286] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(959), 8, + ACTIONS(989), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -24648,7 +24847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(961), 9, + ACTIONS(991), 9, anon_sym_AMP_LBRACE, anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -24658,10 +24857,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [23101] = 3, + [23311] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1029), 8, + ACTIONS(945), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -24670,7 +24869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(1031), 9, + ACTIONS(947), 9, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -24680,42 +24879,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [23126] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17), 1, - anon_sym_AMP, - ACTIONS(19), 1, - anon_sym_AMP_LBRACE, - ACTIONS(1119), 1, - anon_sym_SLASHbits_SLASH, - ACTIONS(1121), 1, - anon_sym_SLASHincbin_SLASH, - ACTIONS(1123), 1, - anon_sym_LT, - ACTIONS(1125), 1, - anon_sym_DQUOTE, - ACTIONS(1127), 1, - anon_sym_LBRACK, - ACTIONS(1129), 1, - anon_sym_SEMI, - STATE(636), 1, - sym__bits, - STATE(710), 1, - sym__label_reference, - STATE(711), 1, - sym__node_reference, - STATE(815), 6, - sym_reference, - sym_incbin, - sym__property_value, - sym_integer_cells, - sym_string_literal, - sym_byte_string_literal, - [23171] = 3, + [23336] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(963), 8, + ACTIONS(949), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -24724,20 +24891,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(965), 9, + ACTIONS(951), 9, anon_sym_AMP_LBRACE, - anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [23196] = 3, + [23361] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(967), 8, + ACTIONS(953), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -24746,20 +24913,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(969), 9, + ACTIONS(955), 9, anon_sym_AMP_LBRACE, - anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [23221] = 3, + [23386] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(963), 8, + ACTIONS(957), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -24768,20 +24935,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(965), 9, + ACTIONS(959), 9, anon_sym_AMP_LBRACE, - anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [23246] = 3, + [23411] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(967), 8, + ACTIONS(961), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -24790,20 +24957,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(969), 9, + ACTIONS(963), 9, anon_sym_AMP_LBRACE, - anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [23271] = 3, + [23436] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(805), 8, + ACTIONS(965), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -24812,148 +24979,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(803), 9, + ACTIONS(967), 9, anon_sym_AMP_LBRACE, - anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [23296] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17), 1, - anon_sym_AMP, - ACTIONS(19), 1, - anon_sym_AMP_LBRACE, - ACTIONS(1119), 1, - anon_sym_SLASHbits_SLASH, - ACTIONS(1121), 1, - anon_sym_SLASHincbin_SLASH, - ACTIONS(1123), 1, - anon_sym_LT, - ACTIONS(1125), 1, - anon_sym_DQUOTE, - ACTIONS(1127), 1, - anon_sym_LBRACK, - ACTIONS(1131), 1, - anon_sym_SEMI, - STATE(629), 1, - sym__bits, - STATE(710), 1, - sym__label_reference, - STATE(711), 1, - sym__node_reference, - STATE(827), 6, - sym_reference, - sym_incbin, - sym__property_value, - sym_integer_cells, - sym_string_literal, - sym_byte_string_literal, - [23341] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17), 1, - anon_sym_AMP, - ACTIONS(19), 1, - anon_sym_AMP_LBRACE, - ACTIONS(1119), 1, - anon_sym_SLASHbits_SLASH, - ACTIONS(1121), 1, - anon_sym_SLASHincbin_SLASH, - ACTIONS(1123), 1, - anon_sym_LT, - ACTIONS(1125), 1, - anon_sym_DQUOTE, - ACTIONS(1127), 1, - anon_sym_LBRACK, - ACTIONS(1133), 1, - anon_sym_SEMI, - STATE(630), 1, - sym__bits, - STATE(710), 1, - sym__label_reference, - STATE(711), 1, - sym__node_reference, - STATE(828), 6, - sym_reference, - sym_incbin, - sym__property_value, - sym_integer_cells, - sym_string_literal, - sym_byte_string_literal, - [23386] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17), 1, - anon_sym_AMP, - ACTIONS(19), 1, - anon_sym_AMP_LBRACE, - ACTIONS(1119), 1, - anon_sym_SLASHbits_SLASH, - ACTIONS(1121), 1, - anon_sym_SLASHincbin_SLASH, - ACTIONS(1123), 1, - anon_sym_LT, - ACTIONS(1125), 1, - anon_sym_DQUOTE, - ACTIONS(1127), 1, - anon_sym_LBRACK, - ACTIONS(1135), 1, - anon_sym_SEMI, - STATE(632), 1, - sym__bits, - STATE(710), 1, - sym__label_reference, - STATE(711), 1, - sym__node_reference, - STATE(829), 6, - sym_reference, - sym_incbin, - sym__property_value, - sym_integer_cells, - sym_string_literal, - sym_byte_string_literal, - [23431] = 13, + [23461] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17), 1, - anon_sym_AMP, - ACTIONS(19), 1, - anon_sym_AMP_LBRACE, - ACTIONS(1119), 1, - anon_sym_SLASHbits_SLASH, - ACTIONS(1121), 1, - anon_sym_SLASHincbin_SLASH, - ACTIONS(1123), 1, - anon_sym_LT, - ACTIONS(1125), 1, - anon_sym_DQUOTE, - ACTIONS(1127), 1, - anon_sym_LBRACK, - ACTIONS(1137), 1, - anon_sym_SEMI, - STATE(633), 1, - sym__bits, - STATE(710), 1, - sym__label_reference, - STATE(711), 1, - sym__node_reference, - STATE(833), 6, - sym_reference, - sym_incbin, - sym__property_value, - sym_integer_cells, - sym_string_literal, - sym_byte_string_literal, - [23476] = 3, + ACTIONS(965), 8, + sym__label_name, + sym__node_path, + sym__node_or_property, + sym__property_with_hash, + sym__property_starts_with_number, + anon_sym_AMP, + anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, + aux_sym_preproc_if_token1, + ACTIONS(967), 9, + anon_sym_AMP_LBRACE, + anon_sym_SLASHdelete_DASHnode_SLASH, + anon_sym_SLASHdelete_DASHproperty_SLASH, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_undef_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + [23486] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(805), 8, + ACTIONS(965), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -24962,52 +25023,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(803), 9, + ACTIONS(967), 9, anon_sym_AMP_LBRACE, - anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [23501] = 13, + [23511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17), 1, + ACTIONS(965), 8, + sym__label_name, + sym__node_path, + sym__node_or_property, + sym__property_with_hash, + sym__property_starts_with_number, anon_sym_AMP, - ACTIONS(19), 1, + anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, + aux_sym_preproc_if_token1, + ACTIONS(967), 9, anon_sym_AMP_LBRACE, - ACTIONS(1119), 1, - anon_sym_SLASHbits_SLASH, - ACTIONS(1121), 1, - anon_sym_SLASHincbin_SLASH, - ACTIONS(1123), 1, - anon_sym_LT, - ACTIONS(1125), 1, - anon_sym_DQUOTE, - ACTIONS(1127), 1, - anon_sym_LBRACK, - ACTIONS(1139), 1, - anon_sym_SEMI, - STATE(638), 1, - sym__bits, - STATE(710), 1, - sym__label_reference, - STATE(711), 1, - sym__node_reference, - STATE(865), 6, - sym_reference, - sym_incbin, - sym__property_value, - sym_integer_cells, - sym_string_literal, - sym_byte_string_literal, - [23546] = 3, + anon_sym_SLASHdelete_DASHnode_SLASH, + anon_sym_SLASHdelete_DASHproperty_SLASH, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_undef_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + [23536] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(805), 8, + ACTIONS(993), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -25016,7 +25067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(803), 9, + ACTIONS(995), 9, anon_sym_AMP_LBRACE, anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -25026,10 +25077,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [23571] = 3, + [23561] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(805), 8, + ACTIONS(989), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -25038,7 +25089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(803), 9, + ACTIONS(991), 9, anon_sym_AMP_LBRACE, anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -25048,10 +25099,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [23596] = 3, + [23586] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(817), 8, + ACTIONS(969), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -25060,148 +25111,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(815), 9, + ACTIONS(971), 9, anon_sym_AMP_LBRACE, - anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [23621] = 13, + [23611] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17), 1, + ACTIONS(973), 8, + sym__label_name, + sym__node_path, + sym__node_or_property, + sym__property_with_hash, + sym__property_starts_with_number, anon_sym_AMP, - ACTIONS(19), 1, + anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, + aux_sym_preproc_if_token1, + ACTIONS(975), 9, anon_sym_AMP_LBRACE, - ACTIONS(1119), 1, - anon_sym_SLASHbits_SLASH, - ACTIONS(1121), 1, - anon_sym_SLASHincbin_SLASH, - ACTIONS(1123), 1, - anon_sym_LT, - ACTIONS(1125), 1, - anon_sym_DQUOTE, - ACTIONS(1127), 1, - anon_sym_LBRACK, - ACTIONS(1141), 1, - anon_sym_SEMI, - STATE(639), 1, - sym__bits, - STATE(710), 1, - sym__label_reference, - STATE(711), 1, - sym__node_reference, - STATE(872), 6, - sym_reference, - sym_incbin, - sym__property_value, - sym_integer_cells, - sym_string_literal, - sym_byte_string_literal, - [23666] = 13, + anon_sym_SLASHdelete_DASHnode_SLASH, + anon_sym_SLASHdelete_DASHproperty_SLASH, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_undef_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + [23636] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17), 1, + ACTIONS(977), 8, + sym__label_name, + sym__node_path, + sym__node_or_property, + sym__property_with_hash, + sym__property_starts_with_number, anon_sym_AMP, - ACTIONS(19), 1, + anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, + aux_sym_preproc_if_token1, + ACTIONS(979), 9, anon_sym_AMP_LBRACE, - ACTIONS(1119), 1, - anon_sym_SLASHbits_SLASH, - ACTIONS(1121), 1, - anon_sym_SLASHincbin_SLASH, - ACTIONS(1123), 1, - anon_sym_LT, - ACTIONS(1125), 1, - anon_sym_DQUOTE, - ACTIONS(1127), 1, - anon_sym_LBRACK, - ACTIONS(1143), 1, - anon_sym_SEMI, - STATE(640), 1, - sym__bits, - STATE(710), 1, - sym__label_reference, - STATE(711), 1, - sym__node_reference, - STATE(877), 6, - sym_reference, - sym_incbin, - sym__property_value, - sym_integer_cells, - sym_string_literal, - sym_byte_string_literal, - [23711] = 13, + anon_sym_SLASHdelete_DASHnode_SLASH, + anon_sym_SLASHdelete_DASHproperty_SLASH, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_undef_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + [23661] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17), 1, + ACTIONS(993), 8, + sym__label_name, + sym__node_path, + sym__node_or_property, + sym__property_with_hash, + sym__property_starts_with_number, anon_sym_AMP, - ACTIONS(19), 1, + anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, + aux_sym_preproc_if_token1, + ACTIONS(995), 9, anon_sym_AMP_LBRACE, - ACTIONS(1119), 1, - anon_sym_SLASHbits_SLASH, - ACTIONS(1121), 1, - anon_sym_SLASHincbin_SLASH, - ACTIONS(1123), 1, - anon_sym_LT, - ACTIONS(1125), 1, - anon_sym_DQUOTE, - ACTIONS(1127), 1, - anon_sym_LBRACK, - ACTIONS(1145), 1, - anon_sym_SEMI, - STATE(627), 1, - sym__bits, - STATE(710), 1, - sym__label_reference, - STATE(711), 1, - sym__node_reference, - STATE(879), 6, - sym_reference, - sym_incbin, - sym__property_value, - sym_integer_cells, - sym_string_literal, - sym_byte_string_literal, - [23756] = 13, + anon_sym_RBRACE, + anon_sym_SLASHdelete_DASHnode_SLASH, + anon_sym_SLASHdelete_DASHproperty_SLASH, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_undef_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + [23686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17), 1, + ACTIONS(905), 8, + sym__label_name, + sym__node_path, + sym__node_or_property, + sym__property_with_hash, + sym__property_starts_with_number, anon_sym_AMP, - ACTIONS(19), 1, + anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, + aux_sym_preproc_if_token1, + ACTIONS(907), 9, anon_sym_AMP_LBRACE, - ACTIONS(1119), 1, - anon_sym_SLASHbits_SLASH, - ACTIONS(1121), 1, - anon_sym_SLASHincbin_SLASH, - ACTIONS(1123), 1, - anon_sym_LT, - ACTIONS(1125), 1, - anon_sym_DQUOTE, - ACTIONS(1127), 1, - anon_sym_LBRACK, - ACTIONS(1147), 1, - anon_sym_SEMI, - STATE(628), 1, - sym__bits, - STATE(710), 1, - sym__label_reference, - STATE(711), 1, - sym__node_reference, - STATE(881), 6, - sym_reference, - sym_incbin, - sym__property_value, - sym_integer_cells, - sym_string_literal, - sym_byte_string_literal, - [23801] = 3, + anon_sym_SLASHdelete_DASHnode_SLASH, + anon_sym_SLASHdelete_DASHproperty_SLASH, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_undef_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + [23711] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(989), 8, + sym__label_name, + sym__node_path, + sym__node_or_property, + sym__property_with_hash, + sym__property_starts_with_number, + anon_sym_AMP, + anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, + aux_sym_preproc_if_token1, + ACTIONS(991), 9, + anon_sym_AMP_LBRACE, + anon_sym_SLASHdelete_DASHnode_SLASH, + anon_sym_SLASHdelete_DASHproperty_SLASH, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_undef_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + [23736] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(963), 8, + ACTIONS(993), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -25210,52 +25243,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(965), 9, + ACTIONS(995), 9, anon_sym_AMP_LBRACE, - anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [23826] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17), 1, - anon_sym_AMP, - ACTIONS(19), 1, - anon_sym_AMP_LBRACE, - ACTIONS(1119), 1, - anon_sym_SLASHbits_SLASH, - ACTIONS(1121), 1, - anon_sym_SLASHincbin_SLASH, - ACTIONS(1123), 1, - anon_sym_LT, - ACTIONS(1125), 1, - anon_sym_DQUOTE, - ACTIONS(1127), 1, - anon_sym_LBRACK, - ACTIONS(1149), 1, - anon_sym_SEMI, - STATE(631), 1, - sym__bits, - STATE(710), 1, - sym__label_reference, - STATE(711), 1, - sym__node_reference, - STATE(787), 6, - sym_reference, - sym_incbin, - sym__property_value, - sym_integer_cells, - sym_string_literal, - sym_byte_string_literal, - [23871] = 3, + [23761] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(967), 8, + ACTIONS(989), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -25264,20 +25265,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(969), 9, + ACTIONS(991), 9, anon_sym_AMP_LBRACE, - anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [23896] = 3, + [23786] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(963), 8, + ACTIONS(993), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -25286,20 +25287,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(965), 9, + ACTIONS(995), 9, anon_sym_AMP_LBRACE, - anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [23921] = 3, + [23811] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(967), 8, + ACTIONS(989), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -25308,148 +25309,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(969), 9, + ACTIONS(991), 9, anon_sym_AMP_LBRACE, - anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [23946] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17), 1, - anon_sym_AMP, - ACTIONS(19), 1, - anon_sym_AMP_LBRACE, - ACTIONS(1119), 1, - anon_sym_SLASHbits_SLASH, - ACTIONS(1121), 1, - anon_sym_SLASHincbin_SLASH, - ACTIONS(1123), 1, - anon_sym_LT, - ACTIONS(1125), 1, - anon_sym_DQUOTE, - ACTIONS(1127), 1, - anon_sym_LBRACK, - ACTIONS(1151), 1, - anon_sym_SEMI, - STATE(619), 1, - sym__bits, - STATE(710), 1, - sym__label_reference, - STATE(711), 1, - sym__node_reference, - STATE(792), 6, - sym_reference, - sym_incbin, - sym__property_value, - sym_integer_cells, - sym_string_literal, - sym_byte_string_literal, - [23991] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17), 1, - anon_sym_AMP, - ACTIONS(19), 1, - anon_sym_AMP_LBRACE, - ACTIONS(1119), 1, - anon_sym_SLASHbits_SLASH, - ACTIONS(1121), 1, - anon_sym_SLASHincbin_SLASH, - ACTIONS(1123), 1, - anon_sym_LT, - ACTIONS(1125), 1, - anon_sym_DQUOTE, - ACTIONS(1127), 1, - anon_sym_LBRACK, - ACTIONS(1153), 1, - anon_sym_SEMI, - STATE(620), 1, - sym__bits, - STATE(710), 1, - sym__label_reference, - STATE(711), 1, - sym__node_reference, - STATE(793), 6, - sym_reference, - sym_incbin, - sym__property_value, - sym_integer_cells, - sym_string_literal, - sym_byte_string_literal, - [24036] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17), 1, - anon_sym_AMP, - ACTIONS(19), 1, - anon_sym_AMP_LBRACE, - ACTIONS(1119), 1, - anon_sym_SLASHbits_SLASH, - ACTIONS(1121), 1, - anon_sym_SLASHincbin_SLASH, - ACTIONS(1123), 1, - anon_sym_LT, - ACTIONS(1125), 1, - anon_sym_DQUOTE, - ACTIONS(1127), 1, - anon_sym_LBRACK, - ACTIONS(1155), 1, - anon_sym_SEMI, - STATE(623), 1, - sym__bits, - STATE(710), 1, - sym__label_reference, - STATE(711), 1, - sym__node_reference, - STATE(794), 6, - sym_reference, - sym_incbin, - sym__property_value, - sym_integer_cells, - sym_string_literal, - sym_byte_string_literal, - [24081] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17), 1, - anon_sym_AMP, - ACTIONS(19), 1, - anon_sym_AMP_LBRACE, - ACTIONS(1119), 1, - anon_sym_SLASHbits_SLASH, - ACTIONS(1121), 1, - anon_sym_SLASHincbin_SLASH, - ACTIONS(1123), 1, - anon_sym_LT, - ACTIONS(1125), 1, - anon_sym_DQUOTE, - ACTIONS(1127), 1, - anon_sym_LBRACK, - ACTIONS(1157), 1, - anon_sym_SEMI, - STATE(624), 1, - sym__bits, - STATE(710), 1, - sym__label_reference, - STATE(711), 1, - sym__node_reference, - STATE(795), 6, - sym_reference, - sym_incbin, - sym__property_value, - sym_integer_cells, - sym_string_literal, - sym_byte_string_literal, - [24126] = 3, + [23836] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1029), 8, + ACTIONS(993), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -25458,7 +25331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(1031), 9, + ACTIONS(995), 9, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -25468,42 +25341,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [24151] = 13, + [23861] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17), 1, + ACTIONS(989), 8, + sym__label_name, + sym__node_path, + sym__node_or_property, + sym__property_with_hash, + sym__property_starts_with_number, anon_sym_AMP, - ACTIONS(19), 1, + anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, + aux_sym_preproc_if_token1, + ACTIONS(991), 9, anon_sym_AMP_LBRACE, - ACTIONS(1119), 1, - anon_sym_SLASHbits_SLASH, - ACTIONS(1121), 1, - anon_sym_SLASHincbin_SLASH, - ACTIONS(1123), 1, - anon_sym_LT, - ACTIONS(1125), 1, - anon_sym_DQUOTE, - ACTIONS(1127), 1, - anon_sym_LBRACK, - ACTIONS(1159), 1, - anon_sym_SEMI, - STATE(625), 1, - sym__bits, - STATE(710), 1, - sym__label_reference, - STATE(711), 1, - sym__node_reference, - STATE(842), 6, - sym_reference, - sym_incbin, - sym__property_value, - sym_integer_cells, - sym_string_literal, - sym_byte_string_literal, - [24196] = 3, + anon_sym_SLASHdelete_DASHnode_SLASH, + anon_sym_SLASHdelete_DASHproperty_SLASH, + aux_sym_preproc_include_token1, + aux_sym_preproc_def_token1, + aux_sym_preproc_undef_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + [23886] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1029), 8, + ACTIONS(993), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -25512,7 +25375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(1031), 9, + ACTIONS(995), 9, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -25522,10 +25385,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [24221] = 3, + [23911] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1001), 8, + ACTIONS(989), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -25534,20 +25397,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(1003), 9, + ACTIONS(991), 9, anon_sym_AMP_LBRACE, + anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [24246] = 3, + [23936] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1005), 8, + ACTIONS(997), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -25556,7 +25419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(1007), 9, + ACTIONS(999), 9, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -25566,10 +25429,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [24271] = 3, + [23961] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1005), 8, + ACTIONS(1001), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -25578,7 +25441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(1007), 9, + ACTIONS(1003), 9, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -25588,7 +25451,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [24296] = 3, + [23986] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1005), 8, @@ -25610,10 +25473,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [24321] = 3, + [24011] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1005), 8, + ACTIONS(1009), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -25622,7 +25485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(1007), 9, + ACTIONS(1011), 9, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -25632,10 +25495,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [24346] = 3, + [24036] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(737), 8, + ACTIONS(1005), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -25644,7 +25507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(735), 9, + ACTIONS(1007), 9, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -25654,10 +25517,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [24371] = 3, + [24061] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(737), 8, + ACTIONS(1009), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -25666,7 +25529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(735), 9, + ACTIONS(1011), 9, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -25676,10 +25539,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [24396] = 3, + [24086] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(833), 8, + ACTIONS(1005), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -25688,20 +25551,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(831), 9, + ACTIONS(1007), 9, anon_sym_AMP_LBRACE, - anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [24421] = 3, + [24111] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(833), 8, + ACTIONS(1009), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -25710,20 +25573,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(831), 9, + ACTIONS(1011), 9, anon_sym_AMP_LBRACE, - anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [24446] = 3, + [24136] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(833), 8, + ACTIONS(1005), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -25732,20 +25595,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(831), 9, + ACTIONS(1007), 9, anon_sym_AMP_LBRACE, - anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [24471] = 3, + [24161] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(909), 8, + ACTIONS(1009), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -25754,7 +25617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(911), 9, + ACTIONS(1011), 9, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -25764,10 +25627,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [24496] = 3, + [24186] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(913), 8, + ACTIONS(993), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -25776,20 +25639,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(915), 9, + ACTIONS(995), 9, anon_sym_AMP_LBRACE, + anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [24521] = 3, + [24211] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1009), 8, + ACTIONS(989), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -25798,7 +25661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(1011), 9, + ACTIONS(991), 9, anon_sym_AMP_LBRACE, anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -25808,7 +25671,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [24546] = 3, + [24236] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1013), 8, @@ -25822,18 +25685,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(1015), 9, anon_sym_AMP_LBRACE, - anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [24571] = 3, + [24261] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1017), 8, + ACTIONS(1013), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -25842,20 +25705,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(1019), 9, + ACTIONS(1015), 9, anon_sym_AMP_LBRACE, - anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [24596] = 3, + [24286] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 8, + ACTIONS(1013), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -25864,7 +25727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(919), 9, + ACTIONS(1015), 9, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -25874,10 +25737,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [24621] = 3, + [24311] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(989), 8, + ACTIONS(1013), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -25886,20 +25749,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(991), 9, + ACTIONS(1015), 9, anon_sym_AMP_LBRACE, - anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [24646] = 3, + [24336] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(971), 8, + ACTIONS(741), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -25908,20 +25771,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(973), 9, + ACTIONS(739), 9, anon_sym_AMP_LBRACE, - anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [24671] = 3, + [24361] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(971), 8, + ACTIONS(733), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -25930,20 +25793,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(973), 9, + ACTIONS(731), 9, anon_sym_AMP_LBRACE, - anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [24696] = 3, + [24386] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(971), 8, + ACTIONS(749), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -25952,20 +25815,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(973), 9, + ACTIONS(747), 9, anon_sym_AMP_LBRACE, - anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [24721] = 3, + [24411] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(841), 8, + ACTIONS(789), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -25974,20 +25837,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(839), 9, + ACTIONS(787), 9, anon_sym_AMP_LBRACE, - anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [24746] = 3, + [24436] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(841), 8, + ACTIONS(817), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -25996,20 +25859,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(839), 9, + ACTIONS(815), 9, anon_sym_AMP_LBRACE, - anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [24771] = 3, + [24461] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(841), 8, + ACTIONS(829), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -26018,20 +25881,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(839), 9, + ACTIONS(827), 9, anon_sym_AMP_LBRACE, - anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [24796] = 3, + [24486] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(971), 8, + ACTIONS(761), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -26040,20 +25903,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(973), 9, + ACTIONS(759), 9, anon_sym_AMP_LBRACE, - anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [24821] = 3, + [24511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(905), 8, + ACTIONS(773), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -26062,7 +25925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(907), 9, + ACTIONS(771), 9, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -26072,10 +25935,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [24846] = 3, + [24536] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(921), 8, + ACTIONS(777), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -26084,7 +25947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(923), 9, + ACTIONS(775), 9, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -26094,10 +25957,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [24871] = 3, + [24561] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1021), 8, + ACTIONS(757), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -26106,20 +25969,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(1023), 9, + ACTIONS(755), 9, anon_sym_AMP_LBRACE, - anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [24896] = 3, + [24586] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1025), 8, + ACTIONS(765), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -26128,20 +25991,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(1027), 9, + ACTIONS(763), 9, anon_sym_AMP_LBRACE, - anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [24921] = 3, + [24611] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1029), 8, + ACTIONS(769), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -26150,20 +26013,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(1031), 9, + ACTIONS(767), 9, anon_sym_AMP_LBRACE, - anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [24946] = 3, + [24636] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(757), 8, + ACTIONS(801), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -26172,20 +26035,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(755), 9, + ACTIONS(799), 9, anon_sym_AMP_LBRACE, - anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [24971] = 3, + [24661] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1029), 8, + ACTIONS(801), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -26194,20 +26057,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(1031), 9, + ACTIONS(799), 9, anon_sym_AMP_LBRACE, - anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [24996] = 3, + [24686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1029), 8, + ACTIONS(801), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -26216,20 +26079,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(1031), 9, + ACTIONS(799), 9, anon_sym_AMP_LBRACE, - anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [25021] = 3, + [24711] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(781), 8, + ACTIONS(813), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -26238,20 +26101,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(779), 9, + ACTIONS(811), 9, anon_sym_AMP_LBRACE, - anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [25046] = 3, + [24736] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(905), 8, + ACTIONS(837), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -26260,7 +26123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(907), 9, + ACTIONS(835), 9, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -26270,10 +26133,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [25071] = 3, + [24761] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(785), 8, + ACTIONS(837), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -26282,20 +26145,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(783), 9, + ACTIONS(835), 9, anon_sym_AMP_LBRACE, - anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [25096] = 3, + [24786] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(845), 8, + ACTIONS(837), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -26304,20 +26167,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(843), 9, + ACTIONS(835), 9, anon_sym_AMP_LBRACE, - anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [25121] = 3, + [24811] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(813), 8, + ACTIONS(837), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -26326,20 +26189,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(811), 9, + ACTIONS(835), 9, anon_sym_AMP_LBRACE, - anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [25146] = 3, + [24836] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(821), 8, + ACTIONS(841), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -26348,20 +26211,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(819), 9, + ACTIONS(839), 9, anon_sym_AMP_LBRACE, - anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [25171] = 3, + [24861] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(921), 8, + ACTIONS(853), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -26370,7 +26233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(923), 9, + ACTIONS(851), 9, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -26380,10 +26243,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [25196] = 3, + [24886] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(905), 8, + ACTIONS(853), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -26392,7 +26255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(907), 9, + ACTIONS(851), 9, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -26402,10 +26265,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [25221] = 3, + [24911] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(921), 8, + ACTIONS(853), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -26414,7 +26277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(923), 9, + ACTIONS(851), 9, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -26424,10 +26287,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [25246] = 3, + [24936] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(905), 8, + ACTIONS(809), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -26436,7 +26299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(907), 9, + ACTIONS(807), 9, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -26446,10 +26309,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [25271] = 3, + [24961] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(921), 8, + ACTIONS(809), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -26458,7 +26321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(923), 9, + ACTIONS(807), 9, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -26468,10 +26331,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [25296] = 3, + [24986] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1005), 8, + ACTIONS(809), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -26480,20 +26343,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(1007), 9, + ACTIONS(807), 9, anon_sym_AMP_LBRACE, - anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [25321] = 3, + [25011] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(989), 8, + ACTIONS(993), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -26502,20 +26365,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(991), 9, + ACTIONS(995), 9, anon_sym_AMP_LBRACE, + anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [25346] = 3, + [25036] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1005), 8, + ACTIONS(997), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -26524,7 +26387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(1007), 9, + ACTIONS(999), 9, anon_sym_AMP_LBRACE, anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -26534,10 +26397,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [25371] = 3, + [25061] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1029), 8, + ACTIONS(1001), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -26546,7 +26409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(1031), 9, + ACTIONS(1003), 9, anon_sym_AMP_LBRACE, anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -26556,10 +26419,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [25396] = 3, + [25086] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(993), 8, + ACTIONS(17), 1, + anon_sym_AMP, + ACTIONS(19), 1, + anon_sym_AMP_LBRACE, + ACTIONS(1119), 1, + anon_sym_SLASHbits_SLASH, + ACTIONS(1121), 1, + anon_sym_SLASHincbin_SLASH, + ACTIONS(1123), 1, + anon_sym_LT, + ACTIONS(1125), 1, + anon_sym_DQUOTE, + ACTIONS(1127), 1, + anon_sym_LBRACK, + ACTIONS(1135), 1, + anon_sym_SEMI, + STATE(621), 1, + sym__bits, + STATE(707), 1, + sym__label_reference, + STATE(711), 1, + sym__node_reference, + STATE(853), 6, + sym_reference, + sym_incbin, + sym__property_value, + sym_integer_cells, + sym_string_literal, + sym_byte_string_literal, + [25131] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1005), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -26568,7 +26463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(995), 9, + ACTIONS(1007), 9, anon_sym_AMP_LBRACE, anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -26578,10 +26473,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [25421] = 3, + [25156] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(955), 8, + ACTIONS(1009), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -26590,20 +26485,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(957), 9, + ACTIONS(1011), 9, anon_sym_AMP_LBRACE, + anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [25446] = 3, + [25181] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(753), 8, + ACTIONS(1005), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -26612,7 +26507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(751), 9, + ACTIONS(1007), 9, anon_sym_AMP_LBRACE, anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -26622,32 +26517,138 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [25471] = 3, + [25206] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(997), 8, - sym__label_name, - sym__node_path, - sym__node_or_property, - sym__property_with_hash, - sym__property_starts_with_number, + ACTIONS(17), 1, + anon_sym_AMP, + ACTIONS(19), 1, + anon_sym_AMP_LBRACE, + ACTIONS(1119), 1, + anon_sym_SLASHbits_SLASH, + ACTIONS(1121), 1, + anon_sym_SLASHincbin_SLASH, + ACTIONS(1123), 1, + anon_sym_LT, + ACTIONS(1125), 1, + anon_sym_DQUOTE, + ACTIONS(1127), 1, + anon_sym_LBRACK, + ACTIONS(1137), 1, + anon_sym_SEMI, + STATE(622), 1, + sym__bits, + STATE(707), 1, + sym__label_reference, + STATE(711), 1, + sym__node_reference, + STATE(806), 6, + sym_reference, + sym_incbin, + sym__property_value, + sym_integer_cells, + sym_string_literal, + sym_byte_string_literal, + [25251] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17), 1, + anon_sym_AMP, + ACTIONS(19), 1, + anon_sym_AMP_LBRACE, + ACTIONS(1119), 1, + anon_sym_SLASHbits_SLASH, + ACTIONS(1121), 1, + anon_sym_SLASHincbin_SLASH, + ACTIONS(1123), 1, + anon_sym_LT, + ACTIONS(1125), 1, + anon_sym_DQUOTE, + ACTIONS(1127), 1, + anon_sym_LBRACK, + ACTIONS(1139), 1, + anon_sym_SEMI, + STATE(623), 1, + sym__bits, + STATE(707), 1, + sym__label_reference, + STATE(711), 1, + sym__node_reference, + STATE(809), 6, + sym_reference, + sym_incbin, + sym__property_value, + sym_integer_cells, + sym_string_literal, + sym_byte_string_literal, + [25296] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17), 1, + anon_sym_AMP, + ACTIONS(19), 1, + anon_sym_AMP_LBRACE, + ACTIONS(1119), 1, + anon_sym_SLASHbits_SLASH, + ACTIONS(1121), 1, + anon_sym_SLASHincbin_SLASH, + ACTIONS(1123), 1, + anon_sym_LT, + ACTIONS(1125), 1, + anon_sym_DQUOTE, + ACTIONS(1127), 1, + anon_sym_LBRACK, + ACTIONS(1141), 1, + anon_sym_SEMI, + STATE(624), 1, + sym__bits, + STATE(707), 1, + sym__label_reference, + STATE(711), 1, + sym__node_reference, + STATE(814), 6, + sym_reference, + sym_incbin, + sym__property_value, + sym_integer_cells, + sym_string_literal, + sym_byte_string_literal, + [25341] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17), 1, anon_sym_AMP, - anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, - aux_sym_preproc_if_token1, - ACTIONS(999), 9, + ACTIONS(19), 1, anon_sym_AMP_LBRACE, - anon_sym_RBRACE, - anon_sym_SLASHdelete_DASHnode_SLASH, - anon_sym_SLASHdelete_DASHproperty_SLASH, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_undef_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - [25496] = 3, + ACTIONS(1119), 1, + anon_sym_SLASHbits_SLASH, + ACTIONS(1121), 1, + anon_sym_SLASHincbin_SLASH, + ACTIONS(1123), 1, + anon_sym_LT, + ACTIONS(1125), 1, + anon_sym_DQUOTE, + ACTIONS(1127), 1, + anon_sym_LBRACK, + ACTIONS(1143), 1, + anon_sym_SEMI, + STATE(625), 1, + sym__bits, + STATE(707), 1, + sym__label_reference, + STATE(711), 1, + sym__node_reference, + STATE(817), 6, + sym_reference, + sym_incbin, + sym__property_value, + sym_integer_cells, + sym_string_literal, + sym_byte_string_literal, + [25386] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(765), 8, + ACTIONS(1009), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -26656,7 +26657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(763), 9, + ACTIONS(1011), 9, anon_sym_AMP_LBRACE, anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -26666,32 +26667,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [25521] = 3, + [25411] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(959), 8, - sym__label_name, - sym__node_path, - sym__node_or_property, - sym__property_with_hash, - sym__property_starts_with_number, + ACTIONS(17), 1, anon_sym_AMP, - anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, - aux_sym_preproc_if_token1, - ACTIONS(961), 9, + ACTIONS(19), 1, anon_sym_AMP_LBRACE, - anon_sym_SLASHdelete_DASHnode_SLASH, - anon_sym_SLASHdelete_DASHproperty_SLASH, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_undef_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - [25546] = 3, + ACTIONS(1119), 1, + anon_sym_SLASHbits_SLASH, + ACTIONS(1121), 1, + anon_sym_SLASHincbin_SLASH, + ACTIONS(1123), 1, + anon_sym_LT, + ACTIONS(1125), 1, + anon_sym_DQUOTE, + ACTIONS(1127), 1, + anon_sym_LBRACK, + ACTIONS(1145), 1, + anon_sym_SEMI, + STATE(626), 1, + sym__bits, + STATE(707), 1, + sym__label_reference, + STATE(711), 1, + sym__node_reference, + STATE(854), 6, + sym_reference, + sym_incbin, + sym__property_value, + sym_integer_cells, + sym_string_literal, + sym_byte_string_literal, + [25456] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(963), 8, + ACTIONS(1005), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -26700,20 +26711,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(965), 9, + ACTIONS(1007), 9, anon_sym_AMP_LBRACE, + anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [25571] = 3, + [25481] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(967), 8, + ACTIONS(1009), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -26722,108 +26733,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(969), 9, + ACTIONS(1011), 9, anon_sym_AMP_LBRACE, + anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [25596] = 3, + [25506] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(963), 8, - sym__label_name, - sym__node_path, - sym__node_or_property, - sym__property_with_hash, - sym__property_starts_with_number, + ACTIONS(17), 1, anon_sym_AMP, - anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, - aux_sym_preproc_if_token1, - ACTIONS(965), 9, + ACTIONS(19), 1, anon_sym_AMP_LBRACE, - anon_sym_SLASHdelete_DASHnode_SLASH, - anon_sym_SLASHdelete_DASHproperty_SLASH, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_undef_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - [25621] = 3, + ACTIONS(1119), 1, + anon_sym_SLASHbits_SLASH, + ACTIONS(1121), 1, + anon_sym_SLASHincbin_SLASH, + ACTIONS(1123), 1, + anon_sym_LT, + ACTIONS(1125), 1, + anon_sym_DQUOTE, + ACTIONS(1127), 1, + anon_sym_LBRACK, + ACTIONS(1147), 1, + anon_sym_SEMI, + STATE(630), 1, + sym__bits, + STATE(707), 1, + sym__label_reference, + STATE(711), 1, + sym__node_reference, + STATE(870), 6, + sym_reference, + sym_incbin, + sym__property_value, + sym_integer_cells, + sym_string_literal, + sym_byte_string_literal, + [25551] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(967), 8, - sym__label_name, - sym__node_path, - sym__node_or_property, - sym__property_with_hash, - sym__property_starts_with_number, + ACTIONS(17), 1, anon_sym_AMP, - anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, - aux_sym_preproc_if_token1, - ACTIONS(969), 9, + ACTIONS(19), 1, anon_sym_AMP_LBRACE, - anon_sym_SLASHdelete_DASHnode_SLASH, - anon_sym_SLASHdelete_DASHproperty_SLASH, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_undef_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - [25646] = 3, + ACTIONS(1119), 1, + anon_sym_SLASHbits_SLASH, + ACTIONS(1121), 1, + anon_sym_SLASHincbin_SLASH, + ACTIONS(1123), 1, + anon_sym_LT, + ACTIONS(1125), 1, + anon_sym_DQUOTE, + ACTIONS(1127), 1, + anon_sym_LBRACK, + ACTIONS(1149), 1, + anon_sym_SEMI, + STATE(631), 1, + sym__bits, + STATE(707), 1, + sym__label_reference, + STATE(711), 1, + sym__node_reference, + STATE(873), 6, + sym_reference, + sym_incbin, + sym__property_value, + sym_integer_cells, + sym_string_literal, + sym_byte_string_literal, + [25596] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(963), 8, - sym__label_name, - sym__node_path, - sym__node_or_property, - sym__property_with_hash, - sym__property_starts_with_number, + ACTIONS(17), 1, anon_sym_AMP, - anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, - aux_sym_preproc_if_token1, - ACTIONS(965), 9, + ACTIONS(19), 1, anon_sym_AMP_LBRACE, - anon_sym_SLASHdelete_DASHnode_SLASH, - anon_sym_SLASHdelete_DASHproperty_SLASH, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_undef_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - [25671] = 3, + ACTIONS(1119), 1, + anon_sym_SLASHbits_SLASH, + ACTIONS(1121), 1, + anon_sym_SLASHincbin_SLASH, + ACTIONS(1123), 1, + anon_sym_LT, + ACTIONS(1125), 1, + anon_sym_DQUOTE, + ACTIONS(1127), 1, + anon_sym_LBRACK, + ACTIONS(1151), 1, + anon_sym_SEMI, + STATE(632), 1, + sym__bits, + STATE(707), 1, + sym__label_reference, + STATE(711), 1, + sym__node_reference, + STATE(779), 6, + sym_reference, + sym_incbin, + sym__property_value, + sym_integer_cells, + sym_string_literal, + sym_byte_string_literal, + [25641] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(967), 8, - sym__label_name, - sym__node_path, - sym__node_or_property, - sym__property_with_hash, - sym__property_starts_with_number, + ACTIONS(17), 1, anon_sym_AMP, - anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, - aux_sym_preproc_if_token1, - ACTIONS(969), 9, + ACTIONS(19), 1, anon_sym_AMP_LBRACE, - anon_sym_SLASHdelete_DASHnode_SLASH, - anon_sym_SLASHdelete_DASHproperty_SLASH, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_undef_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - [25696] = 3, + ACTIONS(1119), 1, + anon_sym_SLASHbits_SLASH, + ACTIONS(1121), 1, + anon_sym_SLASHincbin_SLASH, + ACTIONS(1123), 1, + anon_sym_LT, + ACTIONS(1125), 1, + anon_sym_DQUOTE, + ACTIONS(1127), 1, + anon_sym_LBRACK, + ACTIONS(1153), 1, + anon_sym_SEMI, + STATE(633), 1, + sym__bits, + STATE(707), 1, + sym__label_reference, + STATE(711), 1, + sym__node_reference, + STATE(881), 6, + sym_reference, + sym_incbin, + sym__property_value, + sym_integer_cells, + sym_string_literal, + sym_byte_string_literal, + [25686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(963), 8, + ACTIONS(1005), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -26832,42 +26883,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(965), 9, + ACTIONS(1007), 9, anon_sym_AMP_LBRACE, + anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [25721] = 3, + [25711] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(967), 8, - sym__label_name, - sym__node_path, - sym__node_or_property, - sym__property_with_hash, - sym__property_starts_with_number, + ACTIONS(17), 1, anon_sym_AMP, - anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, - aux_sym_preproc_if_token1, - ACTIONS(969), 9, + ACTIONS(19), 1, anon_sym_AMP_LBRACE, - anon_sym_SLASHdelete_DASHnode_SLASH, - anon_sym_SLASHdelete_DASHproperty_SLASH, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_undef_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - [25746] = 3, + ACTIONS(1119), 1, + anon_sym_SLASHbits_SLASH, + ACTIONS(1121), 1, + anon_sym_SLASHincbin_SLASH, + ACTIONS(1123), 1, + anon_sym_LT, + ACTIONS(1125), 1, + anon_sym_DQUOTE, + ACTIONS(1127), 1, + anon_sym_LBRACK, + ACTIONS(1155), 1, + anon_sym_SEMI, + STATE(634), 1, + sym__bits, + STATE(707), 1, + sym__label_reference, + STATE(711), 1, + sym__node_reference, + STATE(815), 6, + sym_reference, + sym_incbin, + sym__property_value, + sym_integer_cells, + sym_string_literal, + sym_byte_string_literal, + [25756] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(769), 8, + ACTIONS(1009), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -26876,7 +26937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(767), 9, + ACTIONS(1011), 9, anon_sym_AMP_LBRACE, anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -26886,51 +26947,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [25771] = 3, + [25781] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(983), 8, - sym__label_name, - sym__node_path, - sym__node_or_property, - sym__property_with_hash, - sym__property_starts_with_number, + ACTIONS(17), 1, anon_sym_AMP, - anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, - aux_sym_preproc_if_token1, - ACTIONS(985), 9, + ACTIONS(19), 1, anon_sym_AMP_LBRACE, - anon_sym_RBRACE, - anon_sym_SLASHdelete_DASHnode_SLASH, - anon_sym_SLASHdelete_DASHproperty_SLASH, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_undef_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - [25796] = 3, + ACTIONS(1119), 1, + anon_sym_SLASHbits_SLASH, + ACTIONS(1121), 1, + anon_sym_SLASHincbin_SLASH, + ACTIONS(1123), 1, + anon_sym_LT, + ACTIONS(1125), 1, + anon_sym_DQUOTE, + ACTIONS(1127), 1, + anon_sym_LBRACK, + ACTIONS(1157), 1, + anon_sym_SEMI, + STATE(637), 1, + sym__bits, + STATE(707), 1, + sym__label_reference, + STATE(711), 1, + sym__node_reference, + STATE(849), 6, + sym_reference, + sym_incbin, + sym__property_value, + sym_integer_cells, + sym_string_literal, + sym_byte_string_literal, + [25826] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1001), 8, - sym__label_name, - sym__node_path, - sym__node_or_property, - sym__property_with_hash, - sym__property_starts_with_number, + ACTIONS(17), 1, anon_sym_AMP, - anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, - aux_sym_preproc_if_token1, - ACTIONS(1003), 9, + ACTIONS(19), 1, anon_sym_AMP_LBRACE, - anon_sym_RBRACE, - anon_sym_SLASHdelete_DASHnode_SLASH, - anon_sym_SLASHdelete_DASHproperty_SLASH, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_undef_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - [25821] = 13, + ACTIONS(1119), 1, + anon_sym_SLASHbits_SLASH, + ACTIONS(1121), 1, + anon_sym_SLASHincbin_SLASH, + ACTIONS(1123), 1, + anon_sym_LT, + ACTIONS(1125), 1, + anon_sym_DQUOTE, + ACTIONS(1127), 1, + anon_sym_LBRACK, + ACTIONS(1159), 1, + anon_sym_SEMI, + STATE(638), 1, + sym__bits, + STATE(707), 1, + sym__label_reference, + STATE(711), 1, + sym__node_reference, + STATE(857), 6, + sym_reference, + sym_incbin, + sym__property_value, + sym_integer_cells, + sym_string_literal, + sym_byte_string_literal, + [25871] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, @@ -26949,20 +27030,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1161), 1, anon_sym_SEMI, - STATE(634), 1, + STATE(639), 1, sym__bits, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(811), 6, + STATE(869), 6, sym_reference, sym_incbin, sym__property_value, sym_integer_cells, sym_string_literal, sym_byte_string_literal, - [25866] = 13, + [25916] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, @@ -26981,45 +27062,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1163), 1, anon_sym_SEMI, - STATE(626), 1, + STATE(640), 1, sym__bits, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(797), 6, + STATE(872), 6, sym_reference, sym_incbin, sym__property_value, sym_integer_cells, sym_string_literal, sym_byte_string_literal, - [25911] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(971), 8, - sym__label_name, - sym__node_path, - sym__node_or_property, - sym__property_with_hash, - sym__property_starts_with_number, - anon_sym_AMP, - anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, - aux_sym_preproc_if_token1, - ACTIONS(973), 9, - anon_sym_AMP_LBRACE, - anon_sym_SLASHdelete_DASHnode_SLASH, - anon_sym_SLASHdelete_DASHproperty_SLASH, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_undef_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - [25936] = 3, + [25961] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(971), 8, + ACTIONS(1023), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -27028,42 +27087,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(973), 9, + ACTIONS(1025), 9, anon_sym_AMP_LBRACE, + anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [25961] = 3, + [25986] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(971), 8, - sym__label_name, - sym__node_path, - sym__node_or_property, - sym__property_with_hash, - sym__property_starts_with_number, + ACTIONS(17), 1, anon_sym_AMP, - anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, - aux_sym_preproc_if_token1, - ACTIONS(973), 9, + ACTIONS(19), 1, anon_sym_AMP_LBRACE, - anon_sym_SLASHdelete_DASHnode_SLASH, - anon_sym_SLASHdelete_DASHproperty_SLASH, - aux_sym_preproc_include_token1, - aux_sym_preproc_def_token1, - aux_sym_preproc_undef_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - [25986] = 3, + ACTIONS(1119), 1, + anon_sym_SLASHbits_SLASH, + ACTIONS(1121), 1, + anon_sym_SLASHincbin_SLASH, + ACTIONS(1123), 1, + anon_sym_LT, + ACTIONS(1125), 1, + anon_sym_DQUOTE, + ACTIONS(1127), 1, + anon_sym_LBRACK, + ACTIONS(1165), 1, + anon_sym_SEMI, + STATE(627), 1, + sym__bits, + STATE(707), 1, + sym__label_reference, + STATE(711), 1, + sym__node_reference, + STATE(805), 6, + sym_reference, + sym_incbin, + sym__property_value, + sym_integer_cells, + sym_string_literal, + sym_byte_string_literal, + [26031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(971), 8, + ACTIONS(1013), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -27072,20 +27141,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(973), 9, + ACTIONS(1015), 9, anon_sym_AMP_LBRACE, + anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [26011] = 3, + [26056] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(757), 8, + ACTIONS(1013), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -27094,20 +27163,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(755), 9, + ACTIONS(1015), 9, anon_sym_AMP_LBRACE, + anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [26036] = 3, + [26081] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(781), 8, + ACTIONS(1013), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -27116,20 +27185,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(779), 9, + ACTIONS(1015), 9, anon_sym_AMP_LBRACE, + anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [26061] = 3, + [26106] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(785), 8, + ACTIONS(1013), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -27138,20 +27207,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(783), 9, + ACTIONS(1015), 9, anon_sym_AMP_LBRACE, + anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [26086] = 3, + [26131] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(845), 8, + ACTIONS(741), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -27160,20 +27229,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(843), 9, + ACTIONS(739), 9, anon_sym_AMP_LBRACE, + anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [26111] = 3, + [26156] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(813), 8, + ACTIONS(733), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -27182,20 +27251,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(811), 9, + ACTIONS(731), 9, anon_sym_AMP_LBRACE, + anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [26136] = 3, + [26181] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(821), 8, + ACTIONS(749), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -27204,20 +27273,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(819), 9, + ACTIONS(747), 9, anon_sym_AMP_LBRACE, + anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [26161] = 3, + [26206] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(753), 8, + ACTIONS(789), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -27226,20 +27295,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(751), 9, + ACTIONS(787), 9, anon_sym_AMP_LBRACE, + anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [26186] = 3, + [26231] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(765), 8, + ACTIONS(817), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -27248,20 +27317,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(763), 9, + ACTIONS(815), 9, anon_sym_AMP_LBRACE, + anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [26211] = 3, + [26256] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(769), 8, + ACTIONS(829), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -27270,20 +27339,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(767), 9, + ACTIONS(827), 9, anon_sym_AMP_LBRACE, + anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [26236] = 3, + [26281] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1005), 8, + ACTIONS(761), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -27292,7 +27361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(1007), 9, + ACTIONS(759), 9, anon_sym_AMP_LBRACE, anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -27302,42 +27371,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [26261] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17), 1, - anon_sym_AMP, - ACTIONS(19), 1, - anon_sym_AMP_LBRACE, - ACTIONS(1119), 1, - anon_sym_SLASHbits_SLASH, - ACTIONS(1121), 1, - anon_sym_SLASHincbin_SLASH, - ACTIONS(1123), 1, - anon_sym_LT, - ACTIONS(1125), 1, - anon_sym_DQUOTE, - ACTIONS(1127), 1, - anon_sym_LBRACK, - ACTIONS(1165), 1, - anon_sym_SEMI, - STATE(621), 1, - sym__bits, - STATE(710), 1, - sym__label_reference, - STATE(711), 1, - sym__node_reference, - STATE(789), 6, - sym_reference, - sym_incbin, - sym__property_value, - sym_integer_cells, - sym_string_literal, - sym_byte_string_literal, [26306] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1005), 8, + ACTIONS(773), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -27346,7 +27383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(1007), 9, + ACTIONS(771), 9, anon_sym_AMP_LBRACE, anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, @@ -27359,7 +27396,7 @@ static const uint16_t ts_small_parse_table[] = { [26331] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(853), 8, + ACTIONS(777), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -27368,20 +27405,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(851), 9, + ACTIONS(775), 9, anon_sym_AMP_LBRACE, + anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, [26356] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(741), 8, + ACTIONS(757), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -27390,20 +27427,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(739), 9, + ACTIONS(755), 9, anon_sym_AMP_LBRACE, + anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, [26381] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(761), 8, + ACTIONS(765), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -27412,20 +27449,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(759), 9, + ACTIONS(763), 9, anon_sym_AMP_LBRACE, + anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, [26406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(737), 8, + ACTIONS(769), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -27434,20 +27471,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(735), 9, + ACTIONS(767), 9, anon_sym_AMP_LBRACE, + anon_sym_RBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, aux_sym_preproc_include_token1, aux_sym_preproc_def_token1, aux_sym_preproc_undef_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, [26431] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(975), 8, + ACTIONS(801), 8, sym__label_name, sym__node_path, sym__node_or_property, @@ -27456,7 +27493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SLASHomit_DASHif_DASHno_DASHref_SLASH, aux_sym_preproc_if_token1, - ACTIONS(977), 9, + ACTIONS(799), 9, anon_sym_AMP_LBRACE, anon_sym_SLASHdelete_DASHnode_SLASH, anon_sym_SLASHdelete_DASHproperty_SLASH, @@ -27466,7 +27503,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - [26456] = 11, + [26456] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1167), 1, + anon_sym_LPAREN, + ACTIONS(1169), 1, + anon_sym_RPAREN, + ACTIONS(1171), 1, + sym_integer_literal, + ACTIONS(1173), 1, + sym_identifier, + ACTIONS(1177), 1, + anon_sym_defined, + ACTIONS(1175), 4, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_DASH, + anon_sym_PLUS, + STATE(287), 6, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + [26489] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1167), 1, + anon_sym_LPAREN, + ACTIONS(1173), 1, + sym_identifier, + ACTIONS(1177), 1, + anon_sym_defined, + ACTIONS(1179), 1, + anon_sym_RPAREN, + ACTIONS(1181), 1, + sym_integer_literal, + ACTIONS(1175), 4, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_DASH, + anon_sym_PLUS, + STATE(231), 6, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + [26522] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, @@ -27481,20 +27568,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1127), 1, anon_sym_LBRACK, - ACTIONS(1167), 1, + ACTIONS(1183), 1, anon_sym_SEMI, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(777), 6, + STATE(800), 6, sym_reference, sym_incbin, sym__property_value, sym_integer_cells, sym_string_literal, sym_byte_string_literal, - [26495] = 11, + [26561] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, @@ -27509,20 +27596,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1127), 1, anon_sym_LBRACK, - ACTIONS(1169), 1, + ACTIONS(1185), 1, anon_sym_SEMI, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(799), 6, + STATE(819), 6, sym_reference, sym_incbin, sym__property_value, sym_integer_cells, sym_string_literal, sym_byte_string_literal, - [26534] = 11, + [26600] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, @@ -27537,20 +27624,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1127), 1, anon_sym_LBRACK, - ACTIONS(1171), 1, + ACTIONS(1187), 1, anon_sym_SEMI, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(864), 6, + STATE(824), 6, sym_reference, sym_incbin, sym__property_value, sym_integer_cells, sym_string_literal, sym_byte_string_literal, - [26573] = 11, + [26639] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, @@ -27565,20 +27652,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1127), 1, anon_sym_LBRACK, - ACTIONS(1173), 1, + ACTIONS(1189), 1, anon_sym_SEMI, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(786), 6, + STATE(827), 6, sym_reference, sym_incbin, sym__property_value, sym_integer_cells, sym_string_literal, sym_byte_string_literal, - [26612] = 11, + [26678] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, @@ -27593,20 +27680,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1127), 1, anon_sym_LBRACK, - ACTIONS(1175), 1, + ACTIONS(1191), 1, anon_sym_SEMI, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(801), 6, + STATE(833), 6, sym_reference, sym_incbin, sym__property_value, sym_integer_cells, sym_string_literal, sym_byte_string_literal, - [26651] = 11, + [26717] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, @@ -27621,20 +27708,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1127), 1, anon_sym_LBRACK, - ACTIONS(1177), 1, + ACTIONS(1193), 1, anon_sym_SEMI, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(803), 6, + STATE(862), 6, sym_reference, sym_incbin, sym__property_value, sym_integer_cells, sym_string_literal, sym_byte_string_literal, - [26690] = 11, + [26756] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, @@ -27649,20 +27736,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1127), 1, anon_sym_LBRACK, - ACTIONS(1179), 1, + ACTIONS(1195), 1, anon_sym_SEMI, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(818), 6, + STATE(797), 6, sym_reference, sym_incbin, sym__property_value, sym_integer_cells, sym_string_literal, sym_byte_string_literal, - [26729] = 11, + [26795] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, @@ -27677,20 +27764,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1127), 1, anon_sym_LBRACK, - ACTIONS(1181), 1, + ACTIONS(1197), 1, anon_sym_SEMI, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(868), 6, + STATE(858), 6, sym_reference, sym_incbin, sym__property_value, sym_integer_cells, sym_string_literal, sym_byte_string_literal, - [26768] = 11, + [26834] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, @@ -27705,20 +27792,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1127), 1, anon_sym_LBRACK, - ACTIONS(1183), 1, + ACTIONS(1199), 1, anon_sym_SEMI, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(778), 6, + STATE(879), 6, sym_reference, sym_incbin, sym__property_value, sym_integer_cells, sym_string_literal, sym_byte_string_literal, - [26807] = 11, + [26873] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, @@ -27733,20 +27820,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1127), 1, anon_sym_LBRACK, - ACTIONS(1185), 1, + ACTIONS(1201), 1, anon_sym_SEMI, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(780), 6, + STATE(883), 6, sym_reference, sym_incbin, sym__property_value, sym_integer_cells, sym_string_literal, sym_byte_string_literal, - [26846] = 11, + [26912] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, @@ -27761,20 +27848,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1127), 1, anon_sym_LBRACK, - ACTIONS(1187), 1, + ACTIONS(1203), 1, anon_sym_SEMI, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(837), 6, + STATE(885), 6, sym_reference, sym_incbin, sym__property_value, sym_integer_cells, sym_string_literal, sym_byte_string_literal, - [26885] = 11, + [26951] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, @@ -27789,20 +27876,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1127), 1, anon_sym_LBRACK, - ACTIONS(1189), 1, + ACTIONS(1205), 1, anon_sym_SEMI, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(839), 6, + STATE(887), 6, sym_reference, sym_incbin, sym__property_value, sym_integer_cells, sym_string_literal, sym_byte_string_literal, - [26924] = 11, + [26990] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, @@ -27817,20 +27904,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1127), 1, anon_sym_LBRACK, - ACTIONS(1191), 1, + ACTIONS(1207), 1, anon_sym_SEMI, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(790), 6, + STATE(820), 6, sym_reference, sym_incbin, sym__property_value, sym_integer_cells, sym_string_literal, sym_byte_string_literal, - [26963] = 11, + [27029] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, @@ -27845,20 +27932,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1127), 1, anon_sym_LBRACK, - ACTIONS(1193), 1, + ACTIONS(1209), 1, anon_sym_SEMI, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(843), 6, + STATE(842), 6, sym_reference, sym_incbin, sym__property_value, sym_integer_cells, sym_string_literal, sym_byte_string_literal, - [27002] = 11, + [27068] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, @@ -27873,20 +27960,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1127), 1, anon_sym_LBRACK, - ACTIONS(1195), 1, + ACTIONS(1211), 1, anon_sym_SEMI, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(845), 6, + STATE(843), 6, sym_reference, sym_incbin, sym__property_value, sym_integer_cells, sym_string_literal, sym_byte_string_literal, - [27041] = 11, + [27107] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, @@ -27901,45 +27988,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1127), 1, anon_sym_LBRACK, - ACTIONS(1197), 1, + ACTIONS(1213), 1, anon_sym_SEMI, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(876), 6, + STATE(791), 6, sym_reference, sym_incbin, sym__property_value, sym_integer_cells, sym_string_literal, sym_byte_string_literal, - [27080] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1199), 1, - anon_sym_LPAREN, - ACTIONS(1201), 1, - anon_sym_RPAREN, - ACTIONS(1203), 1, - sym_integer_literal, - ACTIONS(1205), 1, - sym_identifier, - ACTIONS(1209), 1, - anon_sym_defined, - ACTIONS(1207), 4, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH, - anon_sym_PLUS, - STATE(227), 6, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - [27113] = 11, + [27146] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, @@ -27954,44 +28016,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1127), 1, anon_sym_LBRACK, - ACTIONS(1211), 1, + ACTIONS(1215), 1, anon_sym_SEMI, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(821), 6, + STATE(878), 6, sym_reference, sym_incbin, sym__property_value, sym_integer_cells, sym_string_literal, sym_byte_string_literal, - [27152] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1199), 1, - anon_sym_LPAREN, - ACTIONS(1205), 1, - sym_identifier, - ACTIONS(1209), 1, - anon_sym_defined, - ACTIONS(1213), 1, - anon_sym_RPAREN, - ACTIONS(1215), 1, - sym_integer_literal, - ACTIONS(1207), 4, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH, - anon_sym_PLUS, - STATE(223), 6, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, [27185] = 11, ACTIONS(3), 1, sym_comment, @@ -28009,11 +28046,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1217), 1, anon_sym_SEMI, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(869), 6, + STATE(781), 6, sym_reference, sym_incbin, sym__property_value, @@ -28037,11 +28074,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1219), 1, anon_sym_SEMI, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(883), 6, + STATE(783), 6, sym_reference, sym_incbin, sym__property_value, @@ -28065,11 +28102,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1221), 1, anon_sym_SEMI, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(885), 6, + STATE(785), 6, sym_reference, sym_incbin, sym__property_value, @@ -28079,20 +28116,20 @@ static const uint16_t ts_small_parse_table[] = { [27302] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1223), 1, + ACTIONS(1167), 1, anon_sym_LPAREN, - ACTIONS(1225), 1, - sym_integer_literal, - ACTIONS(1227), 1, + ACTIONS(1173), 1, sym_identifier, - ACTIONS(1231), 1, + ACTIONS(1177), 1, anon_sym_defined, - ACTIONS(1229), 4, + ACTIONS(1223), 1, + sym_integer_literal, + ACTIONS(1175), 4, anon_sym_BANG, anon_sym_TILDE, anon_sym_DASH, anon_sym_PLUS, - STATE(394), 6, + STATE(349), 6, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -28102,20 +28139,20 @@ static const uint16_t ts_small_parse_table[] = { [27332] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1223), 1, + ACTIONS(1225), 1, anon_sym_LPAREN, ACTIONS(1227), 1, + sym_integer_literal, + ACTIONS(1229), 1, sym_identifier, - ACTIONS(1231), 1, - anon_sym_defined, ACTIONS(1233), 1, - sym_integer_literal, - ACTIONS(1229), 4, + anon_sym_defined, + ACTIONS(1231), 4, anon_sym_BANG, anon_sym_TILDE, anon_sym_DASH, anon_sym_PLUS, - STATE(400), 6, + STATE(403), 6, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -28125,20 +28162,20 @@ static const uint16_t ts_small_parse_table[] = { [27362] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1223), 1, + ACTIONS(1225), 1, anon_sym_LPAREN, - ACTIONS(1227), 1, + ACTIONS(1229), 1, sym_identifier, - ACTIONS(1231), 1, + ACTIONS(1233), 1, anon_sym_defined, ACTIONS(1235), 1, sym_integer_literal, - ACTIONS(1229), 4, + ACTIONS(1231), 4, anon_sym_BANG, anon_sym_TILDE, anon_sym_DASH, anon_sym_PLUS, - STATE(401), 6, + STATE(380), 6, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -28148,27 +28185,50 @@ static const uint16_t ts_small_parse_table[] = { [27392] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1223), 1, + ACTIONS(1225), 1, anon_sym_LPAREN, - ACTIONS(1227), 1, + ACTIONS(1229), 1, sym_identifier, - ACTIONS(1231), 1, + ACTIONS(1233), 1, anon_sym_defined, ACTIONS(1237), 1, sym_integer_literal, - ACTIONS(1229), 4, + ACTIONS(1231), 4, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_DASH, + anon_sym_PLUS, + STATE(422), 6, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + [27422] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1167), 1, + anon_sym_LPAREN, + ACTIONS(1173), 1, + sym_identifier, + ACTIONS(1177), 1, + anon_sym_defined, + ACTIONS(1239), 1, + sym_integer_literal, + ACTIONS(1175), 4, anon_sym_BANG, anon_sym_TILDE, anon_sym_DASH, anon_sym_PLUS, - STATE(405), 6, + STATE(329), 6, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, sym_preproc_unary_expression, sym_preproc_call_expression, sym_preproc_binary_expression, - [27422] = 10, + [27452] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, @@ -28183,57 +28243,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1127), 1, anon_sym_LBRACK, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(935), 6, + STATE(923), 6, sym_reference, sym_incbin, - sym__property_value, - sym_integer_cells, - sym_string_literal, - sym_byte_string_literal, - [27458] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1199), 1, - anon_sym_LPAREN, - ACTIONS(1205), 1, - sym_identifier, - ACTIONS(1209), 1, - anon_sym_defined, - ACTIONS(1239), 1, - sym_integer_literal, - ACTIONS(1207), 4, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH, - anon_sym_PLUS, - STATE(407), 6, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, + sym__property_value, + sym_integer_cells, + sym_string_literal, + sym_byte_string_literal, [27488] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1223), 1, + ACTIONS(1225), 1, anon_sym_LPAREN, - ACTIONS(1227), 1, + ACTIONS(1229), 1, sym_identifier, - ACTIONS(1231), 1, + ACTIONS(1233), 1, anon_sym_defined, ACTIONS(1241), 1, sym_integer_literal, - ACTIONS(1229), 4, + ACTIONS(1231), 4, anon_sym_BANG, anon_sym_TILDE, anon_sym_DASH, anon_sym_PLUS, - STATE(410), 6, + STATE(450), 6, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -28243,20 +28280,20 @@ static const uint16_t ts_small_parse_table[] = { [27518] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1223), 1, + ACTIONS(1225), 1, anon_sym_LPAREN, - ACTIONS(1227), 1, + ACTIONS(1229), 1, sym_identifier, - ACTIONS(1231), 1, + ACTIONS(1233), 1, anon_sym_defined, ACTIONS(1243), 1, sym_integer_literal, - ACTIONS(1229), 4, + ACTIONS(1231), 4, anon_sym_BANG, anon_sym_TILDE, anon_sym_DASH, anon_sym_PLUS, - STATE(393), 6, + STATE(451), 6, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -28266,20 +28303,20 @@ static const uint16_t ts_small_parse_table[] = { [27548] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1199), 1, + ACTIONS(1225), 1, anon_sym_LPAREN, - ACTIONS(1205), 1, + ACTIONS(1229), 1, sym_identifier, - ACTIONS(1209), 1, + ACTIONS(1233), 1, anon_sym_defined, ACTIONS(1245), 1, sym_integer_literal, - ACTIONS(1207), 4, + ACTIONS(1231), 4, anon_sym_BANG, anon_sym_TILDE, anon_sym_DASH, anon_sym_PLUS, - STATE(399), 6, + STATE(424), 6, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -28289,20 +28326,20 @@ static const uint16_t ts_small_parse_table[] = { [27578] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1223), 1, + ACTIONS(1167), 1, anon_sym_LPAREN, - ACTIONS(1227), 1, + ACTIONS(1173), 1, sym_identifier, - ACTIONS(1231), 1, + ACTIONS(1177), 1, anon_sym_defined, ACTIONS(1247), 1, sym_integer_literal, - ACTIONS(1229), 4, + ACTIONS(1175), 4, anon_sym_BANG, anon_sym_TILDE, anon_sym_DASH, anon_sym_PLUS, - STATE(397), 6, + STATE(439), 6, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -28312,20 +28349,20 @@ static const uint16_t ts_small_parse_table[] = { [27608] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1223), 1, + ACTIONS(1225), 1, anon_sym_LPAREN, - ACTIONS(1227), 1, + ACTIONS(1229), 1, sym_identifier, - ACTIONS(1231), 1, + ACTIONS(1233), 1, anon_sym_defined, ACTIONS(1249), 1, sym_integer_literal, - ACTIONS(1229), 4, + ACTIONS(1231), 4, anon_sym_BANG, anon_sym_TILDE, anon_sym_DASH, anon_sym_PLUS, - STATE(404), 6, + STATE(369), 6, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -28335,20 +28372,20 @@ static const uint16_t ts_small_parse_table[] = { [27638] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1223), 1, + ACTIONS(1225), 1, anon_sym_LPAREN, - ACTIONS(1227), 1, + ACTIONS(1229), 1, sym_identifier, - ACTIONS(1231), 1, + ACTIONS(1233), 1, anon_sym_defined, ACTIONS(1251), 1, sym_integer_literal, - ACTIONS(1229), 4, + ACTIONS(1231), 4, anon_sym_BANG, anon_sym_TILDE, anon_sym_DASH, anon_sym_PLUS, - STATE(406), 6, + STATE(407), 6, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -28358,20 +28395,20 @@ static const uint16_t ts_small_parse_table[] = { [27668] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1223), 1, + ACTIONS(1225), 1, anon_sym_LPAREN, - ACTIONS(1227), 1, + ACTIONS(1229), 1, sym_identifier, - ACTIONS(1231), 1, + ACTIONS(1233), 1, anon_sym_defined, ACTIONS(1253), 1, sym_integer_literal, - ACTIONS(1229), 4, + ACTIONS(1231), 4, anon_sym_BANG, anon_sym_TILDE, anon_sym_DASH, anon_sym_PLUS, - STATE(414), 6, + STATE(442), 6, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -28381,20 +28418,20 @@ static const uint16_t ts_small_parse_table[] = { [27698] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1199), 1, + ACTIONS(1225), 1, anon_sym_LPAREN, - ACTIONS(1205), 1, + ACTIONS(1229), 1, sym_identifier, - ACTIONS(1209), 1, + ACTIONS(1233), 1, anon_sym_defined, ACTIONS(1255), 1, sym_integer_literal, - ACTIONS(1207), 4, + ACTIONS(1231), 4, anon_sym_BANG, anon_sym_TILDE, anon_sym_DASH, anon_sym_PLUS, - STATE(310), 6, + STATE(365), 6, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -28404,20 +28441,20 @@ static const uint16_t ts_small_parse_table[] = { [27728] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1223), 1, + ACTIONS(1225), 1, anon_sym_LPAREN, - ACTIONS(1227), 1, + ACTIONS(1229), 1, sym_identifier, - ACTIONS(1231), 1, + ACTIONS(1233), 1, anon_sym_defined, ACTIONS(1257), 1, sym_integer_literal, - ACTIONS(1229), 4, + ACTIONS(1231), 4, anon_sym_BANG, anon_sym_TILDE, anon_sym_DASH, anon_sym_PLUS, - STATE(434), 6, + STATE(370), 6, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -28427,20 +28464,20 @@ static const uint16_t ts_small_parse_table[] = { [27758] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1223), 1, + ACTIONS(1225), 1, anon_sym_LPAREN, - ACTIONS(1227), 1, + ACTIONS(1229), 1, sym_identifier, - ACTIONS(1231), 1, + ACTIONS(1233), 1, anon_sym_defined, ACTIONS(1259), 1, sym_integer_literal, - ACTIONS(1229), 4, + ACTIONS(1231), 4, anon_sym_BANG, anon_sym_TILDE, anon_sym_DASH, anon_sym_PLUS, - STATE(398), 6, + STATE(372), 6, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -28450,20 +28487,20 @@ static const uint16_t ts_small_parse_table[] = { [27788] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1199), 1, + ACTIONS(1225), 1, anon_sym_LPAREN, - ACTIONS(1205), 1, + ACTIONS(1229), 1, sym_identifier, - ACTIONS(1209), 1, + ACTIONS(1233), 1, anon_sym_defined, ACTIONS(1261), 1, sym_integer_literal, - ACTIONS(1207), 4, + ACTIONS(1231), 4, anon_sym_BANG, anon_sym_TILDE, anon_sym_DASH, anon_sym_PLUS, - STATE(352), 6, + STATE(390), 6, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -28473,20 +28510,20 @@ static const uint16_t ts_small_parse_table[] = { [27818] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1223), 1, + ACTIONS(1225), 1, anon_sym_LPAREN, - ACTIONS(1227), 1, + ACTIONS(1229), 1, sym_identifier, - ACTIONS(1231), 1, + ACTIONS(1233), 1, anon_sym_defined, ACTIONS(1263), 1, sym_integer_literal, - ACTIONS(1229), 4, + ACTIONS(1231), 4, anon_sym_BANG, anon_sym_TILDE, anon_sym_DASH, anon_sym_PLUS, - STATE(436), 6, + STATE(388), 6, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -28496,20 +28533,20 @@ static const uint16_t ts_small_parse_table[] = { [27848] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1199), 1, + ACTIONS(1167), 1, anon_sym_LPAREN, - ACTIONS(1205), 1, + ACTIONS(1173), 1, sym_identifier, - ACTIONS(1209), 1, + ACTIONS(1177), 1, anon_sym_defined, ACTIONS(1265), 1, sym_integer_literal, - ACTIONS(1207), 4, + ACTIONS(1175), 4, anon_sym_BANG, anon_sym_TILDE, anon_sym_DASH, anon_sym_PLUS, - STATE(318), 6, + STATE(343), 6, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -28519,20 +28556,20 @@ static const uint16_t ts_small_parse_table[] = { [27878] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1199), 1, + ACTIONS(1167), 1, anon_sym_LPAREN, - ACTIONS(1205), 1, + ACTIONS(1173), 1, sym_identifier, - ACTIONS(1209), 1, + ACTIONS(1177), 1, anon_sym_defined, ACTIONS(1267), 1, sym_integer_literal, - ACTIONS(1207), 4, + ACTIONS(1175), 4, anon_sym_BANG, anon_sym_TILDE, anon_sym_DASH, anon_sym_PLUS, - STATE(319), 6, + STATE(344), 6, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -28542,20 +28579,20 @@ static const uint16_t ts_small_parse_table[] = { [27908] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1199), 1, + ACTIONS(1167), 1, anon_sym_LPAREN, - ACTIONS(1205), 1, + ACTIONS(1173), 1, sym_identifier, - ACTIONS(1209), 1, + ACTIONS(1177), 1, anon_sym_defined, ACTIONS(1269), 1, sym_integer_literal, - ACTIONS(1207), 4, + ACTIONS(1175), 4, anon_sym_BANG, anon_sym_TILDE, anon_sym_DASH, anon_sym_PLUS, - STATE(320), 6, + STATE(345), 6, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -28565,20 +28602,20 @@ static const uint16_t ts_small_parse_table[] = { [27938] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1199), 1, + ACTIONS(1167), 1, anon_sym_LPAREN, - ACTIONS(1205), 1, + ACTIONS(1173), 1, sym_identifier, - ACTIONS(1209), 1, + ACTIONS(1177), 1, anon_sym_defined, ACTIONS(1271), 1, sym_integer_literal, - ACTIONS(1207), 4, + ACTIONS(1175), 4, anon_sym_BANG, anon_sym_TILDE, anon_sym_DASH, anon_sym_PLUS, - STATE(321), 6, + STATE(346), 6, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -28588,20 +28625,20 @@ static const uint16_t ts_small_parse_table[] = { [27968] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1199), 1, + ACTIONS(1167), 1, anon_sym_LPAREN, - ACTIONS(1205), 1, + ACTIONS(1173), 1, sym_identifier, - ACTIONS(1209), 1, + ACTIONS(1177), 1, anon_sym_defined, ACTIONS(1273), 1, sym_integer_literal, - ACTIONS(1207), 4, + ACTIONS(1175), 4, anon_sym_BANG, anon_sym_TILDE, anon_sym_DASH, anon_sym_PLUS, - STATE(322), 6, + STATE(347), 6, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -28611,20 +28648,20 @@ static const uint16_t ts_small_parse_table[] = { [27998] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1199), 1, + ACTIONS(1167), 1, anon_sym_LPAREN, - ACTIONS(1205), 1, + ACTIONS(1173), 1, sym_identifier, - ACTIONS(1209), 1, + ACTIONS(1177), 1, anon_sym_defined, ACTIONS(1275), 1, sym_integer_literal, - ACTIONS(1207), 4, + ACTIONS(1175), 4, anon_sym_BANG, anon_sym_TILDE, anon_sym_DASH, anon_sym_PLUS, - STATE(323), 6, + STATE(290), 6, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -28634,20 +28671,20 @@ static const uint16_t ts_small_parse_table[] = { [28028] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1199), 1, + ACTIONS(1167), 1, anon_sym_LPAREN, - ACTIONS(1205), 1, + ACTIONS(1173), 1, sym_identifier, - ACTIONS(1209), 1, + ACTIONS(1177), 1, anon_sym_defined, ACTIONS(1277), 1, sym_integer_literal, - ACTIONS(1207), 4, + ACTIONS(1175), 4, anon_sym_BANG, anon_sym_TILDE, anon_sym_DASH, anon_sym_PLUS, - STATE(324), 6, + STATE(348), 6, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -28657,20 +28694,20 @@ static const uint16_t ts_small_parse_table[] = { [28058] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1199), 1, + ACTIONS(1225), 1, anon_sym_LPAREN, - ACTIONS(1205), 1, + ACTIONS(1229), 1, sym_identifier, - ACTIONS(1209), 1, + ACTIONS(1233), 1, anon_sym_defined, ACTIONS(1279), 1, sym_integer_literal, - ACTIONS(1207), 4, + ACTIONS(1231), 4, anon_sym_BANG, anon_sym_TILDE, anon_sym_DASH, anon_sym_PLUS, - STATE(290), 6, + STATE(406), 6, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -28680,20 +28717,20 @@ static const uint16_t ts_small_parse_table[] = { [28088] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1199), 1, + ACTIONS(1167), 1, anon_sym_LPAREN, - ACTIONS(1205), 1, + ACTIONS(1173), 1, sym_identifier, - ACTIONS(1209), 1, + ACTIONS(1177), 1, anon_sym_defined, ACTIONS(1281), 1, sym_integer_literal, - ACTIONS(1207), 4, + ACTIONS(1175), 4, anon_sym_BANG, anon_sym_TILDE, anon_sym_DASH, anon_sym_PLUS, - STATE(354), 6, + STATE(350), 6, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -28703,20 +28740,20 @@ static const uint16_t ts_small_parse_table[] = { [28118] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1199), 1, + ACTIONS(1167), 1, anon_sym_LPAREN, - ACTIONS(1205), 1, + ACTIONS(1173), 1, sym_identifier, - ACTIONS(1209), 1, + ACTIONS(1177), 1, anon_sym_defined, ACTIONS(1283), 1, sym_integer_literal, - ACTIONS(1207), 4, + ACTIONS(1175), 4, anon_sym_BANG, anon_sym_TILDE, anon_sym_DASH, anon_sym_PLUS, - STATE(327), 6, + STATE(351), 6, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -28726,20 +28763,20 @@ static const uint16_t ts_small_parse_table[] = { [28148] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1223), 1, + ACTIONS(1167), 1, anon_sym_LPAREN, - ACTIONS(1227), 1, + ACTIONS(1173), 1, sym_identifier, - ACTIONS(1231), 1, + ACTIONS(1177), 1, anon_sym_defined, ACTIONS(1285), 1, sym_integer_literal, - ACTIONS(1229), 4, + ACTIONS(1175), 4, anon_sym_BANG, anon_sym_TILDE, anon_sym_DASH, anon_sym_PLUS, - STATE(392), 6, + STATE(397), 6, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -28749,20 +28786,20 @@ static const uint16_t ts_small_parse_table[] = { [28178] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1223), 1, + ACTIONS(1225), 1, anon_sym_LPAREN, - ACTIONS(1227), 1, + ACTIONS(1229), 1, sym_identifier, - ACTIONS(1231), 1, + ACTIONS(1233), 1, anon_sym_defined, ACTIONS(1287), 1, sym_integer_literal, - ACTIONS(1229), 4, + ACTIONS(1231), 4, anon_sym_BANG, anon_sym_TILDE, anon_sym_DASH, anon_sym_PLUS, - STATE(402), 6, + STATE(430), 6, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -28772,20 +28809,20 @@ static const uint16_t ts_small_parse_table[] = { [28208] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1223), 1, + ACTIONS(1225), 1, anon_sym_LPAREN, - ACTIONS(1227), 1, + ACTIONS(1229), 1, sym_identifier, - ACTIONS(1231), 1, + ACTIONS(1233), 1, anon_sym_defined, ACTIONS(1289), 1, sym_integer_literal, - ACTIONS(1229), 4, + ACTIONS(1231), 4, anon_sym_BANG, anon_sym_TILDE, anon_sym_DASH, anon_sym_PLUS, - STATE(408), 6, + STATE(361), 6, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -28795,20 +28832,20 @@ static const uint16_t ts_small_parse_table[] = { [28238] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1223), 1, + ACTIONS(1225), 1, anon_sym_LPAREN, - ACTIONS(1227), 1, + ACTIONS(1229), 1, sym_identifier, - ACTIONS(1231), 1, + ACTIONS(1233), 1, anon_sym_defined, ACTIONS(1291), 1, sym_integer_literal, - ACTIONS(1229), 4, + ACTIONS(1231), 4, anon_sym_BANG, anon_sym_TILDE, anon_sym_DASH, anon_sym_PLUS, - STATE(413), 6, + STATE(368), 6, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -28818,20 +28855,20 @@ static const uint16_t ts_small_parse_table[] = { [28268] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1223), 1, + ACTIONS(1225), 1, anon_sym_LPAREN, - ACTIONS(1227), 1, + ACTIONS(1229), 1, sym_identifier, - ACTIONS(1231), 1, + ACTIONS(1233), 1, anon_sym_defined, ACTIONS(1293), 1, sym_integer_literal, - ACTIONS(1229), 4, + ACTIONS(1231), 4, anon_sym_BANG, anon_sym_TILDE, anon_sym_DASH, anon_sym_PLUS, - STATE(418), 6, + STATE(387), 6, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -28841,20 +28878,20 @@ static const uint16_t ts_small_parse_table[] = { [28298] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1223), 1, + ACTIONS(1167), 1, anon_sym_LPAREN, - ACTIONS(1227), 1, + ACTIONS(1173), 1, sym_identifier, - ACTIONS(1231), 1, + ACTIONS(1177), 1, anon_sym_defined, ACTIONS(1295), 1, sym_integer_literal, - ACTIONS(1229), 4, + ACTIONS(1175), 4, anon_sym_BANG, anon_sym_TILDE, anon_sym_DASH, anon_sym_PLUS, - STATE(435), 6, + STATE(337), 6, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -28869,520 +28906,520 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1299), 1, anon_sym_RPAREN, ACTIONS(1301), 1, - sym_integer_literal, - ACTIONS(1303), 1, - sym_identifier, - ACTIONS(1305), 4, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH, - anon_sym_PLUS, - STATE(209), 5, - sym__expression, - sym_call_expression, - sym_conditional_expression, - sym_unary_expression, - sym_binary_expression, - [28357] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1297), 1, - anon_sym_LPAREN, - ACTIONS(1303), 1, - sym_identifier, - ACTIONS(1307), 1, - sym_integer_literal, - ACTIONS(1305), 4, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH, - anon_sym_PLUS, - STATE(204), 5, - sym__expression, - sym_call_expression, - sym_conditional_expression, - sym_unary_expression, - sym_binary_expression, - [28383] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1309), 1, - anon_sym_AMP, - ACTIONS(1312), 1, - anon_sym_AMP_LBRACE, - ACTIONS(1315), 1, - anon_sym_LPAREN, - ACTIONS(1318), 1, - anon_sym_GT, - ACTIONS(1320), 1, - sym_integer_literal, - ACTIONS(1323), 1, - sym_identifier, - STATE(710), 1, - sym__label_reference, - STATE(711), 1, - sym__node_reference, - STATE(677), 4, - sym_reference, - sym__integer_cell_items, - sym_call_expression, - aux_sym_integer_cells_repeat1, - [28417] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17), 1, - anon_sym_AMP, - ACTIONS(19), 1, - anon_sym_AMP_LBRACE, - ACTIONS(1326), 1, - anon_sym_LPAREN, - ACTIONS(1328), 1, - anon_sym_GT, - ACTIONS(1330), 1, - sym_integer_literal, - ACTIONS(1332), 1, - sym_identifier, - STATE(710), 1, - sym__label_reference, - STATE(711), 1, - sym__node_reference, - STATE(677), 4, - sym_reference, - sym__integer_cell_items, - sym_call_expression, - aux_sym_integer_cells_repeat1, - [28451] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1297), 1, - anon_sym_LPAREN, - ACTIONS(1303), 1, - sym_identifier, - ACTIONS(1334), 1, - sym_integer_literal, - ACTIONS(1305), 4, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DASH, - anon_sym_PLUS, - STATE(199), 5, - sym__expression, - sym_call_expression, - sym_conditional_expression, - sym_unary_expression, - sym_binary_expression, - [28477] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17), 1, - anon_sym_AMP, - ACTIONS(19), 1, - anon_sym_AMP_LBRACE, - ACTIONS(1336), 1, - sym__label_name, - ACTIONS(1338), 1, - sym__node_path, - ACTIONS(1340), 1, - sym__node_or_property, - ACTIONS(1342), 1, - sym__property_with_hash, - ACTIONS(1344), 1, - sym__property_starts_with_number, - STATE(710), 1, - sym__label_reference, - STATE(711), 1, - sym__node_reference, - STATE(720), 1, - aux_sym_memory_reservation_repeat1, - STATE(730), 1, - sym__label, - STATE(1202), 1, - sym_reference, - [28517] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1297), 1, - anon_sym_LPAREN, + sym_integer_literal, ACTIONS(1303), 1, sym_identifier, - ACTIONS(1346), 1, - sym_integer_literal, ACTIONS(1305), 4, anon_sym_BANG, anon_sym_TILDE, anon_sym_DASH, anon_sym_PLUS, - STATE(200), 5, + STATE(202), 5, sym__expression, sym_call_expression, sym_conditional_expression, sym_unary_expression, sym_binary_expression, - [28543] = 6, + [28357] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1297), 1, anon_sym_LPAREN, ACTIONS(1303), 1, sym_identifier, - ACTIONS(1348), 1, + ACTIONS(1307), 1, sym_integer_literal, ACTIONS(1305), 4, anon_sym_BANG, anon_sym_TILDE, anon_sym_DASH, anon_sym_PLUS, - STATE(291), 5, + STATE(332), 5, sym__expression, sym_call_expression, sym_conditional_expression, sym_unary_expression, sym_binary_expression, - [28569] = 6, + [28383] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1297), 1, anon_sym_LPAREN, ACTIONS(1303), 1, sym_identifier, - ACTIONS(1350), 1, + ACTIONS(1309), 1, sym_integer_literal, ACTIONS(1305), 4, anon_sym_BANG, anon_sym_TILDE, anon_sym_DASH, anon_sym_PLUS, - STATE(201), 5, + STATE(208), 5, sym__expression, sym_call_expression, sym_conditional_expression, sym_unary_expression, sym_binary_expression, - [28595] = 6, + [28409] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1297), 1, anon_sym_LPAREN, ACTIONS(1303), 1, sym_identifier, - ACTIONS(1352), 1, + ACTIONS(1311), 1, sym_integer_literal, ACTIONS(1305), 4, anon_sym_BANG, anon_sym_TILDE, anon_sym_DASH, anon_sym_PLUS, - STATE(202), 5, + STATE(209), 5, sym__expression, sym_call_expression, sym_conditional_expression, sym_unary_expression, sym_binary_expression, - [28621] = 6, + [28435] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1297), 1, anon_sym_LPAREN, ACTIONS(1303), 1, sym_identifier, - ACTIONS(1354), 1, + ACTIONS(1313), 1, sym_integer_literal, ACTIONS(1305), 4, anon_sym_BANG, anon_sym_TILDE, anon_sym_DASH, anon_sym_PLUS, - STATE(203), 5, + STATE(210), 5, sym__expression, sym_call_expression, sym_conditional_expression, sym_unary_expression, sym_binary_expression, - [28647] = 6, + [28461] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1297), 1, anon_sym_LPAREN, ACTIONS(1303), 1, sym_identifier, - ACTIONS(1356), 1, + ACTIONS(1315), 1, sym_integer_literal, ACTIONS(1305), 4, anon_sym_BANG, anon_sym_TILDE, anon_sym_DASH, anon_sym_PLUS, - STATE(205), 5, + STATE(211), 5, sym__expression, sym_call_expression, sym_conditional_expression, sym_unary_expression, sym_binary_expression, - [28673] = 6, + [28487] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1297), 1, anon_sym_LPAREN, ACTIONS(1303), 1, sym_identifier, - ACTIONS(1358), 1, + ACTIONS(1317), 1, sym_integer_literal, ACTIONS(1305), 4, anon_sym_BANG, anon_sym_TILDE, anon_sym_DASH, anon_sym_PLUS, - STATE(206), 5, + STATE(212), 5, sym__expression, sym_call_expression, sym_conditional_expression, sym_unary_expression, sym_binary_expression, - [28699] = 6, + [28513] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17), 1, + anon_sym_AMP, + ACTIONS(19), 1, + anon_sym_AMP_LBRACE, + ACTIONS(1319), 1, + sym__label_name, + ACTIONS(1321), 1, + sym__node_path, + ACTIONS(1323), 1, + sym__node_or_property, + ACTIONS(1325), 1, + sym__property_with_hash, + ACTIONS(1327), 1, + sym__property_starts_with_number, + STATE(707), 1, + sym__label_reference, + STATE(711), 1, + sym__node_reference, + STATE(719), 1, + aux_sym_memory_reservation_repeat1, + STATE(731), 1, + sym__label, + STATE(1216), 1, + sym_reference, + [28553] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1297), 1, anon_sym_LPAREN, ACTIONS(1303), 1, sym_identifier, - ACTIONS(1360), 1, + ACTIONS(1329), 1, sym_integer_literal, ACTIONS(1305), 4, anon_sym_BANG, anon_sym_TILDE, anon_sym_DASH, anon_sym_PLUS, - STATE(207), 5, + STATE(213), 5, sym__expression, sym_call_expression, sym_conditional_expression, sym_unary_expression, sym_binary_expression, - [28725] = 6, + [28579] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1297), 1, anon_sym_LPAREN, ACTIONS(1303), 1, sym_identifier, - ACTIONS(1362), 1, + ACTIONS(1331), 1, sym_integer_literal, ACTIONS(1305), 4, anon_sym_BANG, anon_sym_TILDE, anon_sym_DASH, anon_sym_PLUS, - STATE(208), 5, + STATE(283), 5, sym__expression, sym_call_expression, sym_conditional_expression, sym_unary_expression, sym_binary_expression, - [28751] = 13, + [28605] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, anon_sym_AMP, ACTIONS(19), 1, anon_sym_AMP_LBRACE, - ACTIONS(1364), 1, + ACTIONS(1333), 1, sym__label_name, - ACTIONS(1366), 1, + ACTIONS(1335), 1, sym__node_path, - ACTIONS(1368), 1, + ACTIONS(1337), 1, sym__node_or_property, - ACTIONS(1370), 1, + ACTIONS(1339), 1, sym__property_with_hash, - ACTIONS(1372), 1, + ACTIONS(1341), 1, sym__property_starts_with_number, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(720), 1, + STATE(719), 1, aux_sym_memory_reservation_repeat1, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1213), 1, + STATE(1205), 1, sym_reference, - [28791] = 13, + [28645] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1297), 1, + anon_sym_LPAREN, + ACTIONS(1303), 1, + sym_identifier, + ACTIONS(1343), 1, + sym_integer_literal, + ACTIONS(1305), 4, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_DASH, + anon_sym_PLUS, + STATE(199), 5, + sym__expression, + sym_call_expression, + sym_conditional_expression, + sym_unary_expression, + sym_binary_expression, + [28671] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, anon_sym_AMP, ACTIONS(19), 1, anon_sym_AMP_LBRACE, - ACTIONS(1374), 1, + ACTIONS(1345), 1, sym__label_name, - ACTIONS(1376), 1, + ACTIONS(1347), 1, sym__node_path, - ACTIONS(1378), 1, + ACTIONS(1349), 1, sym__node_or_property, - ACTIONS(1380), 1, + ACTIONS(1351), 1, sym__property_with_hash, - ACTIONS(1382), 1, + ACTIONS(1353), 1, sym__property_starts_with_number, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(720), 1, + STATE(719), 1, aux_sym_memory_reservation_repeat1, - STATE(730), 1, + STATE(731), 1, sym__label, - STATE(1223), 1, + STATE(1226), 1, sym_reference, - [28831] = 10, + [28711] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, anon_sym_AMP, ACTIONS(19), 1, anon_sym_AMP_LBRACE, - ACTIONS(1326), 1, + ACTIONS(1355), 1, anon_sym_LPAREN, - ACTIONS(1332), 1, - sym_identifier, - ACTIONS(1384), 1, + ACTIONS(1357), 1, anon_sym_GT, - ACTIONS(1386), 1, + ACTIONS(1359), 1, sym_integer_literal, - STATE(710), 1, + ACTIONS(1361), 1, + sym_identifier, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(678), 4, + STATE(697), 4, sym_reference, sym__integer_cell_items, sym_call_expression, aux_sym_integer_cells_repeat1, - [28865] = 6, + [28745] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1297), 1, anon_sym_LPAREN, ACTIONS(1303), 1, sym_identifier, - ACTIONS(1388), 1, + ACTIONS(1363), 1, sym_integer_literal, ACTIONS(1305), 4, anon_sym_BANG, anon_sym_TILDE, anon_sym_DASH, anon_sym_PLUS, - STATE(266), 5, + STATE(205), 5, sym__expression, sym_call_expression, sym_conditional_expression, sym_unary_expression, sym_binary_expression, - [28891] = 6, + [28771] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1297), 1, anon_sym_LPAREN, ACTIONS(1303), 1, sym_identifier, - ACTIONS(1390), 1, + ACTIONS(1365), 1, sym_integer_literal, ACTIONS(1305), 4, anon_sym_BANG, anon_sym_TILDE, anon_sym_DASH, anon_sym_PLUS, - STATE(211), 5, + STATE(331), 5, sym__expression, sym_call_expression, sym_conditional_expression, sym_unary_expression, sym_binary_expression, - [28917] = 6, + [28797] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1297), 1, anon_sym_LPAREN, ACTIONS(1303), 1, sym_identifier, - ACTIONS(1392), 1, + ACTIONS(1367), 1, sym_integer_literal, ACTIONS(1305), 4, anon_sym_BANG, anon_sym_TILDE, anon_sym_DASH, anon_sym_PLUS, - STATE(344), 5, + STATE(201), 5, sym__expression, sym_call_expression, sym_conditional_expression, sym_unary_expression, sym_binary_expression, - [28943] = 6, + [28823] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1297), 1, anon_sym_LPAREN, ACTIONS(1303), 1, sym_identifier, - ACTIONS(1394), 1, + ACTIONS(1369), 1, sym_integer_literal, ACTIONS(1305), 4, anon_sym_BANG, anon_sym_TILDE, anon_sym_DASH, anon_sym_PLUS, - STATE(210), 5, + STATE(206), 5, sym__expression, sym_call_expression, sym_conditional_expression, sym_unary_expression, sym_binary_expression, - [28969] = 6, + [28849] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17), 1, + anon_sym_AMP, + ACTIONS(19), 1, + anon_sym_AMP_LBRACE, + ACTIONS(1371), 1, + sym__label_name, + ACTIONS(1373), 1, + sym__node_path, + ACTIONS(1375), 1, + sym__node_or_property, + ACTIONS(1377), 1, + sym__property_with_hash, + ACTIONS(1379), 1, + sym__property_starts_with_number, + STATE(707), 1, + sym__label_reference, + STATE(711), 1, + sym__node_reference, + STATE(719), 1, + aux_sym_memory_reservation_repeat1, + STATE(731), 1, + sym__label, + STATE(1183), 1, + sym_reference, + [28889] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1297), 1, anon_sym_LPAREN, ACTIONS(1303), 1, sym_identifier, - ACTIONS(1396), 1, + ACTIONS(1381), 1, sym_integer_literal, ACTIONS(1305), 4, anon_sym_BANG, anon_sym_TILDE, anon_sym_DASH, anon_sym_PLUS, - STATE(332), 5, + STATE(330), 5, + sym__expression, + sym_call_expression, + sym_conditional_expression, + sym_unary_expression, + sym_binary_expression, + [28915] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1297), 1, + anon_sym_LPAREN, + ACTIONS(1303), 1, + sym_identifier, + ACTIONS(1383), 1, + sym_integer_literal, + ACTIONS(1305), 4, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_DASH, + anon_sym_PLUS, + STATE(204), 5, + sym__expression, + sym_call_expression, + sym_conditional_expression, + sym_unary_expression, + sym_binary_expression, + [28941] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1297), 1, + anon_sym_LPAREN, + ACTIONS(1303), 1, + sym_identifier, + ACTIONS(1385), 1, + sym_integer_literal, + ACTIONS(1305), 4, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_DASH, + anon_sym_PLUS, + STATE(207), 5, sym__expression, sym_call_expression, sym_conditional_expression, sym_unary_expression, sym_binary_expression, - [28995] = 13, + [28967] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1387), 1, + anon_sym_AMP, + ACTIONS(1390), 1, + anon_sym_AMP_LBRACE, + ACTIONS(1393), 1, + anon_sym_LPAREN, + ACTIONS(1396), 1, + anon_sym_GT, + ACTIONS(1398), 1, + sym_integer_literal, + ACTIONS(1401), 1, + sym_identifier, + STATE(707), 1, + sym__label_reference, + STATE(711), 1, + sym__node_reference, + STATE(697), 4, + sym_reference, + sym__integer_cell_items, + sym_call_expression, + aux_sym_integer_cells_repeat1, + [29001] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, anon_sym_AMP, ACTIONS(19), 1, anon_sym_AMP_LBRACE, - ACTIONS(1398), 1, - sym__label_name, - ACTIONS(1400), 1, - sym__node_path, - ACTIONS(1402), 1, - sym__node_or_property, + ACTIONS(1355), 1, + anon_sym_LPAREN, + ACTIONS(1361), 1, + sym_identifier, ACTIONS(1404), 1, - sym__property_with_hash, + anon_sym_GT, ACTIONS(1406), 1, - sym__property_starts_with_number, - STATE(710), 1, + sym_integer_literal, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(720), 1, - aux_sym_memory_reservation_repeat1, - STATE(730), 1, - sym__label, - STATE(1180), 1, + STATE(688), 4, sym_reference, + sym__integer_cell_items, + sym_call_expression, + aux_sym_integer_cells_repeat1, [29035] = 11, ACTIONS(3), 1, sym_comment, @@ -29392,22 +29429,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LBRACE, ACTIONS(1408), 1, sym__label_name, - STATE(243), 1, + STATE(423), 1, sym_node, - STATE(710), 1, + STATE(707), 1, sym__label_reference, + STATE(708), 1, + aux_sym_memory_reservation_repeat1, STATE(711), 1, sym__node_reference, - STATE(717), 1, - aux_sym_memory_reservation_repeat1, - STATE(739), 1, + STATE(742), 1, sym__label, - STATE(929), 1, + STATE(903), 1, sym_reference, - ACTIONS(132), 2, + ACTIONS(229), 2, sym__node_path, sym__node_or_property, - [29070] = 12, + [29070] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, @@ -29415,95 +29452,95 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(19), 1, anon_sym_AMP_LBRACE, ACTIONS(1410), 1, - anon_sym_SLASHmemreserve_SLASH, - ACTIONS(1412), 1, sym__label_name, - ACTIONS(1414), 1, - sym__node_path, - ACTIONS(1416), 1, - sym__node_or_property, - STATE(710), 1, + STATE(292), 1, + sym_node, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(729), 1, + STATE(715), 1, aux_sym_memory_reservation_repeat1, - STATE(735), 1, + STATE(742), 1, sym__label, - STATE(1079), 1, + STATE(918), 1, sym_reference, - [29107] = 11, + ACTIONS(108), 2, + sym__node_path, + sym__node_or_property, + [29105] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, anon_sym_AMP, ACTIONS(19), 1, anon_sym_AMP_LBRACE, - ACTIONS(1418), 1, + ACTIONS(1412), 1, sym__label_name, - STATE(364), 1, + STATE(547), 1, sym_node, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(718), 1, + STATE(717), 1, aux_sym_memory_reservation_repeat1, - STATE(739), 1, + STATE(742), 1, sym__label, - STATE(899), 1, + STATE(907), 1, sym_reference, - ACTIONS(229), 2, + ACTIONS(401), 2, sym__node_path, sym__node_or_property, - [29142] = 11, + [29140] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, anon_sym_AMP, ACTIONS(19), 1, anon_sym_AMP_LBRACE, - ACTIONS(1420), 1, + ACTIONS(1414), 1, sym__label_name, - STATE(561), 1, + STATE(606), 1, sym_node, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(716), 1, + STATE(714), 1, aux_sym_memory_reservation_repeat1, - STATE(739), 1, + STATE(742), 1, sym__label, - STATE(904), 1, + STATE(929), 1, sym_reference, ACTIONS(363), 2, sym__node_path, sym__node_or_property, - [29177] = 11, + [29175] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, anon_sym_AMP, ACTIONS(19), 1, anon_sym_AMP_LBRACE, - ACTIONS(1422), 1, + ACTIONS(1416), 1, + anon_sym_SLASHmemreserve_SLASH, + ACTIONS(1418), 1, sym__label_name, - STATE(337), 1, - sym_node, - STATE(710), 1, + ACTIONS(1420), 1, + sym__node_path, + ACTIONS(1422), 1, + sym__node_or_property, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(714), 1, + STATE(726), 1, aux_sym_memory_reservation_repeat1, - STATE(739), 1, + STATE(734), 1, sym__label, - STATE(892), 1, + STATE(1194), 1, sym_reference, - ACTIONS(108), 2, - sym__node_path, - sym__node_or_property, [29212] = 11, ACTIONS(3), 1, sym_comment, @@ -29513,22 +29550,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LBRACE, ACTIONS(1424), 1, sym__label_name, - STATE(166), 1, + STATE(254), 1, sym_node, - STATE(709), 1, - aux_sym_memory_reservation_repeat1, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(739), 1, + STATE(716), 1, + aux_sym_memory_reservation_repeat1, + STATE(742), 1, sym__label, - STATE(943), 1, + STATE(893), 1, sym_reference, - ACTIONS(15), 2, + ACTIONS(132), 2, sym__node_path, sym__node_or_property, - [29247] = 11, + [29247] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, @@ -29536,47 +29573,47 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(19), 1, anon_sym_AMP_LBRACE, ACTIONS(1426), 1, + anon_sym_SLASHmemreserve_SLASH, + ACTIONS(1428), 1, sym__label_name, - STATE(602), 1, - sym_node, - STATE(710), 1, + ACTIONS(1430), 1, + sym__node_path, + ACTIONS(1432), 1, + sym__node_or_property, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(719), 1, + STATE(726), 1, aux_sym_memory_reservation_repeat1, - STATE(739), 1, + STATE(734), 1, sym__label, - STATE(912), 1, + STATE(1155), 1, sym_reference, - ACTIONS(395), 2, - sym__node_path, - sym__node_or_property, - [29282] = 12, + [29284] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, anon_sym_AMP, ACTIONS(19), 1, anon_sym_AMP_LBRACE, - ACTIONS(1428), 1, - anon_sym_SLASHmemreserve_SLASH, - ACTIONS(1430), 1, - sym__label_name, - ACTIONS(1432), 1, - sym__node_path, ACTIONS(1434), 1, - sym__node_or_property, - STATE(710), 1, + sym__label_name, + STATE(160), 1, + sym_node, + STATE(707), 1, sym__label_reference, + STATE(709), 1, + aux_sym_memory_reservation_repeat1, STATE(711), 1, sym__node_reference, - STATE(729), 1, - aux_sym_memory_reservation_repeat1, - STATE(735), 1, + STATE(742), 1, sym__label, - STATE(1191), 1, + STATE(910), 1, sym_reference, + ACTIONS(15), 2, + sym__node_path, + sym__node_or_property, [29319] = 3, ACTIONS(3), 1, sym_comment, @@ -29592,56 +29629,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym_integer_literal, sym_identifier, - [29337] = 9, + [29337] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, anon_sym_AMP, ACTIONS(19), 1, anon_sym_AMP_LBRACE, - ACTIONS(1326), 1, - anon_sym_LPAREN, - ACTIONS(1332), 1, - sym_identifier, + ACTIONS(1321), 1, + sym__node_path, ACTIONS(1440), 1, - sym_integer_literal, - STATE(710), 1, + sym__label_name, + ACTIONS(1442), 1, + sym__node_or_property, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(1127), 3, + STATE(732), 1, + aux_sym_memory_reservation_repeat1, + STATE(742), 1, + sym__label, + STATE(1216), 1, sym_reference, - sym__integer_cell_items, - sym_call_expression, - [29367] = 11, + [29371] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, anon_sym_AMP, ACTIONS(19), 1, anon_sym_AMP_LBRACE, - ACTIONS(1414), 1, + ACTIONS(1430), 1, sym__node_path, - ACTIONS(1416), 1, + ACTIONS(1432), 1, sym__node_or_property, - ACTIONS(1442), 1, + ACTIONS(1444), 1, sym__label_name, - STATE(710), 1, + STATE(707), 1, + sym__label_reference, + STATE(711), 1, + sym__node_reference, + STATE(732), 1, + aux_sym_memory_reservation_repeat1, + STATE(742), 1, + sym__label, + STATE(1155), 1, + sym_reference, + [29405] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17), 1, + anon_sym_AMP, + ACTIONS(19), 1, + anon_sym_AMP_LBRACE, + ACTIONS(1355), 1, + anon_sym_LPAREN, + ACTIONS(1361), 1, + sym_identifier, + ACTIONS(1446), 1, + sym_integer_literal, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(732), 1, - aux_sym_memory_reservation_repeat1, - STATE(739), 1, - sym__label, - STATE(1079), 1, + STATE(1080), 3, sym_reference, - [29401] = 3, + sym__integer_cell_items, + sym_call_expression, + [29435] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1446), 1, + ACTIONS(1450), 1, anon_sym_AMP, - ACTIONS(1444), 9, + ACTIONS(1448), 9, anon_sym_SEMI, anon_sym_AMP_LBRACE, anon_sym_LBRACE, @@ -29651,12 +29711,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym_integer_literal, sym_identifier, - [29419] = 3, + [29453] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1450), 1, + ACTIONS(1454), 1, anon_sym_AMP, - ACTIONS(1448), 9, + ACTIONS(1452), 9, anon_sym_SEMI, anon_sym_AMP_LBRACE, anon_sym_LBRACE, @@ -29666,349 +29726,323 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym_integer_literal, sym_identifier, - [29437] = 9, + [29471] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, anon_sym_AMP, ACTIONS(19), 1, anon_sym_AMP_LBRACE, - ACTIONS(1326), 1, + ACTIONS(1355), 1, anon_sym_LPAREN, - ACTIONS(1332), 1, + ACTIONS(1361), 1, sym_identifier, - ACTIONS(1452), 1, + ACTIONS(1456), 1, sym_integer_literal, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(1084), 3, + STATE(1038), 3, sym_reference, sym__integer_cell_items, sym_call_expression, - [29467] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1456), 1, - anon_sym_AMP, - ACTIONS(1454), 9, - anon_sym_SEMI, - anon_sym_AMP_LBRACE, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT, - sym_integer_literal, - sym_identifier, - [29485] = 11, + [29501] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, anon_sym_AMP, ACTIONS(19), 1, anon_sym_AMP_LBRACE, - ACTIONS(1432), 1, + ACTIONS(1373), 1, sym__node_path, - ACTIONS(1434), 1, - sym__node_or_property, ACTIONS(1458), 1, sym__label_name, - STATE(710), 1, + ACTIONS(1460), 1, + sym__node_or_property, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, STATE(732), 1, aux_sym_memory_reservation_repeat1, - STATE(739), 1, + STATE(742), 1, sym__label, - STATE(1191), 1, + STATE(1183), 1, sym_reference, - [29519] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1462), 1, - anon_sym_AMP, - ACTIONS(1460), 9, - anon_sym_SEMI, - anon_sym_AMP_LBRACE, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT, - sym_integer_literal, - sym_identifier, - [29537] = 11, + [29535] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, anon_sym_AMP, ACTIONS(19), 1, anon_sym_AMP_LBRACE, - ACTIONS(1400), 1, + ACTIONS(1420), 1, sym__node_path, - ACTIONS(1464), 1, - sym__label_name, - ACTIONS(1466), 1, + ACTIONS(1422), 1, sym__node_or_property, - STATE(710), 1, + ACTIONS(1462), 1, + sym__label_name, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, STATE(732), 1, aux_sym_memory_reservation_repeat1, - STATE(739), 1, + STATE(742), 1, sym__label, - STATE(1180), 1, + STATE(1194), 1, sym_reference, - [29571] = 11, + [29569] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, anon_sym_AMP, ACTIONS(19), 1, anon_sym_AMP_LBRACE, - ACTIONS(1338), 1, + ACTIONS(1335), 1, sym__node_path, - ACTIONS(1468), 1, + ACTIONS(1464), 1, sym__label_name, - ACTIONS(1470), 1, + ACTIONS(1466), 1, sym__node_or_property, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, STATE(732), 1, aux_sym_memory_reservation_repeat1, - STATE(739), 1, + STATE(742), 1, sym__label, - STATE(1202), 1, + STATE(1205), 1, sym_reference, - [29605] = 11, + [29603] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, anon_sym_AMP, ACTIONS(19), 1, anon_sym_AMP_LBRACE, - ACTIONS(1366), 1, + ACTIONS(1347), 1, sym__node_path, - ACTIONS(1472), 1, + ACTIONS(1468), 1, sym__label_name, - ACTIONS(1474), 1, + ACTIONS(1470), 1, sym__node_or_property, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, STATE(732), 1, aux_sym_memory_reservation_repeat1, - STATE(739), 1, + STATE(742), 1, sym__label, - STATE(1213), 1, + STATE(1226), 1, sym_reference, - [29639] = 11, + [29637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17), 1, + ACTIONS(1474), 1, anon_sym_AMP, - ACTIONS(19), 1, + ACTIONS(1472), 9, + anon_sym_SEMI, anon_sym_AMP_LBRACE, - ACTIONS(1376), 1, - sym__node_path, - ACTIONS(1476), 1, - sym__label_name, - ACTIONS(1478), 1, - sym__node_or_property, - STATE(710), 1, - sym__label_reference, - STATE(711), 1, - sym__node_reference, - STATE(732), 1, - aux_sym_memory_reservation_repeat1, - STATE(739), 1, - sym__label, - STATE(1223), 1, - sym_reference, - [29673] = 6, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT, + sym_integer_literal, + sym_identifier, + [29655] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1480), 1, + ACTIONS(1476), 1, sym__label_name, - STATE(720), 1, + STATE(719), 1, aux_sym_memory_reservation_repeat1, - STATE(730), 1, + STATE(731), 1, sym__label, - ACTIONS(1485), 2, + ACTIONS(1481), 2, sym__property_with_hash, anon_sym_AMP_LBRACE, - ACTIONS(1483), 4, + ACTIONS(1479), 4, sym__node_path, sym__node_or_property, sym__property_starts_with_number, anon_sym_AMP, - [29696] = 5, + [29678] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(729), 1, anon_sym_LPAREN, - ACTIONS(1487), 1, + ACTIONS(1483), 1, anon_sym_AMP, - STATE(151), 1, + STATE(153), 1, sym_argument_list, - ACTIONS(1489), 6, + ACTIONS(1485), 6, anon_sym_AMP_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_GT, sym_integer_literal, sym_identifier, - [29717] = 7, + [29699] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, anon_sym_AMP, ACTIONS(19), 1, anon_sym_AMP_LBRACE, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(1136), 1, + STATE(1141), 1, sym_reference, - ACTIONS(1491), 3, + ACTIONS(1487), 3, sym__label_name, sym__node_path, sym__node_or_property, - [29741] = 7, + [29723] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, anon_sym_AMP, ACTIONS(19), 1, anon_sym_AMP_LBRACE, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(972), 1, + STATE(1004), 1, sym_reference, - ACTIONS(1493), 3, + ACTIONS(1489), 3, sym__label_name, sym__node_path, sym__node_or_property, - [29765] = 7, + [29747] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, anon_sym_AMP, ACTIONS(19), 1, anon_sym_AMP_LBRACE, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(1141), 1, + STATE(1063), 1, sym_reference, - ACTIONS(1495), 3, + ACTIONS(1491), 3, sym__label_name, sym__node_path, sym__node_or_property, - [29789] = 7, + [29771] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, anon_sym_AMP, ACTIONS(19), 1, anon_sym_AMP_LBRACE, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(1152), 1, + STATE(1085), 1, sym_reference, - ACTIONS(1497), 3, + ACTIONS(1493), 3, sym__label_name, sym__node_path, sym__node_or_property, - [29813] = 7, + [29795] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, anon_sym_AMP, ACTIONS(19), 1, anon_sym_AMP_LBRACE, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(960), 1, + STATE(975), 1, sym_reference, - ACTIONS(1499), 3, + ACTIONS(1495), 3, sym__label_name, sym__node_path, sym__node_or_property, - [29837] = 3, + [29819] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1501), 1, - anon_sym_AMP, - ACTIONS(1503), 7, + ACTIONS(1481), 1, anon_sym_AMP_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT, - sym_integer_literal, - sym_identifier, - [29853] = 7, + ACTIONS(1497), 1, + sym__label_name, + STATE(726), 1, + aux_sym_memory_reservation_repeat1, + STATE(734), 1, + sym__label, + ACTIONS(1479), 4, + anon_sym_SLASHmemreserve_SLASH, + sym__node_path, + sym__node_or_property, + anon_sym_AMP, + [29841] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, anon_sym_AMP, ACTIONS(19), 1, anon_sym_AMP_LBRACE, - STATE(710), 1, + STATE(707), 1, sym__label_reference, STATE(711), 1, sym__node_reference, - STATE(1001), 1, + STATE(1083), 1, sym_reference, - ACTIONS(1505), 3, + ACTIONS(1500), 3, sym__label_name, sym__node_path, sym__node_or_property, - [29877] = 6, + [29865] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1485), 1, - anon_sym_AMP_LBRACE, - ACTIONS(1507), 1, - sym__label_name, - STATE(729), 1, - aux_sym_memory_reservation_repeat1, - STATE(735), 1, - sym__label, - ACTIONS(1483), 4, - anon_sym_SLASHmemreserve_SLASH, - sym__node_path, - sym__node_or_property, + ACTIONS(1502), 1, anon_sym_AMP, - [29899] = 3, + ACTIONS(1504), 7, + anon_sym_AMP_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT, + sym_integer_literal, + sym_identifier, + [29881] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1512), 2, + ACTIONS(1508), 2, sym__property_with_hash, anon_sym_AMP_LBRACE, - ACTIONS(1510), 5, + ACTIONS(1506), 5, sym__label_name, sym__node_path, sym__node_or_property, sym__property_starts_with_number, anon_sym_AMP, - [29914] = 3, + [29896] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1512), 1, + anon_sym_AMP, + ACTIONS(1510), 6, + anon_sym_SEMI, + anon_sym_AMP_LBRACE, + anon_sym_SLASHincbin_SLASH, + anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_LBRACK, + [29911] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1516), 2, @@ -30020,3430 +30054,3455 @@ static const uint16_t ts_small_parse_table[] = { sym__node_or_property, sym__property_starts_with_number, anon_sym_AMP, - [29929] = 6, + [29926] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1485), 1, + ACTIONS(1481), 1, anon_sym_AMP_LBRACE, ACTIONS(1518), 1, sym__label_name, STATE(732), 1, aux_sym_memory_reservation_repeat1, - STATE(739), 1, + STATE(742), 1, sym__label, - ACTIONS(1483), 3, + ACTIONS(1479), 3, sym__node_path, sym__node_or_property, anon_sym_AMP, - [29950] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1523), 1, - anon_sym_AMP, - ACTIONS(1521), 6, - anon_sym_SEMI, - anon_sym_AMP_LBRACE, - anon_sym_SLASHincbin_SLASH, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_LBRACK, - [29965] = 3, + [29947] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1516), 1, + ACTIONS(1508), 1, anon_sym_AMP_LBRACE, - ACTIONS(1514), 5, + ACTIONS(1506), 5, anon_sym_SLASHmemreserve_SLASH, sym__label_name, sym__node_path, sym__node_or_property, anon_sym_AMP, - [29979] = 3, + [29961] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1512), 1, + ACTIONS(1516), 1, anon_sym_AMP_LBRACE, - ACTIONS(1510), 5, + ACTIONS(1514), 5, anon_sym_SLASHmemreserve_SLASH, sym__label_name, sym__node_path, sym__node_or_property, anon_sym_AMP, - [29993] = 6, + [29975] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1525), 1, + ACTIONS(1521), 1, anon_sym_COLON, - ACTIONS(1527), 1, + ACTIONS(1523), 1, anon_sym_SEMI, - ACTIONS(1529), 1, + ACTIONS(1525), 1, anon_sym_AT, - ACTIONS(1531), 1, + ACTIONS(1527), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(1529), 1, anon_sym_EQ, - [30012] = 6, + [29994] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1525), 1, + ACTIONS(1521), 1, anon_sym_COLON, - ACTIONS(1535), 1, + ACTIONS(1531), 1, anon_sym_SEMI, - ACTIONS(1537), 1, + ACTIONS(1533), 1, anon_sym_AT, - ACTIONS(1539), 1, + ACTIONS(1535), 1, anon_sym_LBRACE, - ACTIONS(1541), 1, + ACTIONS(1537), 1, anon_sym_EQ, - [30031] = 6, + [30013] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1525), 1, + ACTIONS(1521), 1, anon_sym_COLON, - ACTIONS(1543), 1, + ACTIONS(1539), 1, anon_sym_SEMI, - ACTIONS(1545), 1, + ACTIONS(1541), 1, anon_sym_AT, - ACTIONS(1547), 1, + ACTIONS(1543), 1, anon_sym_LBRACE, - ACTIONS(1549), 1, + ACTIONS(1545), 1, anon_sym_EQ, - [30050] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1512), 1, - anon_sym_AMP_LBRACE, - ACTIONS(1510), 4, - sym__label_name, - sym__node_path, - sym__node_or_property, - anon_sym_AMP, - [30063] = 6, + [30032] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1525), 1, + ACTIONS(1521), 1, anon_sym_COLON, - ACTIONS(1551), 1, + ACTIONS(1547), 1, anon_sym_SEMI, - ACTIONS(1553), 1, + ACTIONS(1549), 1, anon_sym_AT, - ACTIONS(1555), 1, + ACTIONS(1551), 1, anon_sym_LBRACE, - ACTIONS(1557), 1, + ACTIONS(1553), 1, anon_sym_EQ, - [30082] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1516), 1, - anon_sym_AMP_LBRACE, - ACTIONS(1514), 4, - sym__label_name, - sym__node_path, - sym__node_or_property, - anon_sym_AMP, - [30095] = 6, + [30051] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1525), 1, + ACTIONS(1521), 1, anon_sym_COLON, - ACTIONS(1559), 1, + ACTIONS(1555), 1, anon_sym_SEMI, - ACTIONS(1561), 1, + ACTIONS(1557), 1, anon_sym_AT, - ACTIONS(1563), 1, + ACTIONS(1559), 1, anon_sym_LBRACE, - ACTIONS(1565), 1, + ACTIONS(1561), 1, anon_sym_EQ, - [30114] = 6, + [30070] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1525), 1, + ACTIONS(1521), 1, anon_sym_COLON, - ACTIONS(1567), 1, + ACTIONS(1563), 1, anon_sym_SEMI, - ACTIONS(1569), 1, + ACTIONS(1565), 1, anon_sym_AT, - ACTIONS(1571), 1, + ACTIONS(1567), 1, anon_sym_LBRACE, - ACTIONS(1573), 1, + ACTIONS(1569), 1, anon_sym_EQ, - [30133] = 6, + [30089] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1525), 1, + ACTIONS(1521), 1, anon_sym_COLON, - ACTIONS(1575), 1, + ACTIONS(1571), 1, anon_sym_SEMI, - ACTIONS(1577), 1, + ACTIONS(1573), 1, anon_sym_AT, - ACTIONS(1579), 1, + ACTIONS(1575), 1, anon_sym_LBRACE, - ACTIONS(1581), 1, + ACTIONS(1577), 1, anon_sym_EQ, - [30152] = 6, + [30108] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1525), 1, + ACTIONS(1516), 1, + anon_sym_AMP_LBRACE, + ACTIONS(1514), 4, + sym__label_name, + sym__node_path, + sym__node_or_property, + anon_sym_AMP, + [30121] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1521), 1, anon_sym_COLON, - ACTIONS(1583), 1, + ACTIONS(1579), 1, anon_sym_SEMI, - ACTIONS(1585), 1, + ACTIONS(1581), 1, anon_sym_AT, - ACTIONS(1587), 1, + ACTIONS(1583), 1, anon_sym_LBRACE, - ACTIONS(1589), 1, + ACTIONS(1585), 1, anon_sym_EQ, - [30171] = 5, + [30140] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1591), 1, - anon_sym_SEMI, - ACTIONS(1593), 1, - anon_sym_AT, - ACTIONS(1595), 1, - anon_sym_LBRACE, - ACTIONS(1597), 1, - anon_sym_EQ, - [30187] = 5, + ACTIONS(1508), 1, + anon_sym_AMP_LBRACE, + ACTIONS(1506), 4, + sym__label_name, + sym__node_path, + sym__node_or_property, + anon_sym_AMP, + [30153] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1589), 1, + sym__property_with_hash, + ACTIONS(1587), 3, + sym__label_name, + sym__node_or_property, + sym__property_starts_with_number, + [30165] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1599), 1, + ACTIONS(1547), 1, anon_sym_SEMI, - ACTIONS(1601), 1, + ACTIONS(1549), 1, anon_sym_AT, - ACTIONS(1603), 1, + ACTIONS(1551), 1, anon_sym_LBRACE, - ACTIONS(1605), 1, + ACTIONS(1553), 1, anon_sym_EQ, - [30203] = 5, - ACTIONS(979), 1, + [30181] = 5, + ACTIONS(941), 1, sym_comment, - ACTIONS(1607), 1, + ACTIONS(1591), 1, aux_sym_preproc_include_token2, - ACTIONS(1609), 1, + ACTIONS(1593), 1, anon_sym_LPAREN2, - ACTIONS(1611), 1, + ACTIONS(1595), 1, sym_preproc_arg, - STATE(906), 1, + STATE(897), 1, sym_preproc_params, - [30219] = 5, + [30197] = 5, + ACTIONS(941), 1, + sym_comment, + ACTIONS(1597), 1, + anon_sym_DQUOTE, + ACTIONS(1599), 1, + aux_sym_string_literal_token1, + ACTIONS(1601), 1, + sym_escape_sequence, + STATE(762), 1, + aux_sym_string_literal_repeat1, + [30213] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1543), 1, + ACTIONS(1539), 1, anon_sym_SEMI, - ACTIONS(1545), 1, + ACTIONS(1541), 1, anon_sym_AT, - ACTIONS(1547), 1, + ACTIONS(1543), 1, anon_sym_LBRACE, - ACTIONS(1549), 1, + ACTIONS(1545), 1, anon_sym_EQ, - [30235] = 5, - ACTIONS(979), 1, + [30229] = 5, + ACTIONS(3), 1, sym_comment, + ACTIONS(1603), 1, + anon_sym_SEMI, + ACTIONS(1605), 1, + anon_sym_AT, + ACTIONS(1607), 1, + anon_sym_LBRACE, ACTIONS(1609), 1, - anon_sym_LPAREN2, - ACTIONS(1613), 1, - aux_sym_preproc_include_token2, - ACTIONS(1615), 1, - sym_preproc_arg, - STATE(949), 1, - sym_preproc_params, - [30251] = 3, + anon_sym_EQ, + [30245] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1619), 1, - sym__property_with_hash, - ACTIONS(1617), 3, - sym__label_name, - sym__node_or_property, - sym__property_starts_with_number, - [30263] = 4, + ACTIONS(1611), 1, + anon_sym_SLASH, + ACTIONS(1614), 1, + anon_sym_RBRACE, + STATE(751), 2, + sym_path_node, + aux_sym_path_repeat1, + [30259] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1621), 1, + ACTIONS(1616), 1, anon_sym_DQUOTE, - STATE(1002), 1, + STATE(1110), 1, sym_string_literal, - ACTIONS(1623), 2, + ACTIONS(1618), 2, sym_system_lib_string, sym_identifier, - [30277] = 5, - ACTIONS(979), 1, - sym_comment, - ACTIONS(1625), 1, - anon_sym_DQUOTE, - ACTIONS(1627), 1, - aux_sym_string_literal_token1, - ACTIONS(1630), 1, - sym_escape_sequence, - STATE(753), 1, - aux_sym_string_literal_repeat1, - [30293] = 5, - ACTIONS(979), 1, - sym_comment, - ACTIONS(1609), 1, - anon_sym_LPAREN2, - ACTIONS(1633), 1, - aux_sym_preproc_include_token2, - ACTIONS(1635), 1, - sym_preproc_arg, - STATE(916), 1, - sym_preproc_params, - [30309] = 5, + [30273] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1637), 1, + ACTIONS(1620), 1, anon_sym_SEMI, - ACTIONS(1639), 1, + ACTIONS(1622), 1, anon_sym_AT, - ACTIONS(1641), 1, + ACTIONS(1624), 1, anon_sym_LBRACE, - ACTIONS(1643), 1, + ACTIONS(1626), 1, anon_sym_EQ, - [30325] = 5, - ACTIONS(979), 1, + [30289] = 5, + ACTIONS(941), 1, sym_comment, - ACTIONS(1645), 1, - anon_sym_DQUOTE, - ACTIONS(1647), 1, - aux_sym_string_literal_token1, - ACTIONS(1649), 1, - sym_escape_sequence, - STATE(761), 1, - aux_sym_string_literal_repeat1, - [30341] = 5, - ACTIONS(979), 1, + ACTIONS(1593), 1, + anon_sym_LPAREN2, + ACTIONS(1628), 1, + aux_sym_preproc_include_token2, + ACTIONS(1630), 1, + sym_preproc_arg, + STATE(906), 1, + sym_preproc_params, + [30305] = 5, + ACTIONS(941), 1, sym_comment, - ACTIONS(1609), 1, + ACTIONS(1593), 1, anon_sym_LPAREN2, - ACTIONS(1651), 1, + ACTIONS(1632), 1, aux_sym_preproc_include_token2, - ACTIONS(1653), 1, + ACTIONS(1634), 1, sym_preproc_arg, - STATE(894), 1, + STATE(909), 1, sym_preproc_params, - [30357] = 4, + [30321] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1621), 1, + ACTIONS(1616), 1, anon_sym_DQUOTE, - STATE(965), 1, + STATE(1147), 1, sym_string_literal, - ACTIONS(1655), 2, + ACTIONS(1636), 2, sym_system_lib_string, sym_identifier, - [30371] = 5, + [30335] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1551), 1, - anon_sym_SEMI, - ACTIONS(1553), 1, - anon_sym_AT, - ACTIONS(1555), 1, - anon_sym_LBRACE, - ACTIONS(1557), 1, - anon_sym_EQ, - [30387] = 5, + ACTIONS(1640), 1, + sym__property_with_hash, + ACTIONS(1638), 3, + sym__label_name, + sym__node_or_property, + sym__property_starts_with_number, + [30347] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1567), 1, + ACTIONS(1642), 1, + anon_sym_SLASH, + ACTIONS(1644), 1, + anon_sym_RBRACE, + STATE(751), 2, + sym_path_node, + aux_sym_path_repeat1, + [30361] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1646), 1, anon_sym_SEMI, - ACTIONS(1569), 1, + ACTIONS(1648), 1, anon_sym_AT, - ACTIONS(1571), 1, + ACTIONS(1650), 1, anon_sym_LBRACE, - ACTIONS(1573), 1, + ACTIONS(1652), 1, anon_sym_EQ, - [30403] = 5, - ACTIONS(979), 1, + [30377] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(1657), 1, + ACTIONS(1616), 1, anon_sym_DQUOTE, - ACTIONS(1659), 1, - aux_sym_string_literal_token1, - ACTIONS(1661), 1, - sym_escape_sequence, - STATE(753), 1, - aux_sym_string_literal_repeat1, - [30419] = 3, + STATE(1086), 1, + sym_string_literal, + ACTIONS(1654), 2, + sym_system_lib_string, + sym_identifier, + [30391] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1665), 1, + ACTIONS(1658), 1, sym__property_with_hash, - ACTIONS(1663), 3, + ACTIONS(1656), 3, sym__label_name, sym__node_or_property, sym__property_starts_with_number, - [30431] = 4, - ACTIONS(3), 1, + [30403] = 5, + ACTIONS(941), 1, sym_comment, - ACTIONS(1621), 1, + ACTIONS(1660), 1, anon_sym_DQUOTE, - STATE(1166), 1, - sym_string_literal, - ACTIONS(1667), 2, - sym_system_lib_string, - sym_identifier, - [30445] = 5, - ACTIONS(979), 1, + ACTIONS(1662), 1, + aux_sym_string_literal_token1, + ACTIONS(1665), 1, + sym_escape_sequence, + STATE(762), 1, + aux_sym_string_literal_repeat1, + [30419] = 5, + ACTIONS(941), 1, sym_comment, - ACTIONS(1669), 1, + ACTIONS(1668), 1, anon_sym_DQUOTE, - ACTIONS(1671), 1, + ACTIONS(1670), 1, aux_sym_string_literal_token1, - ACTIONS(1673), 1, + ACTIONS(1672), 1, sym_escape_sequence, - STATE(776), 1, + STATE(777), 1, aux_sym_string_literal_repeat1, - [30461] = 4, + [30435] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1621), 1, + ACTIONS(1616), 1, anon_sym_DQUOTE, - STATE(1201), 1, + STATE(1203), 1, sym_string_literal, - ACTIONS(1675), 2, + ACTIONS(1674), 2, sym_system_lib_string, sym_identifier, - [30475] = 5, + [30449] = 5, + ACTIONS(941), 1, + sym_comment, + ACTIONS(1676), 1, + anon_sym_DQUOTE, + ACTIONS(1678), 1, + aux_sym_string_literal_token1, + ACTIONS(1680), 1, + sym_escape_sequence, + STATE(769), 1, + aux_sym_string_literal_repeat1, + [30465] = 5, + ACTIONS(941), 1, + sym_comment, + ACTIONS(1593), 1, + anon_sym_LPAREN2, + ACTIONS(1682), 1, + aux_sym_preproc_include_token2, + ACTIONS(1684), 1, + sym_preproc_arg, + STATE(922), 1, + sym_preproc_params, + [30481] = 5, + ACTIONS(941), 1, + sym_comment, + ACTIONS(1593), 1, + anon_sym_LPAREN2, + ACTIONS(1686), 1, + aux_sym_preproc_include_token2, + ACTIONS(1688), 1, + sym_preproc_arg, + STATE(955), 1, + sym_preproc_params, + [30497] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1677), 1, + ACTIONS(1531), 1, anon_sym_SEMI, - ACTIONS(1679), 1, + ACTIONS(1533), 1, anon_sym_AT, - ACTIONS(1681), 1, + ACTIONS(1535), 1, anon_sym_LBRACE, - ACTIONS(1683), 1, + ACTIONS(1537), 1, anon_sym_EQ, - [30491] = 5, - ACTIONS(979), 1, + [30513] = 5, + ACTIONS(941), 1, sym_comment, - ACTIONS(1609), 1, - anon_sym_LPAREN2, - ACTIONS(1685), 1, - aux_sym_preproc_include_token2, - ACTIONS(1687), 1, - sym_preproc_arg, - STATE(901), 1, - sym_preproc_params, - [30507] = 3, + ACTIONS(1599), 1, + aux_sym_string_literal_token1, + ACTIONS(1601), 1, + sym_escape_sequence, + ACTIONS(1690), 1, + anon_sym_DQUOTE, + STATE(762), 1, + aux_sym_string_literal_repeat1, + [30529] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1691), 1, - sym__property_with_hash, - ACTIONS(1689), 3, - sym__label_name, - sym__node_or_property, - sym__property_starts_with_number, - [30519] = 4, + ACTIONS(1692), 1, + anon_sym_SEMI, + ACTIONS(1694), 1, + anon_sym_AT, + ACTIONS(1696), 1, + anon_sym_LBRACE, + ACTIONS(1698), 1, + anon_sym_EQ, + [30545] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1621), 1, + ACTIONS(1616), 1, anon_sym_DQUOTE, - STATE(1137), 1, + STATE(976), 1, sym_string_literal, - ACTIONS(1693), 2, + ACTIONS(1700), 2, sym_system_lib_string, sym_identifier, - [30533] = 3, + [30559] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1697), 1, - sym__property_with_hash, - ACTIONS(1695), 3, - sym__label_name, - sym__node_or_property, - sym__property_starts_with_number, - [30545] = 5, - ACTIONS(979), 1, - sym_comment, - ACTIONS(1609), 1, - anon_sym_LPAREN2, - ACTIONS(1699), 1, - aux_sym_preproc_include_token2, - ACTIONS(1701), 1, - sym_preproc_arg, - STATE(888), 1, - sym_preproc_params, - [30561] = 4, + ACTIONS(1642), 1, + anon_sym_SLASH, + STATE(1189), 1, + sym_path, + STATE(758), 2, + sym_path_node, + aux_sym_path_repeat1, + [30573] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1621), 1, + ACTIONS(1616), 1, anon_sym_DQUOTE, - STATE(973), 1, + STATE(1005), 1, sym_string_literal, - ACTIONS(1703), 2, + ACTIONS(1702), 2, sym_system_lib_string, sym_identifier, - [30575] = 5, - ACTIONS(979), 1, + [30587] = 5, + ACTIONS(941), 1, sym_comment, - ACTIONS(1705), 1, + ACTIONS(1704), 1, anon_sym_DQUOTE, - ACTIONS(1707), 1, - aux_sym_string_literal_token1, - ACTIONS(1709), 1, - sym_escape_sequence, - STATE(774), 1, - aux_sym_string_literal_repeat1, - [30591] = 5, - ACTIONS(979), 1, - sym_comment, - ACTIONS(1659), 1, + ACTIONS(1706), 1, aux_sym_string_literal_token1, - ACTIONS(1661), 1, + ACTIONS(1708), 1, sym_escape_sequence, - ACTIONS(1711), 1, - anon_sym_DQUOTE, - STATE(753), 1, + STATE(748), 1, aux_sym_string_literal_repeat1, - [30607] = 5, + [30603] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1575), 1, + ACTIONS(1571), 1, anon_sym_SEMI, - ACTIONS(1577), 1, + ACTIONS(1573), 1, anon_sym_AT, - ACTIONS(1579), 1, + ACTIONS(1575), 1, anon_sym_LBRACE, - ACTIONS(1581), 1, + ACTIONS(1577), 1, anon_sym_EQ, - [30623] = 5, - ACTIONS(979), 1, + [30619] = 5, + ACTIONS(941), 1, + sym_comment, + ACTIONS(1593), 1, + anon_sym_LPAREN2, + ACTIONS(1710), 1, + aux_sym_preproc_include_token2, + ACTIONS(1712), 1, + sym_preproc_arg, + STATE(944), 1, + sym_preproc_params, + [30635] = 5, + ACTIONS(941), 1, sym_comment, - ACTIONS(1659), 1, + ACTIONS(1599), 1, aux_sym_string_literal_token1, - ACTIONS(1661), 1, + ACTIONS(1601), 1, sym_escape_sequence, - ACTIONS(1713), 1, + ACTIONS(1714), 1, anon_sym_DQUOTE, - STATE(753), 1, + STATE(762), 1, aux_sym_string_literal_repeat1, - [30639] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1715), 1, - anon_sym_SEMI, - ACTIONS(1717), 1, - anon_sym_COMMA, - STATE(805), 1, - aux_sym_property_repeat1, - [30652] = 4, + [30651] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, - anon_sym_COMMA, - ACTIONS(1719), 1, - anon_sym_SEMI, - STATE(784), 1, - aux_sym_property_repeat1, - [30665] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1717), 1, - anon_sym_COMMA, - ACTIONS(1721), 1, - anon_sym_SEMI, - STATE(817), 1, - aux_sym_property_repeat1, - [30678] = 4, + ACTIONS(1718), 1, + sym__property_with_hash, + ACTIONS(1716), 3, + sym__label_name, + sym__node_or_property, + sym__property_starts_with_number, + [30663] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, - anon_sym_COMMA, - ACTIONS(1723), 1, + ACTIONS(1720), 1, anon_sym_SEMI, - STATE(785), 1, - aux_sym_property_repeat1, - [30691] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, - ACTIONS(1725), 1, - anon_sym_SEMI, - STATE(817), 1, + STATE(835), 1, aux_sym_property_repeat1, - [30704] = 4, + [30676] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, - ACTIONS(1727), 1, + ACTIONS(1724), 1, anon_sym_SEMI, - STATE(817), 1, + STATE(845), 1, aux_sym_property_repeat1, - [30717] = 4, + [30689] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, - ACTIONS(1729), 1, + ACTIONS(1726), 1, anon_sym_SEMI, - STATE(817), 1, + STATE(788), 1, aux_sym_property_repeat1, - [30730] = 4, + [30702] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, - ACTIONS(1731), 1, + ACTIONS(1728), 1, anon_sym_SEMI, - STATE(817), 1, + STATE(845), 1, aux_sym_property_repeat1, - [30743] = 4, + [30715] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, - ACTIONS(1733), 1, + ACTIONS(1730), 1, anon_sym_SEMI, - STATE(817), 1, + STATE(789), 1, aux_sym_property_repeat1, - [30756] = 4, + [30728] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, - ACTIONS(1735), 1, + ACTIONS(1732), 1, anon_sym_SEMI, - STATE(832), 1, + STATE(845), 1, aux_sym_property_repeat1, - [30769] = 4, + [30741] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, - ACTIONS(1737), 1, + ACTIONS(1734), 1, anon_sym_SEMI, - STATE(791), 1, + STATE(790), 1, aux_sym_property_repeat1, - [30782] = 4, + [30754] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, - ACTIONS(1739), 1, + ACTIONS(1736), 1, anon_sym_SEMI, - STATE(817), 1, + STATE(845), 1, aux_sym_property_repeat1, - [30795] = 4, + [30767] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, - ACTIONS(1741), 1, + ACTIONS(1738), 1, anon_sym_SEMI, - STATE(867), 1, + STATE(845), 1, aux_sym_property_repeat1, - [30808] = 4, + [30780] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, - ACTIONS(1743), 1, + ACTIONS(1740), 1, anon_sym_SEMI, - STATE(796), 1, + STATE(845), 1, aux_sym_property_repeat1, - [30821] = 4, + [30793] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, - ACTIONS(1745), 1, + ACTIONS(1742), 1, anon_sym_SEMI, - STATE(817), 1, + STATE(845), 1, aux_sym_property_repeat1, - [30834] = 4, + [30806] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, - ACTIONS(1747), 1, + ACTIONS(1744), 1, anon_sym_SEMI, - STATE(798), 1, + STATE(845), 1, aux_sym_property_repeat1, - [30847] = 4, + [30819] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, - ACTIONS(1749), 1, + ACTIONS(1746), 1, anon_sym_SEMI, - STATE(800), 1, + STATE(799), 1, aux_sym_property_repeat1, - [30860] = 4, + [30832] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, - ACTIONS(1751), 1, + ACTIONS(1748), 1, anon_sym_SEMI, - STATE(802), 1, + STATE(845), 1, aux_sym_property_repeat1, - [30873] = 4, + [30845] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, - anon_sym_COMMA, - ACTIONS(1753), 1, - anon_sym_SEMI, - STATE(804), 1, - aux_sym_property_repeat1, - [30886] = 4, + ACTIONS(1750), 1, + anon_sym_RPAREN, + ACTIONS(1752), 2, + sym_identifier, + anon_sym_DOT_DOT_DOT, + [30856] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, - ACTIONS(1755), 1, + ACTIONS(1754), 1, anon_sym_SEMI, - STATE(817), 1, + STATE(845), 1, aux_sym_property_repeat1, - [30899] = 4, + [30869] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, - ACTIONS(1757), 1, + ACTIONS(1756), 1, anon_sym_SEMI, - STATE(871), 1, + STATE(845), 1, aux_sym_property_repeat1, - [30912] = 4, + [30882] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1047), 1, + anon_sym_RPAREN, + ACTIONS(1758), 1, anon_sym_COMMA, - ACTIONS(1759), 1, - anon_sym_SEMI, - STATE(817), 1, - aux_sym_property_repeat1, - [30925] = 4, + STATE(796), 1, + aux_sym_preproc_argument_list_repeat1, + [30895] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, ACTIONS(1761), 1, anon_sym_SEMI, - STATE(806), 1, + STATE(852), 1, aux_sym_property_repeat1, - [30938] = 4, + [30908] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(917), 1, anon_sym_COMMA, ACTIONS(1763), 1, - anon_sym_SEMI, - STATE(817), 1, - aux_sym_property_repeat1, - [30951] = 4, + anon_sym_RPAREN, + STATE(796), 1, + aux_sym_preproc_argument_list_repeat1, + [30921] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, ACTIONS(1765), 1, anon_sym_SEMI, - STATE(807), 1, + STATE(845), 1, aux_sym_property_repeat1, - [30964] = 4, + [30934] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, ACTIONS(1767), 1, anon_sym_SEMI, - STATE(817), 1, + STATE(818), 1, aux_sym_property_repeat1, - [30977] = 4, + [30947] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, ACTIONS(1769), 1, anon_sym_SEMI, - STATE(808), 1, + STATE(845), 1, aux_sym_property_repeat1, - [30990] = 4, + [30960] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, ACTIONS(1771), 1, anon_sym_SEMI, - STATE(817), 1, + STATE(845), 1, aux_sym_property_repeat1, - [31003] = 4, + [30973] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, ACTIONS(1773), 1, anon_sym_SEMI, - STATE(817), 1, + STATE(816), 1, aux_sym_property_repeat1, - [31016] = 4, + [30986] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, ACTIONS(1775), 1, anon_sym_SEMI, - STATE(817), 1, + STATE(845), 1, aux_sym_property_repeat1, - [31029] = 4, + [30999] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, ACTIONS(1777), 1, anon_sym_SEMI, - STATE(817), 1, + STATE(839), 1, aux_sym_property_repeat1, - [31042] = 4, + [31012] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, ACTIONS(1779), 1, anon_sym_SEMI, - STATE(817), 1, + STATE(822), 1, aux_sym_property_repeat1, - [31055] = 4, + [31025] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(893), 1, + anon_sym_COMMA, + ACTIONS(1781), 1, + anon_sym_RPAREN, + STATE(821), 1, + aux_sym_argument_list_repeat1, + [31038] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1781), 1, - anon_sym_RBRACK, ACTIONS(1783), 1, + anon_sym_RBRACK, + ACTIONS(1785), 1, sym__byte_string_item, - STATE(813), 1, + STATE(841), 1, aux_sym_byte_string_literal_repeat1, - [31068] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1785), 3, - sym__label_name, - sym__node_path, - sym__node_or_property, - [31077] = 4, + [31051] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, ACTIONS(1787), 1, anon_sym_SEMI, - STATE(880), 1, + STATE(825), 1, aux_sym_property_repeat1, + [31064] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1565), 1, + anon_sym_AT, + ACTIONS(1567), 1, + anon_sym_LBRACE, + ACTIONS(1789), 1, + anon_sym_COLON, + [31077] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1573), 1, + anon_sym_AT, + ACTIONS(1575), 1, + anon_sym_LBRACE, + ACTIONS(1789), 1, + anon_sym_COLON, [31090] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, - ACTIONS(1789), 1, + ACTIONS(1791), 1, anon_sym_SEMI, - STATE(788), 1, + STATE(802), 1, aux_sym_property_repeat1, [31103] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1791), 1, - anon_sym_RBRACK, + ACTIONS(1722), 1, + anon_sym_COMMA, ACTIONS(1793), 1, - sym__byte_string_item, - STATE(813), 1, - aux_sym_byte_string_literal_repeat1, + anon_sym_SEMI, + STATE(845), 1, + aux_sym_property_repeat1, [31116] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, + ACTIONS(1722), 1, anon_sym_COMMA, - ACTIONS(1799), 1, - anon_sym_RPAREN, - STATE(814), 1, - aux_sym_preproc_params_repeat1, + ACTIONS(1795), 1, + anon_sym_SEMI, + STATE(830), 1, + aux_sym_property_repeat1, [31129] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, - ACTIONS(1801), 1, + ACTIONS(1797), 1, anon_sym_SEMI, - STATE(822), 1, + STATE(844), 1, aux_sym_property_repeat1, [31142] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, - ACTIONS(1803), 1, + ACTIONS(1799), 1, anon_sym_SEMI, - STATE(817), 1, + STATE(845), 1, aux_sym_property_repeat1, [31155] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1805), 1, - anon_sym_SEMI, - ACTIONS(1807), 1, + ACTIONS(1722), 1, anon_sym_COMMA, - STATE(817), 1, + ACTIONS(1801), 1, + anon_sym_SEMI, + STATE(834), 1, aux_sym_property_repeat1, [31168] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, - ACTIONS(1810), 1, + ACTIONS(1803), 1, anon_sym_SEMI, - STATE(816), 1, + STATE(845), 1, aux_sym_property_repeat1, [31181] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1812), 1, - anon_sym_COLON, - ACTIONS(1814), 1, - anon_sym_AT, - ACTIONS(1816), 1, - anon_sym_LBRACE, + ACTIONS(1722), 1, + anon_sym_COMMA, + ACTIONS(1805), 1, + anon_sym_SEMI, + STATE(888), 1, + aux_sym_property_repeat1, [31194] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(927), 1, + ACTIONS(1722), 1, anon_sym_COMMA, - ACTIONS(1818), 1, - anon_sym_RPAREN, - STATE(825), 1, - aux_sym_preproc_argument_list_repeat1, + ACTIONS(1807), 1, + anon_sym_SEMI, + STATE(813), 1, + aux_sym_property_repeat1, [31207] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1017), 1, + anon_sym_RPAREN, + ACTIONS(1809), 1, anon_sym_COMMA, - ACTIONS(1820), 1, - anon_sym_SEMI, - STATE(836), 1, - aux_sym_property_repeat1, + STATE(821), 1, + aux_sym_argument_list_repeat1, [31220] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, - ACTIONS(1822), 1, + ACTIONS(1812), 1, anon_sym_SEMI, - STATE(817), 1, + STATE(845), 1, aux_sym_property_repeat1, [31233] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1537), 1, - anon_sym_AT, - ACTIONS(1539), 1, - anon_sym_LBRACE, - ACTIONS(1824), 1, - anon_sym_COLON, + ACTIONS(1814), 1, + anon_sym_COMMA, + ACTIONS(1816), 1, + anon_sym_RPAREN, + STATE(860), 1, + aux_sym_preproc_params_repeat1, [31246] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1545), 1, - anon_sym_AT, - ACTIONS(1547), 1, - anon_sym_LBRACE, - ACTIONS(1824), 1, - anon_sym_COLON, + ACTIONS(1722), 1, + anon_sym_COMMA, + ACTIONS(1818), 1, + anon_sym_SEMI, + STATE(836), 1, + aux_sym_property_repeat1, [31259] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, - anon_sym_RPAREN, - ACTIONS(1826), 1, + ACTIONS(1722), 1, anon_sym_COMMA, - STATE(825), 1, - aux_sym_preproc_argument_list_repeat1, + ACTIONS(1820), 1, + anon_sym_SEMI, + STATE(845), 1, + aux_sym_property_repeat1, [31272] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(917), 1, anon_sym_COMMA, - ACTIONS(1829), 1, - anon_sym_SEMI, - STATE(817), 1, - aux_sym_property_repeat1, + ACTIONS(1822), 1, + anon_sym_RPAREN, + STATE(796), 1, + aux_sym_preproc_argument_list_repeat1, [31285] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, - ACTIONS(1831), 1, + ACTIONS(1824), 1, anon_sym_SEMI, - STATE(838), 1, + STATE(837), 1, aux_sym_property_repeat1, [31298] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, - anon_sym_COMMA, - ACTIONS(1833), 1, - anon_sym_SEMI, - STATE(840), 1, - aux_sym_property_repeat1, + ACTIONS(1789), 1, + anon_sym_COLON, + ACTIONS(1826), 1, + anon_sym_AT, + ACTIONS(1828), 1, + anon_sym_LBRACE, [31311] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, - anon_sym_COMMA, - ACTIONS(1835), 1, - anon_sym_SEMI, - STATE(844), 1, - aux_sym_property_repeat1, + ACTIONS(1789), 1, + anon_sym_COLON, + ACTIONS(1830), 1, + anon_sym_AT, + ACTIONS(1832), 1, + anon_sym_LBRACE, [31324] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, - ACTIONS(1837), 1, + ACTIONS(1834), 1, anon_sym_SEMI, - STATE(817), 1, + STATE(845), 1, aux_sym_property_repeat1, [31337] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, - ACTIONS(1839), 1, + ACTIONS(1836), 1, anon_sym_SEMI, - STATE(817), 1, + STATE(845), 1, aux_sym_property_repeat1, [31350] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, - anon_sym_COMMA, - ACTIONS(1841), 1, - anon_sym_SEMI, - STATE(817), 1, - aux_sym_property_repeat1, + ACTIONS(1789), 1, + anon_sym_COLON, + ACTIONS(1838), 1, + anon_sym_AT, + ACTIONS(1840), 1, + anon_sym_LBRACE, [31363] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, - ACTIONS(1843), 1, + ACTIONS(1842), 1, anon_sym_SEMI, - STATE(847), 1, + STATE(838), 1, aux_sym_property_repeat1, [31376] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1824), 1, - anon_sym_COLON, - ACTIONS(1845), 1, - anon_sym_AT, - ACTIONS(1847), 1, - anon_sym_LBRACE, + ACTIONS(1722), 1, + anon_sym_COMMA, + ACTIONS(1844), 1, + anon_sym_SEMI, + STATE(845), 1, + aux_sym_property_repeat1, [31389] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1824), 1, - anon_sym_COLON, - ACTIONS(1849), 1, - anon_sym_AT, - ACTIONS(1851), 1, - anon_sym_LBRACE, + ACTIONS(1722), 1, + anon_sym_COMMA, + ACTIONS(1846), 1, + anon_sym_SEMI, + STATE(845), 1, + aux_sym_property_repeat1, [31402] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, - ACTIONS(1853), 1, + ACTIONS(1848), 1, anon_sym_SEMI, - STATE(817), 1, + STATE(845), 1, aux_sym_property_repeat1, [31415] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, - ACTIONS(1855), 1, + ACTIONS(1850), 1, anon_sym_SEMI, - STATE(849), 1, + STATE(845), 1, aux_sym_property_repeat1, [31428] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, - ACTIONS(1857), 1, + ACTIONS(1852), 1, anon_sym_SEMI, - STATE(817), 1, + STATE(845), 1, aux_sym_property_repeat1, [31441] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, - ACTIONS(1859), 1, + ACTIONS(1854), 1, anon_sym_SEMI, - STATE(850), 1, + STATE(845), 1, aux_sym_property_repeat1, [31454] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, - ACTIONS(1861), 1, + ACTIONS(1856), 1, anon_sym_SEMI, - STATE(817), 1, + STATE(845), 1, aux_sym_property_repeat1, [31467] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1863), 1, + ACTIONS(1858), 1, anon_sym_RBRACK, - ACTIONS(1865), 1, + ACTIONS(1860), 1, sym__byte_string_item, - STATE(809), 1, + STATE(847), 1, aux_sym_byte_string_literal_repeat1, [31480] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, - ACTIONS(1867), 1, + ACTIONS(1862), 1, anon_sym_SEMI, - STATE(856), 1, + STATE(874), 1, aux_sym_property_repeat1, [31493] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, - ACTIONS(1869), 1, + ACTIONS(1864), 1, anon_sym_SEMI, - STATE(853), 1, + STATE(855), 1, aux_sym_property_repeat1, [31506] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, - ACTIONS(1871), 1, + ACTIONS(1866), 1, anon_sym_SEMI, - STATE(817), 1, + STATE(845), 1, aux_sym_property_repeat1, [31519] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, - anon_sym_COMMA, - ACTIONS(1873), 1, + ACTIONS(1868), 1, anon_sym_SEMI, - STATE(854), 1, + ACTIONS(1870), 1, + anon_sym_COMMA, + STATE(845), 1, aux_sym_property_repeat1, [31532] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(881), 1, - anon_sym_COMMA, + ACTIONS(1873), 1, + anon_sym_SLASH, ACTIONS(1875), 1, - anon_sym_RPAREN, - STATE(855), 1, - aux_sym_argument_list_repeat1, - [31545] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1717), 1, - anon_sym_COMMA, + anon_sym_AT, ACTIONS(1877), 1, - anon_sym_SEMI, - STATE(817), 1, - aux_sym_property_repeat1, - [31558] = 3, + anon_sym_RBRACE, + [31545] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1879), 1, - anon_sym_RPAREN, - ACTIONS(1881), 2, - sym_identifier, - anon_sym_DOT_DOT_DOT, - [31569] = 4, + anon_sym_RBRACK, + ACTIONS(1881), 1, + sym__byte_string_item, + STATE(847), 1, + aux_sym_byte_string_literal_repeat1, + [31558] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, - ACTIONS(1883), 1, + ACTIONS(1884), 1, anon_sym_SEMI, - STATE(817), 1, + STATE(795), 1, aux_sym_property_repeat1, - [31582] = 4, + [31571] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, - ACTIONS(1885), 1, + ACTIONS(1886), 1, anon_sym_SEMI, - STATE(817), 1, + STATE(780), 1, aux_sym_property_repeat1, - [31595] = 4, + [31584] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1529), 1, + ACTIONS(1581), 1, anon_sym_AT, - ACTIONS(1531), 1, + ACTIONS(1583), 1, anon_sym_LBRACE, - ACTIONS(1824), 1, + ACTIONS(1789), 1, anon_sym_COLON, - [31608] = 4, + [31597] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1569), 1, + ACTIONS(1549), 1, anon_sym_AT, - ACTIONS(1571), 1, + ACTIONS(1551), 1, anon_sym_LBRACE, - ACTIONS(1824), 1, + ACTIONS(1789), 1, anon_sym_COLON, - [31621] = 4, + [31610] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, - ACTIONS(1887), 1, + ACTIONS(1888), 1, anon_sym_SEMI, - STATE(817), 1, + STATE(845), 1, aux_sym_property_repeat1, - [31634] = 4, + [31623] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, - ACTIONS(1889), 1, + ACTIONS(1890), 1, anon_sym_SEMI, - STATE(817), 1, + STATE(801), 1, aux_sym_property_repeat1, - [31647] = 4, + [31636] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(987), 1, - anon_sym_RPAREN, - ACTIONS(1891), 1, + ACTIONS(1722), 1, anon_sym_COMMA, - STATE(855), 1, - aux_sym_argument_list_repeat1, - [31660] = 4, + ACTIONS(1892), 1, + anon_sym_SEMI, + STATE(863), 1, + aux_sym_property_repeat1, + [31649] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, ACTIONS(1894), 1, anon_sym_SEMI, - STATE(817), 1, + STATE(845), 1, aux_sym_property_repeat1, - [31673] = 4, + [31662] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1896), 1, anon_sym_COMMA, - ACTIONS(1898), 1, + ACTIONS(1899), 1, anon_sym_RPAREN, - STATE(862), 1, + STATE(856), 1, aux_sym_preproc_params_repeat1, - [31686] = 4, + [31675] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1824), 1, + ACTIONS(1722), 1, + anon_sym_COMMA, + ACTIONS(1901), 1, + anon_sym_SEMI, + STATE(782), 1, + aux_sym_property_repeat1, + [31688] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1722), 1, + anon_sym_COMMA, + ACTIONS(1903), 1, + anon_sym_SEMI, + STATE(840), 1, + aux_sym_property_repeat1, + [31701] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1905), 1, anon_sym_COLON, - ACTIONS(1900), 1, + ACTIONS(1907), 1, anon_sym_AT, - ACTIONS(1902), 1, + ACTIONS(1909), 1, anon_sym_LBRACE, - [31699] = 4, + [31714] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1561), 1, + ACTIONS(1814), 1, + anon_sym_COMMA, + ACTIONS(1911), 1, + anon_sym_RPAREN, + STATE(856), 1, + aux_sym_preproc_params_repeat1, + [31727] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1789), 1, + anon_sym_COLON, + ACTIONS(1907), 1, anon_sym_AT, - ACTIONS(1563), 1, + ACTIONS(1909), 1, anon_sym_LBRACE, - ACTIONS(1824), 1, + [31740] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1722), 1, + anon_sym_COMMA, + ACTIONS(1913), 1, + anon_sym_SEMI, + STATE(882), 1, + aux_sym_property_repeat1, + [31753] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1722), 1, + anon_sym_COMMA, + ACTIONS(1915), 1, + anon_sym_SEMI, + STATE(845), 1, + aux_sym_property_repeat1, + [31766] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1838), 1, + anon_sym_AT, + ACTIONS(1840), 1, + anon_sym_LBRACE, + ACTIONS(1905), 1, anon_sym_COLON, - [31712] = 4, + [31779] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1553), 1, + ACTIONS(1557), 1, anon_sym_AT, - ACTIONS(1555), 1, + ACTIONS(1559), 1, anon_sym_LBRACE, - ACTIONS(1824), 1, + ACTIONS(1789), 1, anon_sym_COLON, - [31725] = 4, + [31792] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1814), 1, + ACTIONS(1533), 1, anon_sym_AT, - ACTIONS(1816), 1, + ACTIONS(1535), 1, anon_sym_LBRACE, - ACTIONS(1824), 1, + ACTIONS(1789), 1, anon_sym_COLON, - [31738] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1896), 1, - anon_sym_COMMA, - ACTIONS(1904), 1, - anon_sym_RPAREN, - STATE(814), 1, - aux_sym_preproc_params_repeat1, - [31751] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(927), 1, - anon_sym_COMMA, - ACTIONS(1906), 1, - anon_sym_RPAREN, - STATE(825), 1, - aux_sym_preproc_argument_list_repeat1, - [31764] = 4, + [31805] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, - ACTIONS(1908), 1, + ACTIONS(1917), 1, anon_sym_SEMI, - STATE(826), 1, + STATE(845), 1, aux_sym_property_repeat1, - [31777] = 4, + [31818] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, - ACTIONS(1910), 1, + ACTIONS(1919), 1, anon_sym_SEMI, - STATE(870), 1, + STATE(867), 1, aux_sym_property_repeat1, - [31790] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1812), 1, - anon_sym_COLON, - ACTIONS(1900), 1, - anon_sym_AT, - ACTIONS(1902), 1, - anon_sym_LBRACE, - [31803] = 4, + [31831] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, - ACTIONS(1912), 1, + ACTIONS(1921), 1, anon_sym_SEMI, - STATE(817), 1, + STATE(784), 1, aux_sym_property_repeat1, - [31816] = 4, + [31844] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, - ACTIONS(1914), 1, + ACTIONS(1923), 1, anon_sym_SEMI, - STATE(830), 1, + STATE(884), 1, aux_sym_property_repeat1, - [31829] = 4, + [31857] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, - ACTIONS(1916), 1, + ACTIONS(1925), 1, anon_sym_SEMI, - STATE(882), 1, + STATE(845), 1, aux_sym_property_repeat1, - [31842] = 4, + [31870] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, - ACTIONS(1918), 1, + ACTIONS(1927), 1, anon_sym_SEMI, - STATE(817), 1, + STATE(786), 1, aux_sym_property_repeat1, - [31855] = 4, + [31883] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, - ACTIONS(1920), 1, + ACTIONS(1929), 1, anon_sym_SEMI, - STATE(817), 1, + STATE(886), 1, aux_sym_property_repeat1, - [31868] = 4, + [31896] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, - ACTIONS(1922), 1, + ACTIONS(1931), 1, anon_sym_SEMI, - STATE(884), 1, + STATE(845), 1, aux_sym_property_repeat1, - [31881] = 4, + [31909] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1585), 1, + ACTIONS(1525), 1, anon_sym_AT, - ACTIONS(1587), 1, + ACTIONS(1527), 1, anon_sym_LBRACE, - ACTIONS(1824), 1, + ACTIONS(1789), 1, anon_sym_COLON, - [31894] = 4, + [31922] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1577), 1, + ACTIONS(1541), 1, anon_sym_AT, - ACTIONS(1579), 1, + ACTIONS(1543), 1, anon_sym_LBRACE, - ACTIONS(1824), 1, + ACTIONS(1789), 1, anon_sym_COLON, - [31907] = 4, + [31935] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1812), 1, - anon_sym_COLON, - ACTIONS(1849), 1, + ACTIONS(1830), 1, anon_sym_AT, - ACTIONS(1851), 1, + ACTIONS(1832), 1, anon_sym_LBRACE, - [31920] = 4, + ACTIONS(1905), 1, + anon_sym_COLON, + [31948] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, - ACTIONS(1924), 1, + ACTIONS(1933), 1, anon_sym_SEMI, - STATE(831), 1, + STATE(787), 1, aux_sym_property_repeat1, - [31933] = 4, + [31961] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, - ACTIONS(1926), 1, + ACTIONS(1935), 1, anon_sym_SEMI, - STATE(886), 1, + STATE(871), 1, aux_sym_property_repeat1, - [31946] = 4, + [31974] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1812), 1, - anon_sym_COLON, - ACTIONS(1845), 1, + ACTIONS(1826), 1, anon_sym_AT, - ACTIONS(1847), 1, + ACTIONS(1828), 1, anon_sym_LBRACE, - [31959] = 4, + ACTIONS(1905), 1, + anon_sym_COLON, + [31987] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, - ACTIONS(1928), 1, + ACTIONS(1937), 1, anon_sym_SEMI, - STATE(779), 1, + STATE(831), 1, aux_sym_property_repeat1, - [31972] = 4, + [32000] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, - ACTIONS(1930), 1, + ACTIONS(1939), 1, anon_sym_SEMI, - STATE(817), 1, + STATE(845), 1, aux_sym_property_repeat1, - [31985] = 4, + [32013] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, - ACTIONS(1932), 1, + ACTIONS(1941), 1, anon_sym_SEMI, - STATE(781), 1, + STATE(792), 1, aux_sym_property_repeat1, - [31998] = 4, + [32026] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, - ACTIONS(1934), 1, + ACTIONS(1943), 1, anon_sym_SEMI, - STATE(817), 1, + STATE(845), 1, aux_sym_property_repeat1, - [32011] = 4, + [32039] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, - ACTIONS(1936), 1, + ACTIONS(1945), 1, anon_sym_SEMI, - STATE(782), 1, + STATE(794), 1, aux_sym_property_repeat1, - [32024] = 4, + [32052] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, - ACTIONS(1938), 1, + ACTIONS(1947), 1, anon_sym_SEMI, - STATE(817), 1, + STATE(845), 1, aux_sym_property_repeat1, - [32037] = 4, + [32065] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, - ACTIONS(1940), 1, + ACTIONS(1949), 1, anon_sym_SEMI, - STATE(783), 1, + STATE(804), 1, aux_sym_property_repeat1, - [32050] = 4, + [32078] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1722), 1, anon_sym_COMMA, - ACTIONS(1942), 1, + ACTIONS(1951), 1, anon_sym_SEMI, - STATE(817), 1, + STATE(845), 1, aux_sym_property_repeat1, - [32063] = 2, - ACTIONS(979), 1, - sym_comment, - ACTIONS(1944), 2, - aux_sym_preproc_include_token2, - sym_preproc_arg, - [32071] = 3, - ACTIONS(979), 1, + [32091] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1946), 1, - aux_sym_preproc_include_token2, - ACTIONS(1948), 1, - sym_preproc_arg, - [32081] = 3, + ACTIONS(1953), 1, + anon_sym_SEMI, + ACTIONS(1955), 1, + anon_sym_AT, + [32101] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1125), 1, anon_sym_DQUOTE, - STATE(897), 1, + STATE(905), 1, sym_string_literal, - [32091] = 2, + [32111] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1950), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [32099] = 2, + ACTIONS(1957), 1, + anon_sym_SLASH, + ACTIONS(1959), 1, + anon_sym_RBRACE, + [32121] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1952), 2, + ACTIONS(1961), 2, anon_sym_SEMI, anon_sym_COMMA, - [32107] = 3, + [32129] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, + ACTIONS(1551), 1, anon_sym_LBRACE, - ACTIONS(1954), 1, + ACTIONS(1963), 1, anon_sym_SEMI, - [32117] = 3, + [32139] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1956), 1, + ACTIONS(1965), 1, anon_sym_SEMI, - ACTIONS(1958), 1, - anon_sym_AT, - [32127] = 3, - ACTIONS(979), 1, - sym_comment, - ACTIONS(1960), 1, - aux_sym_preproc_include_token2, - ACTIONS(1962), 1, - sym_preproc_arg, - [32137] = 2, - ACTIONS(979), 1, - sym_comment, - ACTIONS(1964), 2, - aux_sym_preproc_include_token2, - sym_preproc_arg, - [32145] = 3, + ACTIONS(1967), 1, + anon_sym_EQ, + [32149] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1966), 1, + ACTIONS(1969), 1, anon_sym_SEMI, - ACTIONS(1968), 1, + ACTIONS(1971), 1, anon_sym_EQ, - [32155] = 3, + [32159] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1970), 1, - anon_sym_COMMA, - ACTIONS(1972), 1, - anon_sym_RPAREN, - [32165] = 3, + ACTIONS(1539), 1, + anon_sym_SEMI, + ACTIONS(1545), 1, + anon_sym_EQ, + [32169] = 3, + ACTIONS(941), 1, + sym_comment, + ACTIONS(1973), 1, + aux_sym_preproc_include_token2, + ACTIONS(1975), 1, + sym_preproc_arg, + [32179] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1551), 1, + ACTIONS(1977), 1, anon_sym_SEMI, - ACTIONS(1557), 1, + ACTIONS(1979), 1, anon_sym_EQ, - [32175] = 3, + [32189] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 1, - anon_sym_LBRACE, - ACTIONS(1974), 1, + ACTIONS(1981), 1, anon_sym_SEMI, - [32185] = 2, + ACTIONS(1983), 1, + anon_sym_EQ, + [32199] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1976), 2, + ACTIONS(1985), 2, anon_sym_SEMI, anon_sym_COMMA, - [32193] = 3, - ACTIONS(979), 1, - sym_comment, - ACTIONS(1978), 1, - aux_sym_preproc_include_token2, - ACTIONS(1980), 1, - sym_preproc_arg, - [32203] = 2, + [32207] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1982), 2, + ACTIONS(1987), 2, sym_identifier, anon_sym_DOT_DOT_DOT, - [32211] = 3, - ACTIONS(3), 1, + [32215] = 2, + ACTIONS(941), 1, sym_comment, - ACTIONS(1984), 1, - anon_sym_SEMI, - ACTIONS(1986), 1, - anon_sym_AT, - [32221] = 3, + ACTIONS(1989), 2, + aux_sym_preproc_include_token2, + sym_preproc_arg, + [32223] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1547), 1, + ACTIONS(1535), 1, anon_sym_LBRACE, - ACTIONS(1988), 1, + ACTIONS(1991), 1, anon_sym_SEMI, - [32231] = 3, + [32233] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1125), 1, - anon_sym_DQUOTE, - STATE(176), 1, - sym_string_literal, - [32241] = 3, - ACTIONS(979), 1, + ACTIONS(1993), 1, + anon_sym_SEMI, + ACTIONS(1995), 1, + anon_sym_AT, + [32243] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1990), 1, - aux_sym_preproc_include_token2, - ACTIONS(1992), 1, - sym_preproc_arg, - [32251] = 2, - ACTIONS(979), 1, + ACTIONS(1997), 1, + anon_sym_COMMA, + ACTIONS(1999), 1, + anon_sym_RPAREN, + [32253] = 3, + ACTIONS(941), 1, sym_comment, - ACTIONS(1994), 2, + ACTIONS(2001), 1, aux_sym_preproc_include_token2, + ACTIONS(2003), 1, sym_preproc_arg, - [32259] = 3, + [32263] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1543), 1, + anon_sym_LBRACE, + ACTIONS(2005), 1, anon_sym_SEMI, - ACTIONS(1549), 1, - anon_sym_EQ, - [32269] = 3, + [32273] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1996), 1, + ACTIONS(2007), 1, + anon_sym_SEMI, + ACTIONS(2009), 1, anon_sym_AT, - ACTIONS(1998), 1, - anon_sym_RBRACE, - [32279] = 3, - ACTIONS(3), 1, + [32283] = 3, + ACTIONS(941), 1, sym_comment, - ACTIONS(2000), 1, - anon_sym_SEMI, - ACTIONS(2002), 1, - anon_sym_EQ, - [32289] = 3, + ACTIONS(2011), 1, + aux_sym_preproc_include_token2, + ACTIONS(2013), 1, + sym_preproc_arg, + [32293] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2004), 1, + ACTIONS(1909), 1, + anon_sym_LBRACE, + ACTIONS(2015), 1, anon_sym_SEMI, - ACTIONS(2006), 1, - anon_sym_EQ, - [32299] = 3, + [32303] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1579), 1, + ACTIONS(1907), 1, + anon_sym_AT, + ACTIONS(1909), 1, anon_sym_LBRACE, - ACTIONS(2008), 1, - anon_sym_SEMI, - [32309] = 3, + [32313] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2010), 1, + ACTIONS(2017), 1, anon_sym_SEMI, - ACTIONS(2012), 1, + ACTIONS(2019), 1, anon_sym_EQ, - [32319] = 3, + [32323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2014), 1, + ACTIONS(2021), 1, anon_sym_SEMI, - ACTIONS(2016), 1, - anon_sym_AT, - [32329] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2018), 1, - anon_sym_LPAREN, - ACTIONS(2020), 1, - sym_identifier, - [32339] = 3, - ACTIONS(979), 1, - sym_comment, - ACTIONS(2022), 1, - aux_sym_preproc_include_token2, - ACTIONS(2024), 1, - sym_preproc_arg, - [32349] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2026), 1, - anon_sym_AT, - ACTIONS(2028), 1, - anon_sym_LBRACE, - [32359] = 2, + ACTIONS(2023), 1, + anon_sym_EQ, + [32333] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2030), 2, + ACTIONS(2025), 2, anon_sym_SEMI, anon_sym_COMMA, - [32367] = 3, + [32341] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2032), 1, - anon_sym_AT, - ACTIONS(2034), 1, - anon_sym_LBRACE, - [32377] = 2, + ACTIONS(2027), 2, + anon_sym_SEMI, + anon_sym_COMMA, + [32349] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2036), 2, + ACTIONS(2029), 2, anon_sym_SEMI, anon_sym_COMMA, - [32385] = 2, + [32357] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1799), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [32393] = 3, + ACTIONS(2031), 1, + anon_sym_SEMI, + ACTIONS(2033), 1, + anon_sym_AT, + [32367] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1575), 1, + ACTIONS(1832), 1, + anon_sym_LBRACE, + ACTIONS(2035), 1, anon_sym_SEMI, - ACTIONS(1581), 1, - anon_sym_EQ, - [32403] = 3, + [32377] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1567), 1, + ACTIONS(2037), 1, anon_sym_SEMI, - ACTIONS(1573), 1, - anon_sym_EQ, - [32413] = 3, + ACTIONS(2039), 1, + anon_sym_AT, + [32387] = 2, + ACTIONS(941), 1, + sym_comment, + ACTIONS(2041), 2, + aux_sym_preproc_include_token2, + sym_preproc_arg, + [32395] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2038), 1, + ACTIONS(2043), 2, anon_sym_SEMI, - ACTIONS(2040), 1, - anon_sym_EQ, - [32423] = 2, + anon_sym_COMMA, + [32403] = 3, + ACTIONS(941), 1, + sym_comment, + ACTIONS(2045), 1, + aux_sym_preproc_include_token2, + ACTIONS(2047), 1, + sym_preproc_arg, + [32413] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2042), 2, + ACTIONS(1868), 2, anon_sym_SEMI, anon_sym_COMMA, - [32431] = 3, + [32421] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2044), 1, + ACTIONS(1531), 1, anon_sym_SEMI, - ACTIONS(2046), 1, + ACTIONS(1537), 1, anon_sym_EQ, - [32441] = 3, + [32431] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1545), 1, + ACTIONS(1605), 1, anon_sym_AT, - ACTIONS(1547), 1, + ACTIONS(1607), 1, anon_sym_LBRACE, + [32441] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2049), 1, + anon_sym_SEMI, + ACTIONS(2051), 1, + anon_sym_EQ, [32451] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2048), 1, + ACTIONS(2053), 1, anon_sym_SEMI, - ACTIONS(2050), 1, + ACTIONS(2055), 1, anon_sym_EQ, [32461] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1571), 1, - anon_sym_LBRACE, - ACTIONS(2052), 1, - anon_sym_SEMI, + ACTIONS(2057), 1, + anon_sym_DQUOTE, + STATE(335), 1, + sym_string_literal, [32471] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2054), 1, + ACTIONS(1575), 1, + anon_sym_LBRACE, + ACTIONS(2059), 1, anon_sym_SEMI, - ACTIONS(2056), 1, - anon_sym_AT, [32481] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2058), 1, + ACTIONS(2061), 1, + anon_sym_SEMI, + ACTIONS(2063), 1, anon_sym_AT, - ACTIONS(2060), 1, - anon_sym_LBRACE, [32491] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1601), 1, - anon_sym_AT, - ACTIONS(1603), 1, - anon_sym_LBRACE, + ACTIONS(2065), 1, + anon_sym_LPAREN, + ACTIONS(2067), 1, + sym_identifier, [32501] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(1125), 1, anon_sym_DQUOTE, - STATE(306), 1, + STATE(161), 1, sym_string_literal, [32511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1849), 1, + ACTIONS(2069), 1, anon_sym_AT, - ACTIONS(1851), 1, + ACTIONS(2071), 1, anon_sym_LBRACE, - [32521] = 2, + [32521] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1805), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [32529] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2064), 1, - anon_sym_AT, - ACTIONS(2066), 1, - anon_sym_LBRACE, - [32539] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2068), 1, + ACTIONS(2073), 1, anon_sym_AT, - ACTIONS(2070), 1, + ACTIONS(2075), 1, anon_sym_LBRACE, - [32549] = 3, + [32531] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2072), 1, + ACTIONS(2077), 1, anon_sym_LPAREN, - ACTIONS(2074), 1, + ACTIONS(2079), 1, sym_identifier, - [32559] = 3, + [32541] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1569), 1, - anon_sym_AT, ACTIONS(1571), 1, - anon_sym_LBRACE, - [32569] = 3, + anon_sym_SEMI, + ACTIONS(1577), 1, + anon_sym_EQ, + [32551] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2076), 1, + ACTIONS(1547), 1, anon_sym_SEMI, - ACTIONS(2078), 1, - anon_sym_AT, - [32579] = 3, + ACTIONS(1553), 1, + anon_sym_EQ, + [32561] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2080), 1, + ACTIONS(1573), 1, anon_sym_AT, - ACTIONS(2082), 1, + ACTIONS(1575), 1, anon_sym_LBRACE, - [32589] = 3, + [32571] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1679), 1, + ACTIONS(2081), 1, anon_sym_AT, - ACTIONS(1681), 1, + ACTIONS(2083), 1, anon_sym_LBRACE, - [32599] = 3, + [32581] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1816), 1, + ACTIONS(1648), 1, + anon_sym_AT, + ACTIONS(1650), 1, anon_sym_LBRACE, - ACTIONS(2084), 1, - anon_sym_SEMI, - [32609] = 3, + [32591] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1553), 1, + ACTIONS(1830), 1, anon_sym_AT, - ACTIONS(1555), 1, + ACTIONS(1832), 1, anon_sym_LBRACE, - [32619] = 3, + [32601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1814), 1, + ACTIONS(2085), 1, anon_sym_AT, - ACTIONS(1816), 1, + ACTIONS(2087), 1, anon_sym_LBRACE, - [32629] = 3, + [32611] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2086), 1, + ACTIONS(2089), 1, anon_sym_AT, - ACTIONS(2088), 1, + ACTIONS(2091), 1, anon_sym_LBRACE, - [32639] = 3, + [32621] = 3, + ACTIONS(941), 1, + sym_comment, + ACTIONS(2093), 1, + aux_sym_preproc_include_token2, + ACTIONS(2095), 1, + sym_preproc_arg, + [32631] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1639), 1, + ACTIONS(1549), 1, anon_sym_AT, - ACTIONS(1641), 1, + ACTIONS(1551), 1, anon_sym_LBRACE, + [32641] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1899), 2, + anon_sym_COMMA, + anon_sym_RPAREN, [32649] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1577), 1, + ACTIONS(2097), 1, anon_sym_AT, - ACTIONS(1579), 1, + ACTIONS(2099), 1, anon_sym_LBRACE, [32659] = 3, - ACTIONS(979), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(2090), 1, + ACTIONS(1622), 1, + anon_sym_AT, + ACTIONS(1624), 1, + anon_sym_LBRACE, + [32669] = 2, + ACTIONS(941), 1, + sym_comment, + ACTIONS(2101), 2, aux_sym_preproc_include_token2, - ACTIONS(2092), 1, sym_preproc_arg, - [32669] = 3, + [32677] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2094), 1, + ACTIONS(1533), 1, anon_sym_AT, - ACTIONS(2096), 1, + ACTIONS(1535), 1, anon_sym_LBRACE, - [32679] = 3, + [32687] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1593), 1, + ACTIONS(2103), 1, anon_sym_AT, - ACTIONS(1595), 1, + ACTIONS(2105), 1, anon_sym_LBRACE, - [32689] = 3, + [32697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2098), 1, - anon_sym_SEMI, - ACTIONS(2100), 1, + ACTIONS(1694), 1, anon_sym_AT, - [32699] = 3, + ACTIONS(1696), 1, + anon_sym_LBRACE, + [32707] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2102), 1, - anon_sym_SEMI, - ACTIONS(2104), 1, - anon_sym_EQ, - [32709] = 2, + ACTIONS(1541), 1, + anon_sym_AT, + ACTIONS(1543), 1, + anon_sym_LBRACE, + [32717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2106), 1, - anon_sym_SEMI, - [32716] = 2, - ACTIONS(979), 1, + ACTIONS(2107), 1, + anon_sym_AT, + ACTIONS(2109), 1, + anon_sym_LBRACE, + [32727] = 3, + ACTIONS(941), 1, sym_comment, - ACTIONS(2108), 1, + ACTIONS(2111), 1, aux_sym_preproc_include_token2, - [32723] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2110), 1, - aux_sym_preproc_if_token2, - [32730] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2112), 1, - anon_sym_SEMI, + ACTIONS(2113), 1, + sym_preproc_arg, [32737] = 2, - ACTIONS(3), 1, + ACTIONS(941), 1, sym_comment, - ACTIONS(2114), 1, - sym_unit_address, + ACTIONS(2115), 1, + aux_sym_preproc_include_token2, [32744] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2116), 1, - sym_unit_address, + ACTIONS(2117), 1, + anon_sym_SEMI, [32751] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1956), 1, - anon_sym_SEMI, + ACTIONS(2119), 1, + aux_sym_preproc_if_token2, [32758] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2118), 1, - aux_sym_preproc_if_token2, + ACTIONS(2121), 1, + anon_sym_SEMI, [32765] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2120), 1, + ACTIONS(2123), 1, anon_sym_SEMI, [32772] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2122), 1, + ACTIONS(2125), 1, anon_sym_SEMI, [32779] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2124), 1, + ACTIONS(2127), 1, anon_sym_SEMI, [32786] = 2, - ACTIONS(979), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(2126), 1, - aux_sym_preproc_include_token2, + ACTIONS(2129), 1, + anon_sym_SEMI, [32793] = 2, - ACTIONS(979), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(2128), 1, - aux_sym_preproc_include_token2, + ACTIONS(2131), 1, + anon_sym_SEMI, [32800] = 2, - ACTIONS(979), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(2130), 1, - aux_sym_preproc_include_token2, + ACTIONS(2133), 1, + anon_sym_SEMI, [32807] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2132), 1, - aux_sym_preproc_if_token2, + ACTIONS(2135), 1, + anon_sym_SEMI, [32814] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2134), 1, + ACTIONS(2137), 1, anon_sym_SEMI, [32821] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2136), 1, - aux_sym_preproc_if_token2, + ACTIONS(2139), 1, + anon_sym_SEMI, [32828] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2138), 1, - anon_sym_SEMI, + ACTIONS(2141), 1, + aux_sym_preproc_if_token2, [32835] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1984), 1, - anon_sym_SEMI, + ACTIONS(2143), 1, + sym_integer_literal, [32842] = 2, - ACTIONS(979), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(2140), 1, - aux_sym_preproc_include_token2, + ACTIONS(2145), 1, + aux_sym_preproc_if_token2, [32849] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2142), 1, - anon_sym_SEMI, + ACTIONS(2147), 1, + aux_sym_preproc_if_token2, [32856] = 2, - ACTIONS(979), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(2144), 1, - aux_sym_preproc_include_token2, + ACTIONS(2149), 1, + anon_sym_SEMI, [32863] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2146), 1, + ACTIONS(2151), 1, anon_sym_SEMI, [32870] = 2, - ACTIONS(979), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(2148), 1, - aux_sym_preproc_include_token2, + ACTIONS(1993), 1, + anon_sym_SEMI, [32877] = 2, - ACTIONS(979), 1, + ACTIONS(941), 1, sym_comment, - ACTIONS(2150), 1, + ACTIONS(2153), 1, aux_sym_preproc_include_token2, [32884] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2152), 1, + ACTIONS(2155), 1, anon_sym_SEMI, [32891] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2154), 1, - anon_sym_SEMI, - [32898] = 2, - ACTIONS(979), 1, + ACTIONS(941), 1, sym_comment, - ACTIONS(2156), 1, + ACTIONS(2157), 1, aux_sym_preproc_include_token2, - [32905] = 2, + [32898] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2158), 1, + ACTIONS(2159), 1, anon_sym_SEMI, + [32905] = 2, + ACTIONS(941), 1, + sym_comment, + ACTIONS(2161), 1, + aux_sym_preproc_include_token2, [32912] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2160), 1, + ACTIONS(2163), 1, anon_sym_SEMI, [32919] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2162), 1, + ACTIONS(2165), 1, anon_sym_SEMI, [32926] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2164), 1, + ACTIONS(2167), 1, anon_sym_SEMI, [32933] = 2, - ACTIONS(3), 1, + ACTIONS(941), 1, sym_comment, - ACTIONS(2166), 1, - anon_sym_SEMI, + ACTIONS(2169), 1, + aux_sym_preproc_include_token2, [32940] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2168), 1, + ACTIONS(2171), 1, anon_sym_SEMI, [32947] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2170), 1, + ACTIONS(2173), 1, anon_sym_SEMI, [32954] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2172), 1, + ACTIONS(2175), 1, anon_sym_SEMI, [32961] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2174), 1, + ACTIONS(2177), 1, anon_sym_SEMI, [32968] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2176), 1, + ACTIONS(2179), 1, anon_sym_SEMI, [32975] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2178), 1, + ACTIONS(2181), 1, anon_sym_SEMI, [32982] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2180), 1, + ACTIONS(2183), 1, anon_sym_SEMI, [32989] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2182), 1, + ACTIONS(2185), 1, anon_sym_SEMI, [32996] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2184), 1, + ACTIONS(2187), 1, anon_sym_SEMI, [33003] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2186), 1, + ACTIONS(2189), 1, anon_sym_SEMI, [33010] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2188), 1, + ACTIONS(2191), 1, anon_sym_SEMI, [33017] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2190), 1, - aux_sym_preproc_if_token2, + ACTIONS(2193), 1, + anon_sym_SEMI, [33024] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2192), 1, + ACTIONS(2195), 1, anon_sym_SEMI, [33031] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2194), 1, + ACTIONS(2197), 1, anon_sym_SEMI, [33038] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2014), 1, + ACTIONS(2199), 1, anon_sym_SEMI, [33045] = 2, - ACTIONS(979), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(2196), 1, - aux_sym_preproc_include_token2, + ACTIONS(2201), 1, + anon_sym_SEMI, [33052] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2198), 1, + ACTIONS(2203), 1, sym_integer_literal, [33059] = 2, - ACTIONS(979), 1, + ACTIONS(941), 1, sym_comment, - ACTIONS(2200), 1, + ACTIONS(2205), 1, aux_sym_preproc_include_token2, [33066] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2202), 1, + ACTIONS(2207), 1, anon_sym_SEMI, [33073] = 2, - ACTIONS(979), 1, - sym_comment, - ACTIONS(2204), 1, - aux_sym_preproc_include_token2, - [33080] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2206), 1, + ACTIONS(2007), 1, anon_sym_SEMI, + [33080] = 2, + ACTIONS(941), 1, + sym_comment, + ACTIONS(2209), 1, + aux_sym_preproc_include_token2, [33087] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2208), 1, - anon_sym_SEMI, + ACTIONS(2211), 1, + sym_identifier, [33094] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2210), 1, - anon_sym_SEMI, - [33101] = 2, - ACTIONS(979), 1, + ACTIONS(941), 1, sym_comment, - ACTIONS(2212), 1, + ACTIONS(2213), 1, aux_sym_preproc_include_token2, - [33108] = 2, + [33101] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2214), 1, + ACTIONS(2215), 1, anon_sym_SEMI, + [33108] = 2, + ACTIONS(941), 1, + sym_comment, + ACTIONS(2217), 1, + aux_sym_preproc_include_token2, [33115] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1824), 1, - anon_sym_COLON, + ACTIONS(2219), 1, + anon_sym_SEMI, [33122] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2216), 1, + ACTIONS(2221), 1, anon_sym_SEMI, [33129] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2218), 1, + ACTIONS(2223), 1, anon_sym_SEMI, [33136] = 2, - ACTIONS(3), 1, + ACTIONS(941), 1, sym_comment, - ACTIONS(2220), 1, - anon_sym_SEMI, + ACTIONS(2225), 1, + aux_sym_preproc_include_token2, [33143] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2222), 1, + ACTIONS(2227), 1, anon_sym_SEMI, [33150] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2224), 1, + ACTIONS(2229), 1, anon_sym_SEMI, [33157] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2226), 1, + ACTIONS(2231), 1, anon_sym_SEMI, [33164] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2228), 1, + ACTIONS(2233), 1, anon_sym_SEMI, [33171] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2230), 1, + ACTIONS(2235), 1, anon_sym_SEMI, [33178] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2232), 1, + ACTIONS(2237), 1, anon_sym_SEMI, [33185] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2234), 1, + ACTIONS(2239), 1, anon_sym_SEMI, [33192] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2236), 1, + ACTIONS(2241), 1, anon_sym_SEMI, [33199] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2238), 1, + ACTIONS(2243), 1, anon_sym_SEMI, [33206] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2240), 1, + ACTIONS(2245), 1, anon_sym_SEMI, [33213] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2242), 1, + ACTIONS(2247), 1, anon_sym_SEMI, [33220] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2244), 1, + ACTIONS(2249), 1, anon_sym_SEMI, [33227] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2246), 1, + ACTIONS(2251), 1, anon_sym_SEMI, [33234] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2248), 1, - sym_identifier, + ACTIONS(2253), 1, + anon_sym_SEMI, [33241] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2250), 1, - sym_identifier, + ACTIONS(2255), 1, + anon_sym_SEMI, [33248] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2252), 1, - sym_identifier, + ACTIONS(2257), 1, + anon_sym_SEMI, [33255] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2254), 1, - sym_integer_literal, + ACTIONS(2259), 1, + sym_identifier, [33262] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2256), 1, - anon_sym_SEMI, + ACTIONS(2261), 1, + aux_sym_preproc_if_token2, [33269] = 2, - ACTIONS(979), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(2258), 1, - aux_sym_preproc_include_token2, + ACTIONS(2263), 1, + sym_identifier, [33276] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2260), 1, - anon_sym_SEMI, + ACTIONS(2265), 1, + sym_identifier, [33283] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, - anon_sym_SEMI, + ACTIONS(2267), 1, + sym_identifier, [33290] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2264), 1, - sym_identifier, + ACTIONS(2269), 1, + sym_integer_literal, [33297] = 2, - ACTIONS(979), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(2266), 1, - aux_sym_preproc_include_token2, + ACTIONS(2271), 1, + aux_sym_preproc_if_token2, [33304] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2268), 1, - anon_sym_SEMI, + ACTIONS(2273), 1, + aux_sym_preproc_if_token2, [33311] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2270), 1, - sym_unit_address, + ACTIONS(2275), 1, + anon_sym_COMMA, [33318] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, - sym_identifier, + ACTIONS(2277), 1, + anon_sym_SEMI, [33325] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2274), 1, - sym_integer_literal, + ACTIONS(2279), 1, + sym_identifier, [33332] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2281), 1, anon_sym_SEMI, [33339] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2278), 1, + ACTIONS(2283), 1, anon_sym_SEMI, [33346] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, - anon_sym_SEMI, + ACTIONS(2285), 1, + sym_unit_address, [33353] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2282), 1, - anon_sym_SEMI, + ACTIONS(2287), 1, + sym_identifier, [33360] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2284), 1, - sym_unit_address, + ACTIONS(2289), 1, + sym_integer_literal, [33367] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2286), 1, - anon_sym_RPAREN, + ACTIONS(2291), 1, + sym_unit_address, [33374] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1525), 1, - anon_sym_COLON, + ACTIONS(2293), 1, + anon_sym_SEMI, [33381] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2288), 1, - aux_sym_preproc_if_token2, + ACTIONS(2295), 1, + anon_sym_SEMI, [33388] = 2, - ACTIONS(3), 1, + ACTIONS(941), 1, sym_comment, - ACTIONS(2290), 1, - aux_sym_preproc_if_token2, + ACTIONS(2297), 1, + aux_sym_preproc_include_token2, [33395] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2292), 1, - anon_sym_SEMI, + ACTIONS(2299), 1, + aux_sym_preproc_if_token2, [33402] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2294), 1, - aux_sym_preproc_if_token2, + ACTIONS(2301), 1, + anon_sym_SEMI, [33409] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2296), 1, - anon_sym_SEMI, + ACTIONS(2303), 1, + sym_unit_address, [33416] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2298), 1, - sym_identifier, + ACTIONS(2305), 1, + anon_sym_RPAREN, [33423] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2300), 1, - aux_sym_preproc_if_token2, + ACTIONS(2307), 1, + anon_sym_SEMI, [33430] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2302), 1, - aux_sym_preproc_if_token2, + ACTIONS(2309), 1, + sym_integer_literal, [33437] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2304), 1, - anon_sym_SEMI, + ACTIONS(2311), 1, + sym_unit_address, [33444] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2306), 1, - anon_sym_LBRACE, + ACTIONS(2313), 1, + anon_sym_SEMI, [33451] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2308), 1, + ACTIONS(2315), 1, anon_sym_SEMI, [33458] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2310), 1, - anon_sym_SEMI, + ACTIONS(2317), 1, + sym_unit_address, [33465] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2312), 1, - anon_sym_SEMI, + ACTIONS(2319), 1, + aux_sym_preproc_if_token2, [33472] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2314), 1, + ACTIONS(2321), 1, anon_sym_SEMI, [33479] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2316), 1, - sym_identifier, + ACTIONS(2323), 1, + anon_sym_LBRACE, [33486] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2318), 1, - sym_identifier, + ACTIONS(1953), 1, + anon_sym_SEMI, [33493] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2320), 1, - anon_sym_SEMI, + ACTIONS(2325), 1, + sym_unit_address, [33500] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2322), 1, + ACTIONS(2327), 1, anon_sym_SEMI, [33507] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2324), 1, - sym_identifier, + ACTIONS(2329), 1, + anon_sym_SEMI, [33514] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2326), 1, - anon_sym_SEMI, + ACTIONS(2331), 1, + sym_identifier, [33521] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2328), 1, - anon_sym_SEMI, + ACTIONS(2333), 1, + sym_identifier, [33528] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2330), 1, - sym_unit_address, + ACTIONS(2335), 1, + anon_sym_SEMI, [33535] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2332), 1, - anon_sym_SEMI, + ACTIONS(2337), 1, + sym_unit_address, [33542] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2334), 1, - aux_sym_preproc_if_token2, + ACTIONS(2339), 1, + sym_identifier, [33549] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2336), 1, - anon_sym_LBRACE, + ACTIONS(2341), 1, + anon_sym_SEMI, [33556] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2338), 1, + ACTIONS(2343), 1, anon_sym_SEMI, [33563] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2340), 1, - anon_sym_SEMI, + ACTIONS(2345), 1, + sym_unit_address, [33570] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2342), 1, - aux_sym_preproc_if_token2, + ACTIONS(2347), 1, + ts_builtin_sym_end, [33577] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2344), 1, - anon_sym_LBRACE, + ACTIONS(2349), 1, + anon_sym_LPAREN, [33584] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2346), 1, - anon_sym_LBRACE, + ACTIONS(2351), 1, + anon_sym_SEMI, [33591] = 2, - ACTIONS(3), 1, + ACTIONS(941), 1, sym_comment, - ACTIONS(2348), 1, - anon_sym_SEMI, + ACTIONS(2353), 1, + aux_sym_preproc_include_token2, [33598] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2350), 1, - sym_unit_address, + ACTIONS(2355), 1, + anon_sym_SEMI, [33605] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2352), 1, - anon_sym_SEMI, + ACTIONS(2357), 1, + anon_sym_RPAREN, [33612] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2354), 1, + ACTIONS(2359), 1, anon_sym_SEMI, [33619] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2356), 1, - anon_sym_COMMA, + ACTIONS(2361), 1, + anon_sym_SEMI, [33626] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2358), 1, + ACTIONS(2037), 1, anon_sym_SEMI, [33633] = 2, - ACTIONS(3), 1, + ACTIONS(941), 1, sym_comment, - ACTIONS(2360), 1, - sym_identifier, + ACTIONS(2363), 1, + aux_sym_preproc_include_token2, [33640] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2362), 1, - sym_identifier, + ACTIONS(2031), 1, + anon_sym_SEMI, [33647] = 2, - ACTIONS(3), 1, + ACTIONS(941), 1, sym_comment, - ACTIONS(2364), 1, - sym_integer_literal, + ACTIONS(2365), 1, + aux_sym_preproc_include_token2, [33654] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2366), 1, - anon_sym_RBRACE, + ACTIONS(2367), 1, + anon_sym_SEMI, [33661] = 2, - ACTIONS(3), 1, + ACTIONS(941), 1, sym_comment, - ACTIONS(2368), 1, - anon_sym_SEMI, + ACTIONS(2369), 1, + aux_sym_preproc_include_token2, [33668] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2370), 1, + ACTIONS(2371), 1, anon_sym_SEMI, [33675] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2372), 1, - aux_sym_preproc_if_token2, + ACTIONS(2373), 1, + anon_sym_SEMI, [33682] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2374), 1, - sym_identifier, + ACTIONS(2375), 1, + sym__label_name, [33689] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2376), 1, - sym_identifier, + ACTIONS(2377), 1, + aux_sym_preproc_if_token2, [33696] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2378), 1, - anon_sym_LPAREN, + ACTIONS(2379), 1, + aux_sym_preproc_if_token2, [33703] = 2, - ACTIONS(979), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(2380), 1, - aux_sym_preproc_include_token2, + ACTIONS(2381), 1, + anon_sym_SEMI, [33710] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2382), 1, - sym_identifier, + ACTIONS(2383), 1, + anon_sym_SEMI, [33717] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2384), 1, - sym_integer_literal, + ACTIONS(2385), 1, + sym_identifier, [33724] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2386), 1, - anon_sym_SEMI, + ACTIONS(2387), 1, + sym_identifier, [33731] = 2, - ACTIONS(3), 1, + ACTIONS(941), 1, sym_comment, - ACTIONS(2388), 1, - sym_unit_address, + ACTIONS(2389), 1, + aux_sym_preproc_include_token2, [33738] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2390), 1, - anon_sym_SEMI, + ACTIONS(2391), 1, + aux_sym_preproc_if_token2, [33745] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2392), 1, - sym_unit_address, + ACTIONS(2393), 1, + sym_identifier, [33752] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2394), 1, - anon_sym_SEMI, + ACTIONS(1521), 1, + anon_sym_COLON, [33759] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2396), 1, + ACTIONS(2395), 1, anon_sym_SEMI, [33766] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2398), 1, - aux_sym_preproc_if_token2, + ACTIONS(2397), 1, + sym_unit_address, [33773] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2400), 1, + ACTIONS(2399), 1, sym_identifier, [33780] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1812), 1, - anon_sym_COLON, + ACTIONS(1909), 1, + anon_sym_LBRACE, [33787] = 2, - ACTIONS(3), 1, + ACTIONS(701), 1, + aux_sym_preproc_include_token2, + ACTIONS(941), 1, sym_comment, - ACTIONS(2402), 1, - ts_builtin_sym_end, [33794] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2404), 1, - aux_sym_preproc_if_token2, + ACTIONS(2401), 1, + anon_sym_SEMI, [33801] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2406), 1, + ACTIONS(2403), 1, aux_sym_preproc_if_token2, [33808] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2408), 1, - anon_sym_SEMI, + ACTIONS(2405), 1, + aux_sym_preproc_if_token2, [33815] = 2, - ACTIONS(3), 1, + ACTIONS(941), 1, sym_comment, - ACTIONS(2410), 1, - aux_sym_preproc_if_token2, + ACTIONS(2407), 1, + aux_sym_preproc_include_token2, [33822] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2412), 1, - aux_sym_preproc_if_token2, + ACTIONS(2409), 1, + anon_sym_SEMI, [33829] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2414), 1, - sym_identifier, + ACTIONS(2411), 1, + anon_sym_RPAREN, [33836] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2416), 1, + ACTIONS(2413), 1, anon_sym_SEMI, [33843] = 2, - ACTIONS(3), 1, + ACTIONS(941), 1, sym_comment, - ACTIONS(2418), 1, - anon_sym_SEMI, + ACTIONS(2415), 1, + aux_sym_preproc_include_token2, [33850] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2420), 1, + ACTIONS(2417), 1, anon_sym_SEMI, [33857] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2419), 1, anon_sym_SEMI, [33864] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2424), 1, + ACTIONS(2421), 1, anon_sym_SEMI, [33871] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2426), 1, + ACTIONS(2423), 1, anon_sym_SEMI, [33878] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2428), 1, + ACTIONS(2425), 1, anon_sym_SEMI, [33885] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2430), 1, - sym_identifier, + ACTIONS(2427), 1, + anon_sym_SEMI, [33892] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2432), 1, - sym_identifier, + ACTIONS(2429), 1, + anon_sym_SEMI, [33899] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2434), 1, + ACTIONS(2431), 1, anon_sym_SEMI, [33906] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2436), 1, - anon_sym_SEMI, + ACTIONS(2433), 1, + aux_sym_preproc_if_token2, [33913] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 1, - sym_unit_address, + ACTIONS(2435), 1, + sym_identifier, [33920] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2440), 1, - anon_sym_RPAREN, + ACTIONS(2437), 1, + sym_identifier, [33927] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1816), 1, - anon_sym_LBRACE, + ACTIONS(2439), 1, + sym_identifier, [33934] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2442), 1, + ACTIONS(2441), 1, anon_sym_SEMI, [33941] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2444), 1, - aux_sym_preproc_if_token2, + ACTIONS(2443), 1, + sym__node_or_property, [33948] = 2, - ACTIONS(721), 1, - aux_sym_preproc_include_token2, - ACTIONS(979), 1, + ACTIONS(3), 1, sym_comment, + ACTIONS(2445), 1, + sym_unit_address, [33955] = 2, - ACTIONS(3), 1, + ACTIONS(941), 1, sym_comment, - ACTIONS(2446), 1, - aux_sym_preproc_if_token2, + ACTIONS(2447), 1, + aux_sym_preproc_include_token2, [33962] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2448), 1, - sym_integer_literal, + ACTIONS(1789), 1, + anon_sym_COLON, [33969] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2450), 1, + ACTIONS(2449), 1, anon_sym_SEMI, [33976] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2452), 1, - sym_identifier, + ACTIONS(2451), 1, + anon_sym_SEMI, [33983] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2054), 1, + ACTIONS(2453), 1, anon_sym_SEMI, [33990] = 2, - ACTIONS(979), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(2454), 1, - aux_sym_preproc_include_token2, + ACTIONS(2455), 1, + anon_sym_SEMI, [33997] = 2, - ACTIONS(3), 1, + ACTIONS(705), 1, + aux_sym_preproc_include_token2, + ACTIONS(941), 1, sym_comment, - ACTIONS(2456), 1, - sym_integer_literal, [34004] = 2, - ACTIONS(979), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(2458), 1, - aux_sym_preproc_include_token2, + ACTIONS(2457), 1, + anon_sym_SEMI, [34011] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2460), 1, - anon_sym_RPAREN, + ACTIONS(2459), 1, + anon_sym_SEMI, [34018] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2098), 1, + ACTIONS(2461), 1, anon_sym_SEMI, [34025] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2462), 1, - aux_sym_preproc_if_token2, + ACTIONS(2463), 1, + anon_sym_SEMI, [34032] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2464), 1, + ACTIONS(2061), 1, anon_sym_SEMI, [34039] = 2, - ACTIONS(979), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(2466), 1, - aux_sym_preproc_include_token2, + ACTIONS(2465), 1, + anon_sym_SEMI, [34046] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2468), 1, - anon_sym_SEMI, + ACTIONS(2467), 1, + sym_integer_literal, [34053] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2470), 1, + ACTIONS(2469), 1, anon_sym_SEMI, [34060] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2472), 1, - sym_identifier, + ACTIONS(2471), 1, + anon_sym_SEMI, [34067] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2474), 1, - sym_identifier, + ACTIONS(2473), 1, + aux_sym_preproc_if_token2, [34074] = 2, - ACTIONS(717), 1, - aux_sym_preproc_include_token2, - ACTIONS(979), 1, + ACTIONS(941), 1, sym_comment, + ACTIONS(2475), 1, + aux_sym_preproc_include_token2, [34081] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 1, - anon_sym_SEMI, + ACTIONS(2477), 1, + aux_sym_preproc_if_token2, [34088] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2478), 1, - sym_unit_address, + ACTIONS(2479), 1, + anon_sym_SEMI, [34095] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2076), 1, - anon_sym_SEMI, + ACTIONS(2481), 1, + sym_identifier, [34102] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2480), 1, - aux_sym_preproc_if_token2, + ACTIONS(2483), 1, + sym_identifier, [34109] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2482), 1, - anon_sym_SEMI, + ACTIONS(2485), 1, + aux_sym_preproc_if_token2, [34116] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2484), 1, + ACTIONS(2487), 1, anon_sym_SEMI, [34123] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2486), 1, - anon_sym_SEMI, + ACTIONS(2489), 1, + sym_unit_address, [34130] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2488), 1, - anon_sym_SEMI, + ACTIONS(2491), 1, + anon_sym_LBRACE, [34137] = 2, - ACTIONS(3), 1, + ACTIONS(941), 1, sym_comment, - ACTIONS(2490), 1, - anon_sym_SEMI, + ACTIONS(2493), 1, + aux_sym_preproc_include_token2, [34144] = 2, - ACTIONS(979), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(2492), 1, - aux_sym_preproc_include_token2, + ACTIONS(2495), 1, + anon_sym_SEMI, [34151] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2494), 1, - anon_sym_SEMI, + ACTIONS(2497), 1, + anon_sym_LBRACE, [34158] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2496), 1, + ACTIONS(2499), 1, anon_sym_SEMI, [34165] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2498), 1, - anon_sym_SEMI, + ACTIONS(2501), 1, + aux_sym_preproc_if_token2, [34172] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2500), 1, + ACTIONS(2503), 1, anon_sym_SEMI, [34179] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2502), 1, - anon_sym_SEMI, + ACTIONS(2505), 1, + anon_sym_LBRACE, [34186] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2504), 1, - anon_sym_LBRACE, + ACTIONS(2507), 1, + anon_sym_SEMI, [34193] = 2, - ACTIONS(979), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(2506), 1, - aux_sym_preproc_include_token2, + ACTIONS(2509), 1, + aux_sym_preproc_if_token2, [34200] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2508), 1, - aux_sym_preproc_if_token2, + ACTIONS(2511), 1, + anon_sym_LBRACE, [34207] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2510), 1, - aux_sym_preproc_if_token2, + ACTIONS(2513), 1, + anon_sym_SEMI, [34214] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2512), 1, - aux_sym_preproc_if_token2, + ACTIONS(2515), 1, + anon_sym_SEMI, [34221] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2514), 1, - sym_integer_literal, + ACTIONS(2517), 1, + anon_sym_SEMI, [34228] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2516), 1, - anon_sym_SEMI, + ACTIONS(2519), 1, + sym_integer_literal, [34235] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2518), 1, - anon_sym_SEMI, + ACTIONS(2521), 1, + sym_identifier, [34242] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2520), 1, - aux_sym_preproc_if_token2, + ACTIONS(2523), 1, + anon_sym_SEMI, [34249] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1547), 1, - anon_sym_LBRACE, + ACTIONS(2525), 1, + anon_sym_SEMI, [34256] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2522), 1, - anon_sym_SEMI, + ACTIONS(2527), 1, + sym_integer_literal, [34263] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2524), 1, - sym_integer_literal, + ACTIONS(2529), 1, + anon_sym_SEMI, [34270] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2526), 1, + ACTIONS(2531), 1, anon_sym_SEMI, [34277] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2528), 1, + ACTIONS(2533), 1, anon_sym_SEMI, [34284] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, - anon_sym_SEMI, + ACTIONS(1575), 1, + anon_sym_LBRACE, [34291] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, - anon_sym_LBRACE, + ACTIONS(2535), 1, + anon_sym_SEMI, [34298] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2534), 1, - anon_sym_LBRACE, + ACTIONS(2537), 1, + sym_integer_literal, [34305] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2536), 1, - anon_sym_SEMI, + ACTIONS(2539), 1, + aux_sym_preproc_if_token2, [34312] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2538), 1, - anon_sym_LBRACE, + ACTIONS(2541), 1, + anon_sym_SEMI, [34319] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, - anon_sym_LBRACE, + ACTIONS(2543), 1, + aux_sym_preproc_if_token2, [34326] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2542), 1, + ACTIONS(2545), 1, anon_sym_LBRACE, [34333] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2544), 1, - anon_sym_SEMI, + ACTIONS(2547), 1, + anon_sym_LBRACE, [34340] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, - anon_sym_LBRACE, + ACTIONS(2549), 1, + anon_sym_SEMI, [34347] = 2, - ACTIONS(979), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(2546), 1, - aux_sym_preproc_include_token2, + ACTIONS(2551), 1, + anon_sym_LBRACE, [34354] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, - aux_sym_preproc_if_token2, + ACTIONS(2553), 1, + anon_sym_LBRACE, [34361] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2550), 1, - aux_sym_preproc_if_token2, + ACTIONS(2555), 1, + anon_sym_LBRACE, [34368] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2552), 1, - anon_sym_LBRACE, + ACTIONS(2557), 1, + anon_sym_RBRACE, [34375] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2554), 1, + ACTIONS(1832), 1, anon_sym_LBRACE, [34382] = 2, - ACTIONS(3), 1, + ACTIONS(941), 1, sym_comment, - ACTIONS(2556), 1, - sym__label_name, + ACTIONS(2559), 1, + aux_sym_preproc_include_token2, [34389] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, - anon_sym_LBRACE, + ACTIONS(2561), 1, + aux_sym_preproc_if_token2, [34396] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2560), 1, - anon_sym_LBRACE, + ACTIONS(2563), 1, + aux_sym_preproc_if_token2, [34403] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2562), 1, + ACTIONS(2565), 1, anon_sym_LBRACE, [34410] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2564), 1, - aux_sym_preproc_if_token2, + ACTIONS(2567), 1, + anon_sym_LBRACE, [34417] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1571), 1, - anon_sym_LBRACE, + ACTIONS(2569), 1, + aux_sym_preproc_if_token2, [34424] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2566), 1, - anon_sym_SEMI, + ACTIONS(2571), 1, + anon_sym_LBRACE, [34431] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2568), 1, - anon_sym_SEMI, + ACTIONS(2573), 1, + anon_sym_LBRACE, [34438] = 2, - ACTIONS(979), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(2570), 1, - aux_sym_preproc_include_token2, + ACTIONS(2575), 1, + anon_sym_LBRACE, [34445] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2572), 1, - anon_sym_LBRACE, + ACTIONS(2577), 1, + anon_sym_SEMI, [34452] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2574), 1, + ACTIONS(1551), 1, anon_sym_LBRACE, [34459] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2576), 1, - anon_sym_SEMI, + ACTIONS(2579), 1, + aux_sym_preproc_if_token2, [34466] = 2, - ACTIONS(3), 1, + ACTIONS(941), 1, sym_comment, - ACTIONS(2578), 1, - anon_sym_LBRACE, + ACTIONS(2581), 1, + aux_sym_preproc_include_token2, [34473] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2580), 1, - anon_sym_LBRACE, + ACTIONS(2583), 1, + aux_sym_preproc_if_token2, [34480] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2582), 1, + ACTIONS(2585), 1, anon_sym_LBRACE, [34487] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2584), 1, - sym_unit_address, + ACTIONS(2587), 1, + anon_sym_LBRACE, [34494] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 1, - anon_sym_LBRACE, + ACTIONS(2589), 1, + anon_sym_SEMI, [34501] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2586), 1, - anon_sym_SEMI, + ACTIONS(2591), 1, + anon_sym_LBRACE, [34508] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2588), 1, - anon_sym_SEMI, + ACTIONS(2593), 1, + anon_sym_LBRACE, [34515] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2590), 1, - anon_sym_SEMI, + ACTIONS(2595), 1, + anon_sym_LBRACE, [34522] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2592), 1, - anon_sym_LBRACE, + ACTIONS(2597), 1, + anon_sym_SEMI, [34529] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2594), 1, + ACTIONS(1535), 1, anon_sym_LBRACE, [34536] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2596), 1, - anon_sym_LBRACE, + ACTIONS(2599), 1, + aux_sym_preproc_if_token2, [34543] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2598), 1, - anon_sym_LBRACE, + ACTIONS(2601), 1, + anon_sym_SEMI, [34550] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2600), 1, - anon_sym_LBRACE, + ACTIONS(2603), 1, + anon_sym_SEMI, [34557] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2602), 1, - anon_sym_SEMI, + ACTIONS(2605), 1, + anon_sym_LBRACE, [34564] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1579), 1, + ACTIONS(2607), 1, anon_sym_LBRACE, [34571] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2604), 1, - anon_sym_SEMI, + ACTIONS(2609), 1, + anon_sym_LBRACE, [34578] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2606), 1, - anon_sym_SEMI, + ACTIONS(2611), 1, + anon_sym_LBRACE, [34585] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2608), 1, - anon_sym_SEMI, + ACTIONS(2613), 1, + anon_sym_LBRACE, [34592] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2610), 1, - anon_sym_LBRACE, + ACTIONS(2615), 1, + anon_sym_SEMI, [34599] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2612), 1, + ACTIONS(1543), 1, anon_sym_LBRACE, [34606] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2614), 1, - anon_sym_LBRACE, + ACTIONS(2617), 1, + aux_sym_preproc_if_token2, [34613] = 2, - ACTIONS(3), 1, + ACTIONS(941), 1, sym_comment, - ACTIONS(2616), 1, - anon_sym_LBRACE, + ACTIONS(2619), 1, + aux_sym_preproc_include_token2, [34620] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2618), 1, - anon_sym_LBRACE, + ACTIONS(2621), 1, + aux_sym_preproc_if_token2, [34627] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2620), 1, - aux_sym_preproc_if_token2, + ACTIONS(2623), 1, + anon_sym_LBRACE, [34634] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2622), 1, - sym_unit_address, + ACTIONS(2625), 1, + anon_sym_LBRACE, [34641] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2624), 1, - sym_unit_address, + ACTIONS(2627), 1, + anon_sym_LBRACE, [34648] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2626), 1, - sym_unit_address, + ACTIONS(2629), 1, + anon_sym_LBRACE, [34655] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2628), 1, - sym_unit_address, + ACTIONS(2631), 1, + anon_sym_LBRACE, [34662] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2630), 1, - sym_unit_address, + ACTIONS(1905), 1, + anon_sym_COLON, [34669] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2632), 1, + ACTIONS(2633), 1, sym_unit_address, [34676] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2634), 1, + ACTIONS(2635), 1, sym_unit_address, [34683] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2636), 1, + ACTIONS(2637), 1, sym_unit_address, [34690] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2638), 1, + ACTIONS(2639), 1, sym_unit_address, [34697] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2640), 1, + ACTIONS(2641), 1, sym_unit_address, [34704] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2642), 1, + ACTIONS(2643), 1, sym_unit_address, [34711] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2644), 1, + ACTIONS(2645), 1, sym_unit_address, [34718] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2646), 1, + ACTIONS(2647), 1, sym_unit_address, [34725] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2648), 1, + ACTIONS(2649), 1, sym_unit_address, [34732] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2650), 1, + ACTIONS(2651), 1, sym_unit_address, [34739] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2652), 1, + ACTIONS(2653), 1, sym_unit_address, [34746] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2654), 1, + ACTIONS(2655), 1, sym_unit_address, [34753] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2656), 1, + ACTIONS(2657), 1, sym_unit_address, [34760] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2658), 1, + ACTIONS(2659), 1, sym_unit_address, [34767] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2660), 1, + ACTIONS(2661), 1, sym_unit_address, [34774] = 2, - ACTIONS(979), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(2662), 1, - aux_sym_preproc_include_token2, + ACTIONS(2663), 1, + sym_unit_address, + [34781] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2665), 1, + sym_unit_address, + [34788] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2667), 1, + sym_unit_address, + [34795] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2669), 1, + sym_unit_address, + [34802] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2671), 1, + sym_unit_address, + [34809] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2673), 1, + sym_identifier, }; static const uint32_t ts_small_parse_table_map[] = { @@ -33645,20 +33704,20 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(197)] = 13980, [SMALL_STATE(198)] = 14011, [SMALL_STATE(199)] = 14042, - [SMALL_STATE(200)] = 14086, - [SMALL_STATE(201)] = 14124, - [SMALL_STATE(202)] = 14158, - [SMALL_STATE(203)] = 14188, - [SMALL_STATE(204)] = 14238, - [SMALL_STATE(205)] = 14286, - [SMALL_STATE(206)] = 14334, - [SMALL_STATE(207)] = 14380, - [SMALL_STATE(208)] = 14422, - [SMALL_STATE(209)] = 14458, - [SMALL_STATE(210)] = 14516, - [SMALL_STATE(211)] = 14546, - [SMALL_STATE(212)] = 14600, - [SMALL_STATE(213)] = 14634, + [SMALL_STATE(200)] = 14096, + [SMALL_STATE(201)] = 14130, + [SMALL_STATE(202)] = 14160, + [SMALL_STATE(203)] = 14218, + [SMALL_STATE(204)] = 14248, + [SMALL_STATE(205)] = 14292, + [SMALL_STATE(206)] = 14322, + [SMALL_STATE(207)] = 14360, + [SMALL_STATE(208)] = 14394, + [SMALL_STATE(209)] = 14444, + [SMALL_STATE(210)] = 14492, + [SMALL_STATE(211)] = 14540, + [SMALL_STATE(212)] = 14586, + [SMALL_STATE(213)] = 14628, [SMALL_STATE(214)] = 14664, [SMALL_STATE(215)] = 14693, [SMALL_STATE(216)] = 14722, @@ -33669,137 +33728,137 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(221)] = 14867, [SMALL_STATE(222)] = 14896, [SMALL_STATE(223)] = 14925, - [SMALL_STATE(224)] = 14980, - [SMALL_STATE(225)] = 15009, - [SMALL_STATE(226)] = 15038, - [SMALL_STATE(227)] = 15067, - [SMALL_STATE(228)] = 15122, - [SMALL_STATE(229)] = 15151, - [SMALL_STATE(230)] = 15180, - [SMALL_STATE(231)] = 15209, - [SMALL_STATE(232)] = 15238, - [SMALL_STATE(233)] = 15267, - [SMALL_STATE(234)] = 15296, - [SMALL_STATE(235)] = 15325, - [SMALL_STATE(236)] = 15354, - [SMALL_STATE(237)] = 15383, - [SMALL_STATE(238)] = 15412, - [SMALL_STATE(239)] = 15441, - [SMALL_STATE(240)] = 15470, - [SMALL_STATE(241)] = 15499, - [SMALL_STATE(242)] = 15528, - [SMALL_STATE(243)] = 15557, - [SMALL_STATE(244)] = 15586, - [SMALL_STATE(245)] = 15615, - [SMALL_STATE(246)] = 15644, - [SMALL_STATE(247)] = 15673, - [SMALL_STATE(248)] = 15702, - [SMALL_STATE(249)] = 15731, - [SMALL_STATE(250)] = 15760, - [SMALL_STATE(251)] = 15789, - [SMALL_STATE(252)] = 15822, - [SMALL_STATE(253)] = 15851, - [SMALL_STATE(254)] = 15880, - [SMALL_STATE(255)] = 15909, - [SMALL_STATE(256)] = 15938, - [SMALL_STATE(257)] = 15967, - [SMALL_STATE(258)] = 15996, - [SMALL_STATE(259)] = 16025, - [SMALL_STATE(260)] = 16054, - [SMALL_STATE(261)] = 16083, - [SMALL_STATE(262)] = 16112, - [SMALL_STATE(263)] = 16141, - [SMALL_STATE(264)] = 16170, - [SMALL_STATE(265)] = 16199, - [SMALL_STATE(266)] = 16228, - [SMALL_STATE(267)] = 16281, - [SMALL_STATE(268)] = 16310, - [SMALL_STATE(269)] = 16339, - [SMALL_STATE(270)] = 16368, - [SMALL_STATE(271)] = 16397, - [SMALL_STATE(272)] = 16426, - [SMALL_STATE(273)] = 16455, - [SMALL_STATE(274)] = 16484, - [SMALL_STATE(275)] = 16513, - [SMALL_STATE(276)] = 16542, - [SMALL_STATE(277)] = 16571, - [SMALL_STATE(278)] = 16600, - [SMALL_STATE(279)] = 16629, - [SMALL_STATE(280)] = 16658, - [SMALL_STATE(281)] = 16687, - [SMALL_STATE(282)] = 16716, - [SMALL_STATE(283)] = 16745, - [SMALL_STATE(284)] = 16774, - [SMALL_STATE(285)] = 16803, - [SMALL_STATE(286)] = 16832, - [SMALL_STATE(287)] = 16861, + [SMALL_STATE(224)] = 14954, + [SMALL_STATE(225)] = 14983, + [SMALL_STATE(226)] = 15012, + [SMALL_STATE(227)] = 15041, + [SMALL_STATE(228)] = 15070, + [SMALL_STATE(229)] = 15099, + [SMALL_STATE(230)] = 15128, + [SMALL_STATE(231)] = 15157, + [SMALL_STATE(232)] = 15212, + [SMALL_STATE(233)] = 15245, + [SMALL_STATE(234)] = 15274, + [SMALL_STATE(235)] = 15303, + [SMALL_STATE(236)] = 15332, + [SMALL_STATE(237)] = 15361, + [SMALL_STATE(238)] = 15390, + [SMALL_STATE(239)] = 15419, + [SMALL_STATE(240)] = 15448, + [SMALL_STATE(241)] = 15477, + [SMALL_STATE(242)] = 15506, + [SMALL_STATE(243)] = 15535, + [SMALL_STATE(244)] = 15564, + [SMALL_STATE(245)] = 15593, + [SMALL_STATE(246)] = 15622, + [SMALL_STATE(247)] = 15651, + [SMALL_STATE(248)] = 15680, + [SMALL_STATE(249)] = 15709, + [SMALL_STATE(250)] = 15738, + [SMALL_STATE(251)] = 15767, + [SMALL_STATE(252)] = 15796, + [SMALL_STATE(253)] = 15825, + [SMALL_STATE(254)] = 15854, + [SMALL_STATE(255)] = 15883, + [SMALL_STATE(256)] = 15912, + [SMALL_STATE(257)] = 15941, + [SMALL_STATE(258)] = 15970, + [SMALL_STATE(259)] = 15999, + [SMALL_STATE(260)] = 16028, + [SMALL_STATE(261)] = 16057, + [SMALL_STATE(262)] = 16086, + [SMALL_STATE(263)] = 16115, + [SMALL_STATE(264)] = 16144, + [SMALL_STATE(265)] = 16173, + [SMALL_STATE(266)] = 16202, + [SMALL_STATE(267)] = 16231, + [SMALL_STATE(268)] = 16260, + [SMALL_STATE(269)] = 16289, + [SMALL_STATE(270)] = 16318, + [SMALL_STATE(271)] = 16347, + [SMALL_STATE(272)] = 16376, + [SMALL_STATE(273)] = 16405, + [SMALL_STATE(274)] = 16434, + [SMALL_STATE(275)] = 16463, + [SMALL_STATE(276)] = 16492, + [SMALL_STATE(277)] = 16521, + [SMALL_STATE(278)] = 16550, + [SMALL_STATE(279)] = 16579, + [SMALL_STATE(280)] = 16608, + [SMALL_STATE(281)] = 16637, + [SMALL_STATE(282)] = 16666, + [SMALL_STATE(283)] = 16695, + [SMALL_STATE(284)] = 16748, + [SMALL_STATE(285)] = 16777, + [SMALL_STATE(286)] = 16806, + [SMALL_STATE(287)] = 16835, [SMALL_STATE(288)] = 16890, [SMALL_STATE(289)] = 16919, [SMALL_STATE(290)] = 16948, - [SMALL_STATE(291)] = 16992, - [SMALL_STATE(292)] = 17044, - [SMALL_STATE(293)] = 17072, - [SMALL_STATE(294)] = 17100, - [SMALL_STATE(295)] = 17128, - [SMALL_STATE(296)] = 17156, - [SMALL_STATE(297)] = 17184, - [SMALL_STATE(298)] = 17212, - [SMALL_STATE(299)] = 17240, - [SMALL_STATE(300)] = 17268, - [SMALL_STATE(301)] = 17296, - [SMALL_STATE(302)] = 17324, - [SMALL_STATE(303)] = 17352, - [SMALL_STATE(304)] = 17380, - [SMALL_STATE(305)] = 17408, - [SMALL_STATE(306)] = 17436, - [SMALL_STATE(307)] = 17464, - [SMALL_STATE(308)] = 17492, - [SMALL_STATE(309)] = 17520, - [SMALL_STATE(310)] = 17548, - [SMALL_STATE(311)] = 17576, - [SMALL_STATE(312)] = 17604, - [SMALL_STATE(313)] = 17632, - [SMALL_STATE(314)] = 17660, - [SMALL_STATE(315)] = 17688, - [SMALL_STATE(316)] = 17716, - [SMALL_STATE(317)] = 17744, - [SMALL_STATE(318)] = 17772, - [SMALL_STATE(319)] = 17814, - [SMALL_STATE(320)] = 17850, - [SMALL_STATE(321)] = 17882, - [SMALL_STATE(322)] = 17910, - [SMALL_STATE(323)] = 17958, - [SMALL_STATE(324)] = 18004, - [SMALL_STATE(325)] = 18050, - [SMALL_STATE(326)] = 18078, - [SMALL_STATE(327)] = 18106, - [SMALL_STATE(328)] = 18140, - [SMALL_STATE(329)] = 18168, - [SMALL_STATE(330)] = 18196, - [SMALL_STATE(331)] = 18224, - [SMALL_STATE(332)] = 18252, - [SMALL_STATE(333)] = 18304, - [SMALL_STATE(334)] = 18332, - [SMALL_STATE(335)] = 18360, - [SMALL_STATE(336)] = 18388, - [SMALL_STATE(337)] = 18416, - [SMALL_STATE(338)] = 18444, - [SMALL_STATE(339)] = 18472, - [SMALL_STATE(340)] = 18500, - [SMALL_STATE(341)] = 18528, - [SMALL_STATE(342)] = 18556, - [SMALL_STATE(343)] = 18584, - [SMALL_STATE(344)] = 18612, - [SMALL_STATE(345)] = 18664, - [SMALL_STATE(346)] = 18692, - [SMALL_STATE(347)] = 18720, - [SMALL_STATE(348)] = 18748, + [SMALL_STATE(291)] = 16994, + [SMALL_STATE(292)] = 17022, + [SMALL_STATE(293)] = 17050, + [SMALL_STATE(294)] = 17078, + [SMALL_STATE(295)] = 17106, + [SMALL_STATE(296)] = 17134, + [SMALL_STATE(297)] = 17162, + [SMALL_STATE(298)] = 17190, + [SMALL_STATE(299)] = 17218, + [SMALL_STATE(300)] = 17246, + [SMALL_STATE(301)] = 17274, + [SMALL_STATE(302)] = 17302, + [SMALL_STATE(303)] = 17330, + [SMALL_STATE(304)] = 17358, + [SMALL_STATE(305)] = 17386, + [SMALL_STATE(306)] = 17414, + [SMALL_STATE(307)] = 17442, + [SMALL_STATE(308)] = 17470, + [SMALL_STATE(309)] = 17498, + [SMALL_STATE(310)] = 17526, + [SMALL_STATE(311)] = 17554, + [SMALL_STATE(312)] = 17582, + [SMALL_STATE(313)] = 17610, + [SMALL_STATE(314)] = 17638, + [SMALL_STATE(315)] = 17666, + [SMALL_STATE(316)] = 17694, + [SMALL_STATE(317)] = 17722, + [SMALL_STATE(318)] = 17750, + [SMALL_STATE(319)] = 17778, + [SMALL_STATE(320)] = 17806, + [SMALL_STATE(321)] = 17834, + [SMALL_STATE(322)] = 17862, + [SMALL_STATE(323)] = 17890, + [SMALL_STATE(324)] = 17918, + [SMALL_STATE(325)] = 17946, + [SMALL_STATE(326)] = 17974, + [SMALL_STATE(327)] = 18002, + [SMALL_STATE(328)] = 18030, + [SMALL_STATE(329)] = 18058, + [SMALL_STATE(330)] = 18108, + [SMALL_STATE(331)] = 18160, + [SMALL_STATE(332)] = 18212, + [SMALL_STATE(333)] = 18264, + [SMALL_STATE(334)] = 18292, + [SMALL_STATE(335)] = 18320, + [SMALL_STATE(336)] = 18348, + [SMALL_STATE(337)] = 18376, + [SMALL_STATE(338)] = 18404, + [SMALL_STATE(339)] = 18432, + [SMALL_STATE(340)] = 18460, + [SMALL_STATE(341)] = 18488, + [SMALL_STATE(342)] = 18516, + [SMALL_STATE(343)] = 18544, + [SMALL_STATE(344)] = 18586, + [SMALL_STATE(345)] = 18614, + [SMALL_STATE(346)] = 18650, + [SMALL_STATE(347)] = 18682, + [SMALL_STATE(348)] = 18730, [SMALL_STATE(349)] = 18776, - [SMALL_STATE(350)] = 18804, - [SMALL_STATE(351)] = 18832, - [SMALL_STATE(352)] = 18860, - [SMALL_STATE(353)] = 18910, - [SMALL_STATE(354)] = 18938, + [SMALL_STATE(350)] = 18820, + [SMALL_STATE(351)] = 18860, + [SMALL_STATE(352)] = 18894, + [SMALL_STATE(353)] = 18922, + [SMALL_STATE(354)] = 18950, [SMALL_STATE(355)] = 18978, [SMALL_STATE(356)] = 19005, [SMALL_STATE(357)] = 19032, @@ -33807,96 +33866,96 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(359)] = 19086, [SMALL_STATE(360)] = 19113, [SMALL_STATE(361)] = 19140, - [SMALL_STATE(362)] = 19167, - [SMALL_STATE(363)] = 19194, - [SMALL_STATE(364)] = 19221, - [SMALL_STATE(365)] = 19248, - [SMALL_STATE(366)] = 19275, - [SMALL_STATE(367)] = 19302, - [SMALL_STATE(368)] = 19329, - [SMALL_STATE(369)] = 19356, - [SMALL_STATE(370)] = 19383, - [SMALL_STATE(371)] = 19410, - [SMALL_STATE(372)] = 19437, - [SMALL_STATE(373)] = 19464, - [SMALL_STATE(374)] = 19491, - [SMALL_STATE(375)] = 19518, - [SMALL_STATE(376)] = 19545, - [SMALL_STATE(377)] = 19572, - [SMALL_STATE(378)] = 19599, - [SMALL_STATE(379)] = 19626, - [SMALL_STATE(380)] = 19653, - [SMALL_STATE(381)] = 19680, - [SMALL_STATE(382)] = 19707, - [SMALL_STATE(383)] = 19734, - [SMALL_STATE(384)] = 19761, - [SMALL_STATE(385)] = 19788, - [SMALL_STATE(386)] = 19815, - [SMALL_STATE(387)] = 19842, - [SMALL_STATE(388)] = 19869, - [SMALL_STATE(389)] = 19896, - [SMALL_STATE(390)] = 19923, - [SMALL_STATE(391)] = 19950, - [SMALL_STATE(392)] = 19977, - [SMALL_STATE(393)] = 20004, - [SMALL_STATE(394)] = 20049, - [SMALL_STATE(395)] = 20092, - [SMALL_STATE(396)] = 20119, - [SMALL_STATE(397)] = 20146, - [SMALL_STATE(398)] = 20187, - [SMALL_STATE(399)] = 20226, - [SMALL_STATE(400)] = 20275, - [SMALL_STATE(401)] = 20310, - [SMALL_STATE(402)] = 20341, - [SMALL_STATE(403)] = 20386, - [SMALL_STATE(404)] = 20413, - [SMALL_STATE(405)] = 20458, - [SMALL_STATE(406)] = 20503, - [SMALL_STATE(407)] = 20548, - [SMALL_STATE(408)] = 20597, - [SMALL_STATE(409)] = 20642, - [SMALL_STATE(410)] = 20669, - [SMALL_STATE(411)] = 20696, - [SMALL_STATE(412)] = 20723, - [SMALL_STATE(413)] = 20750, - [SMALL_STATE(414)] = 20795, - [SMALL_STATE(415)] = 20840, - [SMALL_STATE(416)] = 20867, - [SMALL_STATE(417)] = 20894, - [SMALL_STATE(418)] = 20921, - [SMALL_STATE(419)] = 20966, - [SMALL_STATE(420)] = 20993, - [SMALL_STATE(421)] = 21020, - [SMALL_STATE(422)] = 21047, - [SMALL_STATE(423)] = 21074, - [SMALL_STATE(424)] = 21101, - [SMALL_STATE(425)] = 21128, - [SMALL_STATE(426)] = 21155, - [SMALL_STATE(427)] = 21182, - [SMALL_STATE(428)] = 21209, - [SMALL_STATE(429)] = 21236, - [SMALL_STATE(430)] = 21263, - [SMALL_STATE(431)] = 21290, - [SMALL_STATE(432)] = 21317, - [SMALL_STATE(433)] = 21344, - [SMALL_STATE(434)] = 21371, - [SMALL_STATE(435)] = 21408, - [SMALL_STATE(436)] = 21441, - [SMALL_STATE(437)] = 21470, - [SMALL_STATE(438)] = 21497, - [SMALL_STATE(439)] = 21524, - [SMALL_STATE(440)] = 21551, - [SMALL_STATE(441)] = 21578, - [SMALL_STATE(442)] = 21605, - [SMALL_STATE(443)] = 21632, - [SMALL_STATE(444)] = 21659, - [SMALL_STATE(445)] = 21686, - [SMALL_STATE(446)] = 21713, - [SMALL_STATE(447)] = 21740, - [SMALL_STATE(448)] = 21767, - [SMALL_STATE(449)] = 21794, - [SMALL_STATE(450)] = 21821, - [SMALL_STATE(451)] = 21848, + [SMALL_STATE(362)] = 19185, + [SMALL_STATE(363)] = 19212, + [SMALL_STATE(364)] = 19239, + [SMALL_STATE(365)] = 19266, + [SMALL_STATE(366)] = 19305, + [SMALL_STATE(367)] = 19332, + [SMALL_STATE(368)] = 19359, + [SMALL_STATE(369)] = 19404, + [SMALL_STATE(370)] = 19449, + [SMALL_STATE(371)] = 19484, + [SMALL_STATE(372)] = 19511, + [SMALL_STATE(373)] = 19542, + [SMALL_STATE(374)] = 19569, + [SMALL_STATE(375)] = 19596, + [SMALL_STATE(376)] = 19623, + [SMALL_STATE(377)] = 19650, + [SMALL_STATE(378)] = 19677, + [SMALL_STATE(379)] = 19704, + [SMALL_STATE(380)] = 19731, + [SMALL_STATE(381)] = 19776, + [SMALL_STATE(382)] = 19803, + [SMALL_STATE(383)] = 19830, + [SMALL_STATE(384)] = 19857, + [SMALL_STATE(385)] = 19884, + [SMALL_STATE(386)] = 19911, + [SMALL_STATE(387)] = 19938, + [SMALL_STATE(388)] = 19983, + [SMALL_STATE(389)] = 20028, + [SMALL_STATE(390)] = 20055, + [SMALL_STATE(391)] = 20092, + [SMALL_STATE(392)] = 20119, + [SMALL_STATE(393)] = 20146, + [SMALL_STATE(394)] = 20173, + [SMALL_STATE(395)] = 20200, + [SMALL_STATE(396)] = 20227, + [SMALL_STATE(397)] = 20254, + [SMALL_STATE(398)] = 20303, + [SMALL_STATE(399)] = 20330, + [SMALL_STATE(400)] = 20357, + [SMALL_STATE(401)] = 20384, + [SMALL_STATE(402)] = 20411, + [SMALL_STATE(403)] = 20438, + [SMALL_STATE(404)] = 20465, + [SMALL_STATE(405)] = 20492, + [SMALL_STATE(406)] = 20519, + [SMALL_STATE(407)] = 20564, + [SMALL_STATE(408)] = 20607, + [SMALL_STATE(409)] = 20634, + [SMALL_STATE(410)] = 20661, + [SMALL_STATE(411)] = 20688, + [SMALL_STATE(412)] = 20715, + [SMALL_STATE(413)] = 20742, + [SMALL_STATE(414)] = 20769, + [SMALL_STATE(415)] = 20796, + [SMALL_STATE(416)] = 20823, + [SMALL_STATE(417)] = 20850, + [SMALL_STATE(418)] = 20877, + [SMALL_STATE(419)] = 20904, + [SMALL_STATE(420)] = 20931, + [SMALL_STATE(421)] = 20958, + [SMALL_STATE(422)] = 20985, + [SMALL_STATE(423)] = 21018, + [SMALL_STATE(424)] = 21045, + [SMALL_STATE(425)] = 21074, + [SMALL_STATE(426)] = 21101, + [SMALL_STATE(427)] = 21128, + [SMALL_STATE(428)] = 21155, + [SMALL_STATE(429)] = 21182, + [SMALL_STATE(430)] = 21209, + [SMALL_STATE(431)] = 21236, + [SMALL_STATE(432)] = 21263, + [SMALL_STATE(433)] = 21290, + [SMALL_STATE(434)] = 21317, + [SMALL_STATE(435)] = 21344, + [SMALL_STATE(436)] = 21371, + [SMALL_STATE(437)] = 21398, + [SMALL_STATE(438)] = 21425, + [SMALL_STATE(439)] = 21452, + [SMALL_STATE(440)] = 21501, + [SMALL_STATE(441)] = 21528, + [SMALL_STATE(442)] = 21555, + [SMALL_STATE(443)] = 21596, + [SMALL_STATE(444)] = 21623, + [SMALL_STATE(445)] = 21650, + [SMALL_STATE(446)] = 21677, + [SMALL_STATE(447)] = 21704, + [SMALL_STATE(448)] = 21731, + [SMALL_STATE(449)] = 21758, + [SMALL_STATE(450)] = 21785, + [SMALL_STATE(451)] = 21830, [SMALL_STATE(452)] = 21875, [SMALL_STATE(453)] = 21902, [SMALL_STATE(454)] = 21929, @@ -33916,148 +33975,148 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(468)] = 22281, [SMALL_STATE(469)] = 22306, [SMALL_STATE(470)] = 22331, - [SMALL_STATE(471)] = 22356, - [SMALL_STATE(472)] = 22381, - [SMALL_STATE(473)] = 22426, - [SMALL_STATE(474)] = 22451, - [SMALL_STATE(475)] = 22476, - [SMALL_STATE(476)] = 22501, - [SMALL_STATE(477)] = 22526, - [SMALL_STATE(478)] = 22551, - [SMALL_STATE(479)] = 22576, - [SMALL_STATE(480)] = 22601, - [SMALL_STATE(481)] = 22626, - [SMALL_STATE(482)] = 22651, - [SMALL_STATE(483)] = 22676, - [SMALL_STATE(484)] = 22701, - [SMALL_STATE(485)] = 22726, - [SMALL_STATE(486)] = 22751, - [SMALL_STATE(487)] = 22776, - [SMALL_STATE(488)] = 22801, - [SMALL_STATE(489)] = 22826, - [SMALL_STATE(490)] = 22851, - [SMALL_STATE(491)] = 22876, - [SMALL_STATE(492)] = 22901, - [SMALL_STATE(493)] = 22926, - [SMALL_STATE(494)] = 22951, - [SMALL_STATE(495)] = 22976, - [SMALL_STATE(496)] = 23001, - [SMALL_STATE(497)] = 23026, - [SMALL_STATE(498)] = 23051, - [SMALL_STATE(499)] = 23076, - [SMALL_STATE(500)] = 23101, - [SMALL_STATE(501)] = 23126, - [SMALL_STATE(502)] = 23171, - [SMALL_STATE(503)] = 23196, - [SMALL_STATE(504)] = 23221, - [SMALL_STATE(505)] = 23246, - [SMALL_STATE(506)] = 23271, - [SMALL_STATE(507)] = 23296, - [SMALL_STATE(508)] = 23341, + [SMALL_STATE(471)] = 22376, + [SMALL_STATE(472)] = 22401, + [SMALL_STATE(473)] = 22446, + [SMALL_STATE(474)] = 22471, + [SMALL_STATE(475)] = 22516, + [SMALL_STATE(476)] = 22541, + [SMALL_STATE(477)] = 22586, + [SMALL_STATE(478)] = 22611, + [SMALL_STATE(479)] = 22636, + [SMALL_STATE(480)] = 22661, + [SMALL_STATE(481)] = 22686, + [SMALL_STATE(482)] = 22711, + [SMALL_STATE(483)] = 22736, + [SMALL_STATE(484)] = 22761, + [SMALL_STATE(485)] = 22786, + [SMALL_STATE(486)] = 22811, + [SMALL_STATE(487)] = 22836, + [SMALL_STATE(488)] = 22861, + [SMALL_STATE(489)] = 22886, + [SMALL_STATE(490)] = 22911, + [SMALL_STATE(491)] = 22936, + [SMALL_STATE(492)] = 22961, + [SMALL_STATE(493)] = 22986, + [SMALL_STATE(494)] = 23011, + [SMALL_STATE(495)] = 23036, + [SMALL_STATE(496)] = 23061, + [SMALL_STATE(497)] = 23086, + [SMALL_STATE(498)] = 23111, + [SMALL_STATE(499)] = 23136, + [SMALL_STATE(500)] = 23161, + [SMALL_STATE(501)] = 23186, + [SMALL_STATE(502)] = 23211, + [SMALL_STATE(503)] = 23236, + [SMALL_STATE(504)] = 23261, + [SMALL_STATE(505)] = 23286, + [SMALL_STATE(506)] = 23311, + [SMALL_STATE(507)] = 23336, + [SMALL_STATE(508)] = 23361, [SMALL_STATE(509)] = 23386, - [SMALL_STATE(510)] = 23431, - [SMALL_STATE(511)] = 23476, - [SMALL_STATE(512)] = 23501, - [SMALL_STATE(513)] = 23546, - [SMALL_STATE(514)] = 23571, - [SMALL_STATE(515)] = 23596, - [SMALL_STATE(516)] = 23621, - [SMALL_STATE(517)] = 23666, - [SMALL_STATE(518)] = 23711, - [SMALL_STATE(519)] = 23756, - [SMALL_STATE(520)] = 23801, - [SMALL_STATE(521)] = 23826, - [SMALL_STATE(522)] = 23871, - [SMALL_STATE(523)] = 23896, - [SMALL_STATE(524)] = 23921, - [SMALL_STATE(525)] = 23946, - [SMALL_STATE(526)] = 23991, - [SMALL_STATE(527)] = 24036, - [SMALL_STATE(528)] = 24081, - [SMALL_STATE(529)] = 24126, - [SMALL_STATE(530)] = 24151, - [SMALL_STATE(531)] = 24196, - [SMALL_STATE(532)] = 24221, - [SMALL_STATE(533)] = 24246, - [SMALL_STATE(534)] = 24271, - [SMALL_STATE(535)] = 24296, - [SMALL_STATE(536)] = 24321, - [SMALL_STATE(537)] = 24346, - [SMALL_STATE(538)] = 24371, - [SMALL_STATE(539)] = 24396, - [SMALL_STATE(540)] = 24421, - [SMALL_STATE(541)] = 24446, - [SMALL_STATE(542)] = 24471, - [SMALL_STATE(543)] = 24496, - [SMALL_STATE(544)] = 24521, - [SMALL_STATE(545)] = 24546, - [SMALL_STATE(546)] = 24571, - [SMALL_STATE(547)] = 24596, - [SMALL_STATE(548)] = 24621, - [SMALL_STATE(549)] = 24646, - [SMALL_STATE(550)] = 24671, - [SMALL_STATE(551)] = 24696, - [SMALL_STATE(552)] = 24721, - [SMALL_STATE(553)] = 24746, - [SMALL_STATE(554)] = 24771, - [SMALL_STATE(555)] = 24796, - [SMALL_STATE(556)] = 24821, - [SMALL_STATE(557)] = 24846, - [SMALL_STATE(558)] = 24871, - [SMALL_STATE(559)] = 24896, - [SMALL_STATE(560)] = 24921, - [SMALL_STATE(561)] = 24946, - [SMALL_STATE(562)] = 24971, - [SMALL_STATE(563)] = 24996, - [SMALL_STATE(564)] = 25021, - [SMALL_STATE(565)] = 25046, - [SMALL_STATE(566)] = 25071, - [SMALL_STATE(567)] = 25096, - [SMALL_STATE(568)] = 25121, - [SMALL_STATE(569)] = 25146, - [SMALL_STATE(570)] = 25171, - [SMALL_STATE(571)] = 25196, - [SMALL_STATE(572)] = 25221, - [SMALL_STATE(573)] = 25246, - [SMALL_STATE(574)] = 25271, - [SMALL_STATE(575)] = 25296, - [SMALL_STATE(576)] = 25321, - [SMALL_STATE(577)] = 25346, - [SMALL_STATE(578)] = 25371, - [SMALL_STATE(579)] = 25396, - [SMALL_STATE(580)] = 25421, - [SMALL_STATE(581)] = 25446, - [SMALL_STATE(582)] = 25471, - [SMALL_STATE(583)] = 25496, - [SMALL_STATE(584)] = 25521, - [SMALL_STATE(585)] = 25546, - [SMALL_STATE(586)] = 25571, - [SMALL_STATE(587)] = 25596, - [SMALL_STATE(588)] = 25621, - [SMALL_STATE(589)] = 25646, - [SMALL_STATE(590)] = 25671, - [SMALL_STATE(591)] = 25696, - [SMALL_STATE(592)] = 25721, - [SMALL_STATE(593)] = 25746, - [SMALL_STATE(594)] = 25771, - [SMALL_STATE(595)] = 25796, - [SMALL_STATE(596)] = 25821, - [SMALL_STATE(597)] = 25866, - [SMALL_STATE(598)] = 25911, - [SMALL_STATE(599)] = 25936, + [SMALL_STATE(510)] = 23411, + [SMALL_STATE(511)] = 23436, + [SMALL_STATE(512)] = 23461, + [SMALL_STATE(513)] = 23486, + [SMALL_STATE(514)] = 23511, + [SMALL_STATE(515)] = 23536, + [SMALL_STATE(516)] = 23561, + [SMALL_STATE(517)] = 23586, + [SMALL_STATE(518)] = 23611, + [SMALL_STATE(519)] = 23636, + [SMALL_STATE(520)] = 23661, + [SMALL_STATE(521)] = 23686, + [SMALL_STATE(522)] = 23711, + [SMALL_STATE(523)] = 23736, + [SMALL_STATE(524)] = 23761, + [SMALL_STATE(525)] = 23786, + [SMALL_STATE(526)] = 23811, + [SMALL_STATE(527)] = 23836, + [SMALL_STATE(528)] = 23861, + [SMALL_STATE(529)] = 23886, + [SMALL_STATE(530)] = 23911, + [SMALL_STATE(531)] = 23936, + [SMALL_STATE(532)] = 23961, + [SMALL_STATE(533)] = 23986, + [SMALL_STATE(534)] = 24011, + [SMALL_STATE(535)] = 24036, + [SMALL_STATE(536)] = 24061, + [SMALL_STATE(537)] = 24086, + [SMALL_STATE(538)] = 24111, + [SMALL_STATE(539)] = 24136, + [SMALL_STATE(540)] = 24161, + [SMALL_STATE(541)] = 24186, + [SMALL_STATE(542)] = 24211, + [SMALL_STATE(543)] = 24236, + [SMALL_STATE(544)] = 24261, + [SMALL_STATE(545)] = 24286, + [SMALL_STATE(546)] = 24311, + [SMALL_STATE(547)] = 24336, + [SMALL_STATE(548)] = 24361, + [SMALL_STATE(549)] = 24386, + [SMALL_STATE(550)] = 24411, + [SMALL_STATE(551)] = 24436, + [SMALL_STATE(552)] = 24461, + [SMALL_STATE(553)] = 24486, + [SMALL_STATE(554)] = 24511, + [SMALL_STATE(555)] = 24536, + [SMALL_STATE(556)] = 24561, + [SMALL_STATE(557)] = 24586, + [SMALL_STATE(558)] = 24611, + [SMALL_STATE(559)] = 24636, + [SMALL_STATE(560)] = 24661, + [SMALL_STATE(561)] = 24686, + [SMALL_STATE(562)] = 24711, + [SMALL_STATE(563)] = 24736, + [SMALL_STATE(564)] = 24761, + [SMALL_STATE(565)] = 24786, + [SMALL_STATE(566)] = 24811, + [SMALL_STATE(567)] = 24836, + [SMALL_STATE(568)] = 24861, + [SMALL_STATE(569)] = 24886, + [SMALL_STATE(570)] = 24911, + [SMALL_STATE(571)] = 24936, + [SMALL_STATE(572)] = 24961, + [SMALL_STATE(573)] = 24986, + [SMALL_STATE(574)] = 25011, + [SMALL_STATE(575)] = 25036, + [SMALL_STATE(576)] = 25061, + [SMALL_STATE(577)] = 25086, + [SMALL_STATE(578)] = 25131, + [SMALL_STATE(579)] = 25156, + [SMALL_STATE(580)] = 25181, + [SMALL_STATE(581)] = 25206, + [SMALL_STATE(582)] = 25251, + [SMALL_STATE(583)] = 25296, + [SMALL_STATE(584)] = 25341, + [SMALL_STATE(585)] = 25386, + [SMALL_STATE(586)] = 25411, + [SMALL_STATE(587)] = 25456, + [SMALL_STATE(588)] = 25481, + [SMALL_STATE(589)] = 25506, + [SMALL_STATE(590)] = 25551, + [SMALL_STATE(591)] = 25596, + [SMALL_STATE(592)] = 25641, + [SMALL_STATE(593)] = 25686, + [SMALL_STATE(594)] = 25711, + [SMALL_STATE(595)] = 25756, + [SMALL_STATE(596)] = 25781, + [SMALL_STATE(597)] = 25826, + [SMALL_STATE(598)] = 25871, + [SMALL_STATE(599)] = 25916, [SMALL_STATE(600)] = 25961, [SMALL_STATE(601)] = 25986, - [SMALL_STATE(602)] = 26011, - [SMALL_STATE(603)] = 26036, - [SMALL_STATE(604)] = 26061, - [SMALL_STATE(605)] = 26086, - [SMALL_STATE(606)] = 26111, - [SMALL_STATE(607)] = 26136, - [SMALL_STATE(608)] = 26161, - [SMALL_STATE(609)] = 26186, - [SMALL_STATE(610)] = 26211, - [SMALL_STATE(611)] = 26236, - [SMALL_STATE(612)] = 26261, + [SMALL_STATE(602)] = 26031, + [SMALL_STATE(603)] = 26056, + [SMALL_STATE(604)] = 26081, + [SMALL_STATE(605)] = 26106, + [SMALL_STATE(606)] = 26131, + [SMALL_STATE(607)] = 26156, + [SMALL_STATE(608)] = 26181, + [SMALL_STATE(609)] = 26206, + [SMALL_STATE(610)] = 26231, + [SMALL_STATE(611)] = 26256, + [SMALL_STATE(612)] = 26281, [SMALL_STATE(613)] = 26306, [SMALL_STATE(614)] = 26331, [SMALL_STATE(615)] = 26356, @@ -34065,24 +34124,24 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(617)] = 26406, [SMALL_STATE(618)] = 26431, [SMALL_STATE(619)] = 26456, - [SMALL_STATE(620)] = 26495, - [SMALL_STATE(621)] = 26534, - [SMALL_STATE(622)] = 26573, - [SMALL_STATE(623)] = 26612, - [SMALL_STATE(624)] = 26651, - [SMALL_STATE(625)] = 26690, - [SMALL_STATE(626)] = 26729, - [SMALL_STATE(627)] = 26768, - [SMALL_STATE(628)] = 26807, - [SMALL_STATE(629)] = 26846, - [SMALL_STATE(630)] = 26885, - [SMALL_STATE(631)] = 26924, - [SMALL_STATE(632)] = 26963, - [SMALL_STATE(633)] = 27002, - [SMALL_STATE(634)] = 27041, - [SMALL_STATE(635)] = 27080, - [SMALL_STATE(636)] = 27113, - [SMALL_STATE(637)] = 27152, + [SMALL_STATE(620)] = 26489, + [SMALL_STATE(621)] = 26522, + [SMALL_STATE(622)] = 26561, + [SMALL_STATE(623)] = 26600, + [SMALL_STATE(624)] = 26639, + [SMALL_STATE(625)] = 26678, + [SMALL_STATE(626)] = 26717, + [SMALL_STATE(627)] = 26756, + [SMALL_STATE(628)] = 26795, + [SMALL_STATE(629)] = 26834, + [SMALL_STATE(630)] = 26873, + [SMALL_STATE(631)] = 26912, + [SMALL_STATE(632)] = 26951, + [SMALL_STATE(633)] = 26990, + [SMALL_STATE(634)] = 27029, + [SMALL_STATE(635)] = 27068, + [SMALL_STATE(636)] = 27107, + [SMALL_STATE(637)] = 27146, [SMALL_STATE(638)] = 27185, [SMALL_STATE(639)] = 27224, [SMALL_STATE(640)] = 27263, @@ -34091,7 +34150,7 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(643)] = 27362, [SMALL_STATE(644)] = 27392, [SMALL_STATE(645)] = 27422, - [SMALL_STATE(646)] = 27458, + [SMALL_STATE(646)] = 27452, [SMALL_STATE(647)] = 27488, [SMALL_STATE(648)] = 27518, [SMALL_STATE(649)] = 27548, @@ -34123,139 +34182,139 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(675)] = 28328, [SMALL_STATE(676)] = 28357, [SMALL_STATE(677)] = 28383, - [SMALL_STATE(678)] = 28417, - [SMALL_STATE(679)] = 28451, - [SMALL_STATE(680)] = 28477, - [SMALL_STATE(681)] = 28517, - [SMALL_STATE(682)] = 28543, - [SMALL_STATE(683)] = 28569, - [SMALL_STATE(684)] = 28595, - [SMALL_STATE(685)] = 28621, - [SMALL_STATE(686)] = 28647, - [SMALL_STATE(687)] = 28673, - [SMALL_STATE(688)] = 28699, - [SMALL_STATE(689)] = 28725, - [SMALL_STATE(690)] = 28751, - [SMALL_STATE(691)] = 28791, - [SMALL_STATE(692)] = 28831, - [SMALL_STATE(693)] = 28865, - [SMALL_STATE(694)] = 28891, - [SMALL_STATE(695)] = 28917, - [SMALL_STATE(696)] = 28943, - [SMALL_STATE(697)] = 28969, - [SMALL_STATE(698)] = 28995, + [SMALL_STATE(678)] = 28409, + [SMALL_STATE(679)] = 28435, + [SMALL_STATE(680)] = 28461, + [SMALL_STATE(681)] = 28487, + [SMALL_STATE(682)] = 28513, + [SMALL_STATE(683)] = 28553, + [SMALL_STATE(684)] = 28579, + [SMALL_STATE(685)] = 28605, + [SMALL_STATE(686)] = 28645, + [SMALL_STATE(687)] = 28671, + [SMALL_STATE(688)] = 28711, + [SMALL_STATE(689)] = 28745, + [SMALL_STATE(690)] = 28771, + [SMALL_STATE(691)] = 28797, + [SMALL_STATE(692)] = 28823, + [SMALL_STATE(693)] = 28849, + [SMALL_STATE(694)] = 28889, + [SMALL_STATE(695)] = 28915, + [SMALL_STATE(696)] = 28941, + [SMALL_STATE(697)] = 28967, + [SMALL_STATE(698)] = 29001, [SMALL_STATE(699)] = 29035, [SMALL_STATE(700)] = 29070, - [SMALL_STATE(701)] = 29107, - [SMALL_STATE(702)] = 29142, - [SMALL_STATE(703)] = 29177, + [SMALL_STATE(701)] = 29105, + [SMALL_STATE(702)] = 29140, + [SMALL_STATE(703)] = 29175, [SMALL_STATE(704)] = 29212, [SMALL_STATE(705)] = 29247, - [SMALL_STATE(706)] = 29282, + [SMALL_STATE(706)] = 29284, [SMALL_STATE(707)] = 29319, [SMALL_STATE(708)] = 29337, - [SMALL_STATE(709)] = 29367, - [SMALL_STATE(710)] = 29401, - [SMALL_STATE(711)] = 29419, - [SMALL_STATE(712)] = 29437, - [SMALL_STATE(713)] = 29467, - [SMALL_STATE(714)] = 29485, - [SMALL_STATE(715)] = 29519, - [SMALL_STATE(716)] = 29537, - [SMALL_STATE(717)] = 29571, - [SMALL_STATE(718)] = 29605, - [SMALL_STATE(719)] = 29639, - [SMALL_STATE(720)] = 29673, - [SMALL_STATE(721)] = 29696, - [SMALL_STATE(722)] = 29717, - [SMALL_STATE(723)] = 29741, - [SMALL_STATE(724)] = 29765, - [SMALL_STATE(725)] = 29789, - [SMALL_STATE(726)] = 29813, - [SMALL_STATE(727)] = 29837, - [SMALL_STATE(728)] = 29853, - [SMALL_STATE(729)] = 29877, - [SMALL_STATE(730)] = 29899, - [SMALL_STATE(731)] = 29914, - [SMALL_STATE(732)] = 29929, - [SMALL_STATE(733)] = 29950, - [SMALL_STATE(734)] = 29965, - [SMALL_STATE(735)] = 29979, - [SMALL_STATE(736)] = 29993, - [SMALL_STATE(737)] = 30012, - [SMALL_STATE(738)] = 30031, - [SMALL_STATE(739)] = 30050, - [SMALL_STATE(740)] = 30063, - [SMALL_STATE(741)] = 30082, - [SMALL_STATE(742)] = 30095, - [SMALL_STATE(743)] = 30114, - [SMALL_STATE(744)] = 30133, - [SMALL_STATE(745)] = 30152, - [SMALL_STATE(746)] = 30171, - [SMALL_STATE(747)] = 30187, - [SMALL_STATE(748)] = 30203, - [SMALL_STATE(749)] = 30219, - [SMALL_STATE(750)] = 30235, - [SMALL_STATE(751)] = 30251, - [SMALL_STATE(752)] = 30263, - [SMALL_STATE(753)] = 30277, - [SMALL_STATE(754)] = 30293, - [SMALL_STATE(755)] = 30309, - [SMALL_STATE(756)] = 30325, - [SMALL_STATE(757)] = 30341, - [SMALL_STATE(758)] = 30357, - [SMALL_STATE(759)] = 30371, - [SMALL_STATE(760)] = 30387, - [SMALL_STATE(761)] = 30403, - [SMALL_STATE(762)] = 30419, - [SMALL_STATE(763)] = 30431, - [SMALL_STATE(764)] = 30445, - [SMALL_STATE(765)] = 30461, - [SMALL_STATE(766)] = 30475, - [SMALL_STATE(767)] = 30491, - [SMALL_STATE(768)] = 30507, - [SMALL_STATE(769)] = 30519, - [SMALL_STATE(770)] = 30533, + [SMALL_STATE(709)] = 29371, + [SMALL_STATE(710)] = 29405, + [SMALL_STATE(711)] = 29435, + [SMALL_STATE(712)] = 29453, + [SMALL_STATE(713)] = 29471, + [SMALL_STATE(714)] = 29501, + [SMALL_STATE(715)] = 29535, + [SMALL_STATE(716)] = 29569, + [SMALL_STATE(717)] = 29603, + [SMALL_STATE(718)] = 29637, + [SMALL_STATE(719)] = 29655, + [SMALL_STATE(720)] = 29678, + [SMALL_STATE(721)] = 29699, + [SMALL_STATE(722)] = 29723, + [SMALL_STATE(723)] = 29747, + [SMALL_STATE(724)] = 29771, + [SMALL_STATE(725)] = 29795, + [SMALL_STATE(726)] = 29819, + [SMALL_STATE(727)] = 29841, + [SMALL_STATE(728)] = 29865, + [SMALL_STATE(729)] = 29881, + [SMALL_STATE(730)] = 29896, + [SMALL_STATE(731)] = 29911, + [SMALL_STATE(732)] = 29926, + [SMALL_STATE(733)] = 29947, + [SMALL_STATE(734)] = 29961, + [SMALL_STATE(735)] = 29975, + [SMALL_STATE(736)] = 29994, + [SMALL_STATE(737)] = 30013, + [SMALL_STATE(738)] = 30032, + [SMALL_STATE(739)] = 30051, + [SMALL_STATE(740)] = 30070, + [SMALL_STATE(741)] = 30089, + [SMALL_STATE(742)] = 30108, + [SMALL_STATE(743)] = 30121, + [SMALL_STATE(744)] = 30140, + [SMALL_STATE(745)] = 30153, + [SMALL_STATE(746)] = 30165, + [SMALL_STATE(747)] = 30181, + [SMALL_STATE(748)] = 30197, + [SMALL_STATE(749)] = 30213, + [SMALL_STATE(750)] = 30229, + [SMALL_STATE(751)] = 30245, + [SMALL_STATE(752)] = 30259, + [SMALL_STATE(753)] = 30273, + [SMALL_STATE(754)] = 30289, + [SMALL_STATE(755)] = 30305, + [SMALL_STATE(756)] = 30321, + [SMALL_STATE(757)] = 30335, + [SMALL_STATE(758)] = 30347, + [SMALL_STATE(759)] = 30361, + [SMALL_STATE(760)] = 30377, + [SMALL_STATE(761)] = 30391, + [SMALL_STATE(762)] = 30403, + [SMALL_STATE(763)] = 30419, + [SMALL_STATE(764)] = 30435, + [SMALL_STATE(765)] = 30449, + [SMALL_STATE(766)] = 30465, + [SMALL_STATE(767)] = 30481, + [SMALL_STATE(768)] = 30497, + [SMALL_STATE(769)] = 30513, + [SMALL_STATE(770)] = 30529, [SMALL_STATE(771)] = 30545, - [SMALL_STATE(772)] = 30561, - [SMALL_STATE(773)] = 30575, - [SMALL_STATE(774)] = 30591, - [SMALL_STATE(775)] = 30607, - [SMALL_STATE(776)] = 30623, - [SMALL_STATE(777)] = 30639, - [SMALL_STATE(778)] = 30652, - [SMALL_STATE(779)] = 30665, - [SMALL_STATE(780)] = 30678, - [SMALL_STATE(781)] = 30691, - [SMALL_STATE(782)] = 30704, - [SMALL_STATE(783)] = 30717, - [SMALL_STATE(784)] = 30730, - [SMALL_STATE(785)] = 30743, - [SMALL_STATE(786)] = 30756, - [SMALL_STATE(787)] = 30769, - [SMALL_STATE(788)] = 30782, - [SMALL_STATE(789)] = 30795, - [SMALL_STATE(790)] = 30808, - [SMALL_STATE(791)] = 30821, - [SMALL_STATE(792)] = 30834, - [SMALL_STATE(793)] = 30847, - [SMALL_STATE(794)] = 30860, - [SMALL_STATE(795)] = 30873, - [SMALL_STATE(796)] = 30886, - [SMALL_STATE(797)] = 30899, - [SMALL_STATE(798)] = 30912, - [SMALL_STATE(799)] = 30925, - [SMALL_STATE(800)] = 30938, - [SMALL_STATE(801)] = 30951, - [SMALL_STATE(802)] = 30964, - [SMALL_STATE(803)] = 30977, - [SMALL_STATE(804)] = 30990, - [SMALL_STATE(805)] = 31003, - [SMALL_STATE(806)] = 31016, - [SMALL_STATE(807)] = 31029, - [SMALL_STATE(808)] = 31042, - [SMALL_STATE(809)] = 31055, - [SMALL_STATE(810)] = 31068, + [SMALL_STATE(772)] = 30559, + [SMALL_STATE(773)] = 30573, + [SMALL_STATE(774)] = 30587, + [SMALL_STATE(775)] = 30603, + [SMALL_STATE(776)] = 30619, + [SMALL_STATE(777)] = 30635, + [SMALL_STATE(778)] = 30651, + [SMALL_STATE(779)] = 30663, + [SMALL_STATE(780)] = 30676, + [SMALL_STATE(781)] = 30689, + [SMALL_STATE(782)] = 30702, + [SMALL_STATE(783)] = 30715, + [SMALL_STATE(784)] = 30728, + [SMALL_STATE(785)] = 30741, + [SMALL_STATE(786)] = 30754, + [SMALL_STATE(787)] = 30767, + [SMALL_STATE(788)] = 30780, + [SMALL_STATE(789)] = 30793, + [SMALL_STATE(790)] = 30806, + [SMALL_STATE(791)] = 30819, + [SMALL_STATE(792)] = 30832, + [SMALL_STATE(793)] = 30845, + [SMALL_STATE(794)] = 30856, + [SMALL_STATE(795)] = 30869, + [SMALL_STATE(796)] = 30882, + [SMALL_STATE(797)] = 30895, + [SMALL_STATE(798)] = 30908, + [SMALL_STATE(799)] = 30921, + [SMALL_STATE(800)] = 30934, + [SMALL_STATE(801)] = 30947, + [SMALL_STATE(802)] = 30960, + [SMALL_STATE(803)] = 30973, + [SMALL_STATE(804)] = 30986, + [SMALL_STATE(805)] = 30999, + [SMALL_STATE(806)] = 31012, + [SMALL_STATE(807)] = 31025, + [SMALL_STATE(808)] = 31038, + [SMALL_STATE(809)] = 31051, + [SMALL_STATE(810)] = 31064, [SMALL_STATE(811)] = 31077, [SMALL_STATE(812)] = 31090, [SMALL_STATE(813)] = 31103, @@ -34294,407 +34353,410 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(846)] = 31532, [SMALL_STATE(847)] = 31545, [SMALL_STATE(848)] = 31558, - [SMALL_STATE(849)] = 31569, - [SMALL_STATE(850)] = 31582, - [SMALL_STATE(851)] = 31595, - [SMALL_STATE(852)] = 31608, - [SMALL_STATE(853)] = 31621, - [SMALL_STATE(854)] = 31634, - [SMALL_STATE(855)] = 31647, - [SMALL_STATE(856)] = 31660, - [SMALL_STATE(857)] = 31673, - [SMALL_STATE(858)] = 31686, - [SMALL_STATE(859)] = 31699, - [SMALL_STATE(860)] = 31712, - [SMALL_STATE(861)] = 31725, - [SMALL_STATE(862)] = 31738, - [SMALL_STATE(863)] = 31751, - [SMALL_STATE(864)] = 31764, - [SMALL_STATE(865)] = 31777, - [SMALL_STATE(866)] = 31790, - [SMALL_STATE(867)] = 31803, - [SMALL_STATE(868)] = 31816, - [SMALL_STATE(869)] = 31829, - [SMALL_STATE(870)] = 31842, - [SMALL_STATE(871)] = 31855, - [SMALL_STATE(872)] = 31868, - [SMALL_STATE(873)] = 31881, - [SMALL_STATE(874)] = 31894, - [SMALL_STATE(875)] = 31907, - [SMALL_STATE(876)] = 31920, - [SMALL_STATE(877)] = 31933, - [SMALL_STATE(878)] = 31946, - [SMALL_STATE(879)] = 31959, - [SMALL_STATE(880)] = 31972, - [SMALL_STATE(881)] = 31985, - [SMALL_STATE(882)] = 31998, - [SMALL_STATE(883)] = 32011, - [SMALL_STATE(884)] = 32024, - [SMALL_STATE(885)] = 32037, - [SMALL_STATE(886)] = 32050, - [SMALL_STATE(887)] = 32063, - [SMALL_STATE(888)] = 32071, - [SMALL_STATE(889)] = 32081, - [SMALL_STATE(890)] = 32091, - [SMALL_STATE(891)] = 32099, - [SMALL_STATE(892)] = 32107, - [SMALL_STATE(893)] = 32117, - [SMALL_STATE(894)] = 32127, - [SMALL_STATE(895)] = 32137, - [SMALL_STATE(896)] = 32145, - [SMALL_STATE(897)] = 32155, - [SMALL_STATE(898)] = 32165, - [SMALL_STATE(899)] = 32175, - [SMALL_STATE(900)] = 32185, - [SMALL_STATE(901)] = 32193, - [SMALL_STATE(902)] = 32203, - [SMALL_STATE(903)] = 32211, - [SMALL_STATE(904)] = 32221, - [SMALL_STATE(905)] = 32231, - [SMALL_STATE(906)] = 32241, - [SMALL_STATE(907)] = 32251, - [SMALL_STATE(908)] = 32259, - [SMALL_STATE(909)] = 32269, - [SMALL_STATE(910)] = 32279, - [SMALL_STATE(911)] = 32289, - [SMALL_STATE(912)] = 32299, - [SMALL_STATE(913)] = 32309, - [SMALL_STATE(914)] = 32319, - [SMALL_STATE(915)] = 32329, - [SMALL_STATE(916)] = 32339, - [SMALL_STATE(917)] = 32349, - [SMALL_STATE(918)] = 32359, - [SMALL_STATE(919)] = 32367, - [SMALL_STATE(920)] = 32377, - [SMALL_STATE(921)] = 32385, - [SMALL_STATE(922)] = 32393, - [SMALL_STATE(923)] = 32403, - [SMALL_STATE(924)] = 32413, - [SMALL_STATE(925)] = 32423, - [SMALL_STATE(926)] = 32431, - [SMALL_STATE(927)] = 32441, - [SMALL_STATE(928)] = 32451, - [SMALL_STATE(929)] = 32461, - [SMALL_STATE(930)] = 32471, - [SMALL_STATE(931)] = 32481, - [SMALL_STATE(932)] = 32491, - [SMALL_STATE(933)] = 32501, - [SMALL_STATE(934)] = 32511, - [SMALL_STATE(935)] = 32521, - [SMALL_STATE(936)] = 32529, - [SMALL_STATE(937)] = 32539, - [SMALL_STATE(938)] = 32549, - [SMALL_STATE(939)] = 32559, - [SMALL_STATE(940)] = 32569, - [SMALL_STATE(941)] = 32579, - [SMALL_STATE(942)] = 32589, - [SMALL_STATE(943)] = 32599, - [SMALL_STATE(944)] = 32609, - [SMALL_STATE(945)] = 32619, - [SMALL_STATE(946)] = 32629, - [SMALL_STATE(947)] = 32639, - [SMALL_STATE(948)] = 32649, - [SMALL_STATE(949)] = 32659, - [SMALL_STATE(950)] = 32669, - [SMALL_STATE(951)] = 32679, - [SMALL_STATE(952)] = 32689, - [SMALL_STATE(953)] = 32699, - [SMALL_STATE(954)] = 32709, - [SMALL_STATE(955)] = 32716, - [SMALL_STATE(956)] = 32723, - [SMALL_STATE(957)] = 32730, - [SMALL_STATE(958)] = 32737, - [SMALL_STATE(959)] = 32744, - [SMALL_STATE(960)] = 32751, - [SMALL_STATE(961)] = 32758, - [SMALL_STATE(962)] = 32765, - [SMALL_STATE(963)] = 32772, - [SMALL_STATE(964)] = 32779, - [SMALL_STATE(965)] = 32786, - [SMALL_STATE(966)] = 32793, - [SMALL_STATE(967)] = 32800, - [SMALL_STATE(968)] = 32807, - [SMALL_STATE(969)] = 32814, - [SMALL_STATE(970)] = 32821, - [SMALL_STATE(971)] = 32828, - [SMALL_STATE(972)] = 32835, - [SMALL_STATE(973)] = 32842, - [SMALL_STATE(974)] = 32849, - [SMALL_STATE(975)] = 32856, - [SMALL_STATE(976)] = 32863, - [SMALL_STATE(977)] = 32870, - [SMALL_STATE(978)] = 32877, - [SMALL_STATE(979)] = 32884, - [SMALL_STATE(980)] = 32891, - [SMALL_STATE(981)] = 32898, - [SMALL_STATE(982)] = 32905, - [SMALL_STATE(983)] = 32912, - [SMALL_STATE(984)] = 32919, - [SMALL_STATE(985)] = 32926, - [SMALL_STATE(986)] = 32933, - [SMALL_STATE(987)] = 32940, - [SMALL_STATE(988)] = 32947, - [SMALL_STATE(989)] = 32954, - [SMALL_STATE(990)] = 32961, - [SMALL_STATE(991)] = 32968, - [SMALL_STATE(992)] = 32975, - [SMALL_STATE(993)] = 32982, - [SMALL_STATE(994)] = 32989, - [SMALL_STATE(995)] = 32996, - [SMALL_STATE(996)] = 33003, - [SMALL_STATE(997)] = 33010, - [SMALL_STATE(998)] = 33017, - [SMALL_STATE(999)] = 33024, - [SMALL_STATE(1000)] = 33031, - [SMALL_STATE(1001)] = 33038, - [SMALL_STATE(1002)] = 33045, - [SMALL_STATE(1003)] = 33052, - [SMALL_STATE(1004)] = 33059, - [SMALL_STATE(1005)] = 33066, - [SMALL_STATE(1006)] = 33073, - [SMALL_STATE(1007)] = 33080, - [SMALL_STATE(1008)] = 33087, - [SMALL_STATE(1009)] = 33094, - [SMALL_STATE(1010)] = 33101, - [SMALL_STATE(1011)] = 33108, - [SMALL_STATE(1012)] = 33115, - [SMALL_STATE(1013)] = 33122, - [SMALL_STATE(1014)] = 33129, - [SMALL_STATE(1015)] = 33136, - [SMALL_STATE(1016)] = 33143, - [SMALL_STATE(1017)] = 33150, - [SMALL_STATE(1018)] = 33157, - [SMALL_STATE(1019)] = 33164, - [SMALL_STATE(1020)] = 33171, - [SMALL_STATE(1021)] = 33178, - [SMALL_STATE(1022)] = 33185, - [SMALL_STATE(1023)] = 33192, - [SMALL_STATE(1024)] = 33199, - [SMALL_STATE(1025)] = 33206, - [SMALL_STATE(1026)] = 33213, - [SMALL_STATE(1027)] = 33220, - [SMALL_STATE(1028)] = 33227, - [SMALL_STATE(1029)] = 33234, - [SMALL_STATE(1030)] = 33241, - [SMALL_STATE(1031)] = 33248, - [SMALL_STATE(1032)] = 33255, - [SMALL_STATE(1033)] = 33262, - [SMALL_STATE(1034)] = 33269, - [SMALL_STATE(1035)] = 33276, - [SMALL_STATE(1036)] = 33283, - [SMALL_STATE(1037)] = 33290, - [SMALL_STATE(1038)] = 33297, - [SMALL_STATE(1039)] = 33304, - [SMALL_STATE(1040)] = 33311, - [SMALL_STATE(1041)] = 33318, - [SMALL_STATE(1042)] = 33325, - [SMALL_STATE(1043)] = 33332, - [SMALL_STATE(1044)] = 33339, - [SMALL_STATE(1045)] = 33346, - [SMALL_STATE(1046)] = 33353, - [SMALL_STATE(1047)] = 33360, - [SMALL_STATE(1048)] = 33367, - [SMALL_STATE(1049)] = 33374, - [SMALL_STATE(1050)] = 33381, - [SMALL_STATE(1051)] = 33388, - [SMALL_STATE(1052)] = 33395, - [SMALL_STATE(1053)] = 33402, - [SMALL_STATE(1054)] = 33409, - [SMALL_STATE(1055)] = 33416, - [SMALL_STATE(1056)] = 33423, - [SMALL_STATE(1057)] = 33430, - [SMALL_STATE(1058)] = 33437, - [SMALL_STATE(1059)] = 33444, - [SMALL_STATE(1060)] = 33451, - [SMALL_STATE(1061)] = 33458, - [SMALL_STATE(1062)] = 33465, - [SMALL_STATE(1063)] = 33472, - [SMALL_STATE(1064)] = 33479, - [SMALL_STATE(1065)] = 33486, - [SMALL_STATE(1066)] = 33493, - [SMALL_STATE(1067)] = 33500, - [SMALL_STATE(1068)] = 33507, - [SMALL_STATE(1069)] = 33514, - [SMALL_STATE(1070)] = 33521, - [SMALL_STATE(1071)] = 33528, - [SMALL_STATE(1072)] = 33535, - [SMALL_STATE(1073)] = 33542, - [SMALL_STATE(1074)] = 33549, - [SMALL_STATE(1075)] = 33556, - [SMALL_STATE(1076)] = 33563, - [SMALL_STATE(1077)] = 33570, - [SMALL_STATE(1078)] = 33577, - [SMALL_STATE(1079)] = 33584, - [SMALL_STATE(1080)] = 33591, - [SMALL_STATE(1081)] = 33598, - [SMALL_STATE(1082)] = 33605, - [SMALL_STATE(1083)] = 33612, - [SMALL_STATE(1084)] = 33619, - [SMALL_STATE(1085)] = 33626, - [SMALL_STATE(1086)] = 33633, - [SMALL_STATE(1087)] = 33640, - [SMALL_STATE(1088)] = 33647, - [SMALL_STATE(1089)] = 33654, - [SMALL_STATE(1090)] = 33661, - [SMALL_STATE(1091)] = 33668, - [SMALL_STATE(1092)] = 33675, - [SMALL_STATE(1093)] = 33682, - [SMALL_STATE(1094)] = 33689, - [SMALL_STATE(1095)] = 33696, - [SMALL_STATE(1096)] = 33703, - [SMALL_STATE(1097)] = 33710, - [SMALL_STATE(1098)] = 33717, - [SMALL_STATE(1099)] = 33724, - [SMALL_STATE(1100)] = 33731, - [SMALL_STATE(1101)] = 33738, - [SMALL_STATE(1102)] = 33745, - [SMALL_STATE(1103)] = 33752, - [SMALL_STATE(1104)] = 33759, - [SMALL_STATE(1105)] = 33766, - [SMALL_STATE(1106)] = 33773, - [SMALL_STATE(1107)] = 33780, - [SMALL_STATE(1108)] = 33787, - [SMALL_STATE(1109)] = 33794, - [SMALL_STATE(1110)] = 33801, - [SMALL_STATE(1111)] = 33808, - [SMALL_STATE(1112)] = 33815, - [SMALL_STATE(1113)] = 33822, - [SMALL_STATE(1114)] = 33829, - [SMALL_STATE(1115)] = 33836, - [SMALL_STATE(1116)] = 33843, - [SMALL_STATE(1117)] = 33850, - [SMALL_STATE(1118)] = 33857, - [SMALL_STATE(1119)] = 33864, - [SMALL_STATE(1120)] = 33871, - [SMALL_STATE(1121)] = 33878, - [SMALL_STATE(1122)] = 33885, - [SMALL_STATE(1123)] = 33892, - [SMALL_STATE(1124)] = 33899, - [SMALL_STATE(1125)] = 33906, - [SMALL_STATE(1126)] = 33913, - [SMALL_STATE(1127)] = 33920, - [SMALL_STATE(1128)] = 33927, - [SMALL_STATE(1129)] = 33934, - [SMALL_STATE(1130)] = 33941, - [SMALL_STATE(1131)] = 33948, - [SMALL_STATE(1132)] = 33955, - [SMALL_STATE(1133)] = 33962, - [SMALL_STATE(1134)] = 33969, - [SMALL_STATE(1135)] = 33976, - [SMALL_STATE(1136)] = 33983, - [SMALL_STATE(1137)] = 33990, - [SMALL_STATE(1138)] = 33997, - [SMALL_STATE(1139)] = 34004, - [SMALL_STATE(1140)] = 34011, - [SMALL_STATE(1141)] = 34018, - [SMALL_STATE(1142)] = 34025, - [SMALL_STATE(1143)] = 34032, - [SMALL_STATE(1144)] = 34039, - [SMALL_STATE(1145)] = 34046, - [SMALL_STATE(1146)] = 34053, - [SMALL_STATE(1147)] = 34060, - [SMALL_STATE(1148)] = 34067, - [SMALL_STATE(1149)] = 34074, - [SMALL_STATE(1150)] = 34081, - [SMALL_STATE(1151)] = 34088, - [SMALL_STATE(1152)] = 34095, - [SMALL_STATE(1153)] = 34102, - [SMALL_STATE(1154)] = 34109, - [SMALL_STATE(1155)] = 34116, - [SMALL_STATE(1156)] = 34123, - [SMALL_STATE(1157)] = 34130, - [SMALL_STATE(1158)] = 34137, - [SMALL_STATE(1159)] = 34144, - [SMALL_STATE(1160)] = 34151, - [SMALL_STATE(1161)] = 34158, - [SMALL_STATE(1162)] = 34165, - [SMALL_STATE(1163)] = 34172, - [SMALL_STATE(1164)] = 34179, - [SMALL_STATE(1165)] = 34186, - [SMALL_STATE(1166)] = 34193, - [SMALL_STATE(1167)] = 34200, - [SMALL_STATE(1168)] = 34207, - [SMALL_STATE(1169)] = 34214, - [SMALL_STATE(1170)] = 34221, - [SMALL_STATE(1171)] = 34228, - [SMALL_STATE(1172)] = 34235, - [SMALL_STATE(1173)] = 34242, - [SMALL_STATE(1174)] = 34249, - [SMALL_STATE(1175)] = 34256, - [SMALL_STATE(1176)] = 34263, - [SMALL_STATE(1177)] = 34270, - [SMALL_STATE(1178)] = 34277, - [SMALL_STATE(1179)] = 34284, - [SMALL_STATE(1180)] = 34291, - [SMALL_STATE(1181)] = 34298, - [SMALL_STATE(1182)] = 34305, - [SMALL_STATE(1183)] = 34312, - [SMALL_STATE(1184)] = 34319, - [SMALL_STATE(1185)] = 34326, - [SMALL_STATE(1186)] = 34333, - [SMALL_STATE(1187)] = 34340, - [SMALL_STATE(1188)] = 34347, - [SMALL_STATE(1189)] = 34354, - [SMALL_STATE(1190)] = 34361, - [SMALL_STATE(1191)] = 34368, - [SMALL_STATE(1192)] = 34375, - [SMALL_STATE(1193)] = 34382, - [SMALL_STATE(1194)] = 34389, - [SMALL_STATE(1195)] = 34396, - [SMALL_STATE(1196)] = 34403, - [SMALL_STATE(1197)] = 34410, - [SMALL_STATE(1198)] = 34417, - [SMALL_STATE(1199)] = 34424, - [SMALL_STATE(1200)] = 34431, - [SMALL_STATE(1201)] = 34438, - [SMALL_STATE(1202)] = 34445, - [SMALL_STATE(1203)] = 34452, - [SMALL_STATE(1204)] = 34459, - [SMALL_STATE(1205)] = 34466, - [SMALL_STATE(1206)] = 34473, - [SMALL_STATE(1207)] = 34480, - [SMALL_STATE(1208)] = 34487, - [SMALL_STATE(1209)] = 34494, - [SMALL_STATE(1210)] = 34501, - [SMALL_STATE(1211)] = 34508, - [SMALL_STATE(1212)] = 34515, - [SMALL_STATE(1213)] = 34522, - [SMALL_STATE(1214)] = 34529, - [SMALL_STATE(1215)] = 34536, - [SMALL_STATE(1216)] = 34543, - [SMALL_STATE(1217)] = 34550, - [SMALL_STATE(1218)] = 34557, - [SMALL_STATE(1219)] = 34564, - [SMALL_STATE(1220)] = 34571, - [SMALL_STATE(1221)] = 34578, - [SMALL_STATE(1222)] = 34585, - [SMALL_STATE(1223)] = 34592, - [SMALL_STATE(1224)] = 34599, - [SMALL_STATE(1225)] = 34606, - [SMALL_STATE(1226)] = 34613, - [SMALL_STATE(1227)] = 34620, - [SMALL_STATE(1228)] = 34627, - [SMALL_STATE(1229)] = 34634, - [SMALL_STATE(1230)] = 34641, - [SMALL_STATE(1231)] = 34648, - [SMALL_STATE(1232)] = 34655, - [SMALL_STATE(1233)] = 34662, - [SMALL_STATE(1234)] = 34669, - [SMALL_STATE(1235)] = 34676, - [SMALL_STATE(1236)] = 34683, - [SMALL_STATE(1237)] = 34690, - [SMALL_STATE(1238)] = 34697, - [SMALL_STATE(1239)] = 34704, - [SMALL_STATE(1240)] = 34711, - [SMALL_STATE(1241)] = 34718, - [SMALL_STATE(1242)] = 34725, - [SMALL_STATE(1243)] = 34732, - [SMALL_STATE(1244)] = 34739, - [SMALL_STATE(1245)] = 34746, - [SMALL_STATE(1246)] = 34753, - [SMALL_STATE(1247)] = 34760, - [SMALL_STATE(1248)] = 34767, - [SMALL_STATE(1249)] = 34774, + [SMALL_STATE(849)] = 31571, + [SMALL_STATE(850)] = 31584, + [SMALL_STATE(851)] = 31597, + [SMALL_STATE(852)] = 31610, + [SMALL_STATE(853)] = 31623, + [SMALL_STATE(854)] = 31636, + [SMALL_STATE(855)] = 31649, + [SMALL_STATE(856)] = 31662, + [SMALL_STATE(857)] = 31675, + [SMALL_STATE(858)] = 31688, + [SMALL_STATE(859)] = 31701, + [SMALL_STATE(860)] = 31714, + [SMALL_STATE(861)] = 31727, + [SMALL_STATE(862)] = 31740, + [SMALL_STATE(863)] = 31753, + [SMALL_STATE(864)] = 31766, + [SMALL_STATE(865)] = 31779, + [SMALL_STATE(866)] = 31792, + [SMALL_STATE(867)] = 31805, + [SMALL_STATE(868)] = 31818, + [SMALL_STATE(869)] = 31831, + [SMALL_STATE(870)] = 31844, + [SMALL_STATE(871)] = 31857, + [SMALL_STATE(872)] = 31870, + [SMALL_STATE(873)] = 31883, + [SMALL_STATE(874)] = 31896, + [SMALL_STATE(875)] = 31909, + [SMALL_STATE(876)] = 31922, + [SMALL_STATE(877)] = 31935, + [SMALL_STATE(878)] = 31948, + [SMALL_STATE(879)] = 31961, + [SMALL_STATE(880)] = 31974, + [SMALL_STATE(881)] = 31987, + [SMALL_STATE(882)] = 32000, + [SMALL_STATE(883)] = 32013, + [SMALL_STATE(884)] = 32026, + [SMALL_STATE(885)] = 32039, + [SMALL_STATE(886)] = 32052, + [SMALL_STATE(887)] = 32065, + [SMALL_STATE(888)] = 32078, + [SMALL_STATE(889)] = 32091, + [SMALL_STATE(890)] = 32101, + [SMALL_STATE(891)] = 32111, + [SMALL_STATE(892)] = 32121, + [SMALL_STATE(893)] = 32129, + [SMALL_STATE(894)] = 32139, + [SMALL_STATE(895)] = 32149, + [SMALL_STATE(896)] = 32159, + [SMALL_STATE(897)] = 32169, + [SMALL_STATE(898)] = 32179, + [SMALL_STATE(899)] = 32189, + [SMALL_STATE(900)] = 32199, + [SMALL_STATE(901)] = 32207, + [SMALL_STATE(902)] = 32215, + [SMALL_STATE(903)] = 32223, + [SMALL_STATE(904)] = 32233, + [SMALL_STATE(905)] = 32243, + [SMALL_STATE(906)] = 32253, + [SMALL_STATE(907)] = 32263, + [SMALL_STATE(908)] = 32273, + [SMALL_STATE(909)] = 32283, + [SMALL_STATE(910)] = 32293, + [SMALL_STATE(911)] = 32303, + [SMALL_STATE(912)] = 32313, + [SMALL_STATE(913)] = 32323, + [SMALL_STATE(914)] = 32333, + [SMALL_STATE(915)] = 32341, + [SMALL_STATE(916)] = 32349, + [SMALL_STATE(917)] = 32357, + [SMALL_STATE(918)] = 32367, + [SMALL_STATE(919)] = 32377, + [SMALL_STATE(920)] = 32387, + [SMALL_STATE(921)] = 32395, + [SMALL_STATE(922)] = 32403, + [SMALL_STATE(923)] = 32413, + [SMALL_STATE(924)] = 32421, + [SMALL_STATE(925)] = 32431, + [SMALL_STATE(926)] = 32441, + [SMALL_STATE(927)] = 32451, + [SMALL_STATE(928)] = 32461, + [SMALL_STATE(929)] = 32471, + [SMALL_STATE(930)] = 32481, + [SMALL_STATE(931)] = 32491, + [SMALL_STATE(932)] = 32501, + [SMALL_STATE(933)] = 32511, + [SMALL_STATE(934)] = 32521, + [SMALL_STATE(935)] = 32531, + [SMALL_STATE(936)] = 32541, + [SMALL_STATE(937)] = 32551, + [SMALL_STATE(938)] = 32561, + [SMALL_STATE(939)] = 32571, + [SMALL_STATE(940)] = 32581, + [SMALL_STATE(941)] = 32591, + [SMALL_STATE(942)] = 32601, + [SMALL_STATE(943)] = 32611, + [SMALL_STATE(944)] = 32621, + [SMALL_STATE(945)] = 32631, + [SMALL_STATE(946)] = 32641, + [SMALL_STATE(947)] = 32649, + [SMALL_STATE(948)] = 32659, + [SMALL_STATE(949)] = 32669, + [SMALL_STATE(950)] = 32677, + [SMALL_STATE(951)] = 32687, + [SMALL_STATE(952)] = 32697, + [SMALL_STATE(953)] = 32707, + [SMALL_STATE(954)] = 32717, + [SMALL_STATE(955)] = 32727, + [SMALL_STATE(956)] = 32737, + [SMALL_STATE(957)] = 32744, + [SMALL_STATE(958)] = 32751, + [SMALL_STATE(959)] = 32758, + [SMALL_STATE(960)] = 32765, + [SMALL_STATE(961)] = 32772, + [SMALL_STATE(962)] = 32779, + [SMALL_STATE(963)] = 32786, + [SMALL_STATE(964)] = 32793, + [SMALL_STATE(965)] = 32800, + [SMALL_STATE(966)] = 32807, + [SMALL_STATE(967)] = 32814, + [SMALL_STATE(968)] = 32821, + [SMALL_STATE(969)] = 32828, + [SMALL_STATE(970)] = 32835, + [SMALL_STATE(971)] = 32842, + [SMALL_STATE(972)] = 32849, + [SMALL_STATE(973)] = 32856, + [SMALL_STATE(974)] = 32863, + [SMALL_STATE(975)] = 32870, + [SMALL_STATE(976)] = 32877, + [SMALL_STATE(977)] = 32884, + [SMALL_STATE(978)] = 32891, + [SMALL_STATE(979)] = 32898, + [SMALL_STATE(980)] = 32905, + [SMALL_STATE(981)] = 32912, + [SMALL_STATE(982)] = 32919, + [SMALL_STATE(983)] = 32926, + [SMALL_STATE(984)] = 32933, + [SMALL_STATE(985)] = 32940, + [SMALL_STATE(986)] = 32947, + [SMALL_STATE(987)] = 32954, + [SMALL_STATE(988)] = 32961, + [SMALL_STATE(989)] = 32968, + [SMALL_STATE(990)] = 32975, + [SMALL_STATE(991)] = 32982, + [SMALL_STATE(992)] = 32989, + [SMALL_STATE(993)] = 32996, + [SMALL_STATE(994)] = 33003, + [SMALL_STATE(995)] = 33010, + [SMALL_STATE(996)] = 33017, + [SMALL_STATE(997)] = 33024, + [SMALL_STATE(998)] = 33031, + [SMALL_STATE(999)] = 33038, + [SMALL_STATE(1000)] = 33045, + [SMALL_STATE(1001)] = 33052, + [SMALL_STATE(1002)] = 33059, + [SMALL_STATE(1003)] = 33066, + [SMALL_STATE(1004)] = 33073, + [SMALL_STATE(1005)] = 33080, + [SMALL_STATE(1006)] = 33087, + [SMALL_STATE(1007)] = 33094, + [SMALL_STATE(1008)] = 33101, + [SMALL_STATE(1009)] = 33108, + [SMALL_STATE(1010)] = 33115, + [SMALL_STATE(1011)] = 33122, + [SMALL_STATE(1012)] = 33129, + [SMALL_STATE(1013)] = 33136, + [SMALL_STATE(1014)] = 33143, + [SMALL_STATE(1015)] = 33150, + [SMALL_STATE(1016)] = 33157, + [SMALL_STATE(1017)] = 33164, + [SMALL_STATE(1018)] = 33171, + [SMALL_STATE(1019)] = 33178, + [SMALL_STATE(1020)] = 33185, + [SMALL_STATE(1021)] = 33192, + [SMALL_STATE(1022)] = 33199, + [SMALL_STATE(1023)] = 33206, + [SMALL_STATE(1024)] = 33213, + [SMALL_STATE(1025)] = 33220, + [SMALL_STATE(1026)] = 33227, + [SMALL_STATE(1027)] = 33234, + [SMALL_STATE(1028)] = 33241, + [SMALL_STATE(1029)] = 33248, + [SMALL_STATE(1030)] = 33255, + [SMALL_STATE(1031)] = 33262, + [SMALL_STATE(1032)] = 33269, + [SMALL_STATE(1033)] = 33276, + [SMALL_STATE(1034)] = 33283, + [SMALL_STATE(1035)] = 33290, + [SMALL_STATE(1036)] = 33297, + [SMALL_STATE(1037)] = 33304, + [SMALL_STATE(1038)] = 33311, + [SMALL_STATE(1039)] = 33318, + [SMALL_STATE(1040)] = 33325, + [SMALL_STATE(1041)] = 33332, + [SMALL_STATE(1042)] = 33339, + [SMALL_STATE(1043)] = 33346, + [SMALL_STATE(1044)] = 33353, + [SMALL_STATE(1045)] = 33360, + [SMALL_STATE(1046)] = 33367, + [SMALL_STATE(1047)] = 33374, + [SMALL_STATE(1048)] = 33381, + [SMALL_STATE(1049)] = 33388, + [SMALL_STATE(1050)] = 33395, + [SMALL_STATE(1051)] = 33402, + [SMALL_STATE(1052)] = 33409, + [SMALL_STATE(1053)] = 33416, + [SMALL_STATE(1054)] = 33423, + [SMALL_STATE(1055)] = 33430, + [SMALL_STATE(1056)] = 33437, + [SMALL_STATE(1057)] = 33444, + [SMALL_STATE(1058)] = 33451, + [SMALL_STATE(1059)] = 33458, + [SMALL_STATE(1060)] = 33465, + [SMALL_STATE(1061)] = 33472, + [SMALL_STATE(1062)] = 33479, + [SMALL_STATE(1063)] = 33486, + [SMALL_STATE(1064)] = 33493, + [SMALL_STATE(1065)] = 33500, + [SMALL_STATE(1066)] = 33507, + [SMALL_STATE(1067)] = 33514, + [SMALL_STATE(1068)] = 33521, + [SMALL_STATE(1069)] = 33528, + [SMALL_STATE(1070)] = 33535, + [SMALL_STATE(1071)] = 33542, + [SMALL_STATE(1072)] = 33549, + [SMALL_STATE(1073)] = 33556, + [SMALL_STATE(1074)] = 33563, + [SMALL_STATE(1075)] = 33570, + [SMALL_STATE(1076)] = 33577, + [SMALL_STATE(1077)] = 33584, + [SMALL_STATE(1078)] = 33591, + [SMALL_STATE(1079)] = 33598, + [SMALL_STATE(1080)] = 33605, + [SMALL_STATE(1081)] = 33612, + [SMALL_STATE(1082)] = 33619, + [SMALL_STATE(1083)] = 33626, + [SMALL_STATE(1084)] = 33633, + [SMALL_STATE(1085)] = 33640, + [SMALL_STATE(1086)] = 33647, + [SMALL_STATE(1087)] = 33654, + [SMALL_STATE(1088)] = 33661, + [SMALL_STATE(1089)] = 33668, + [SMALL_STATE(1090)] = 33675, + [SMALL_STATE(1091)] = 33682, + [SMALL_STATE(1092)] = 33689, + [SMALL_STATE(1093)] = 33696, + [SMALL_STATE(1094)] = 33703, + [SMALL_STATE(1095)] = 33710, + [SMALL_STATE(1096)] = 33717, + [SMALL_STATE(1097)] = 33724, + [SMALL_STATE(1098)] = 33731, + [SMALL_STATE(1099)] = 33738, + [SMALL_STATE(1100)] = 33745, + [SMALL_STATE(1101)] = 33752, + [SMALL_STATE(1102)] = 33759, + [SMALL_STATE(1103)] = 33766, + [SMALL_STATE(1104)] = 33773, + [SMALL_STATE(1105)] = 33780, + [SMALL_STATE(1106)] = 33787, + [SMALL_STATE(1107)] = 33794, + [SMALL_STATE(1108)] = 33801, + [SMALL_STATE(1109)] = 33808, + [SMALL_STATE(1110)] = 33815, + [SMALL_STATE(1111)] = 33822, + [SMALL_STATE(1112)] = 33829, + [SMALL_STATE(1113)] = 33836, + [SMALL_STATE(1114)] = 33843, + [SMALL_STATE(1115)] = 33850, + [SMALL_STATE(1116)] = 33857, + [SMALL_STATE(1117)] = 33864, + [SMALL_STATE(1118)] = 33871, + [SMALL_STATE(1119)] = 33878, + [SMALL_STATE(1120)] = 33885, + [SMALL_STATE(1121)] = 33892, + [SMALL_STATE(1122)] = 33899, + [SMALL_STATE(1123)] = 33906, + [SMALL_STATE(1124)] = 33913, + [SMALL_STATE(1125)] = 33920, + [SMALL_STATE(1126)] = 33927, + [SMALL_STATE(1127)] = 33934, + [SMALL_STATE(1128)] = 33941, + [SMALL_STATE(1129)] = 33948, + [SMALL_STATE(1130)] = 33955, + [SMALL_STATE(1131)] = 33962, + [SMALL_STATE(1132)] = 33969, + [SMALL_STATE(1133)] = 33976, + [SMALL_STATE(1134)] = 33983, + [SMALL_STATE(1135)] = 33990, + [SMALL_STATE(1136)] = 33997, + [SMALL_STATE(1137)] = 34004, + [SMALL_STATE(1138)] = 34011, + [SMALL_STATE(1139)] = 34018, + [SMALL_STATE(1140)] = 34025, + [SMALL_STATE(1141)] = 34032, + [SMALL_STATE(1142)] = 34039, + [SMALL_STATE(1143)] = 34046, + [SMALL_STATE(1144)] = 34053, + [SMALL_STATE(1145)] = 34060, + [SMALL_STATE(1146)] = 34067, + [SMALL_STATE(1147)] = 34074, + [SMALL_STATE(1148)] = 34081, + [SMALL_STATE(1149)] = 34088, + [SMALL_STATE(1150)] = 34095, + [SMALL_STATE(1151)] = 34102, + [SMALL_STATE(1152)] = 34109, + [SMALL_STATE(1153)] = 34116, + [SMALL_STATE(1154)] = 34123, + [SMALL_STATE(1155)] = 34130, + [SMALL_STATE(1156)] = 34137, + [SMALL_STATE(1157)] = 34144, + [SMALL_STATE(1158)] = 34151, + [SMALL_STATE(1159)] = 34158, + [SMALL_STATE(1160)] = 34165, + [SMALL_STATE(1161)] = 34172, + [SMALL_STATE(1162)] = 34179, + [SMALL_STATE(1163)] = 34186, + [SMALL_STATE(1164)] = 34193, + [SMALL_STATE(1165)] = 34200, + [SMALL_STATE(1166)] = 34207, + [SMALL_STATE(1167)] = 34214, + [SMALL_STATE(1168)] = 34221, + [SMALL_STATE(1169)] = 34228, + [SMALL_STATE(1170)] = 34235, + [SMALL_STATE(1171)] = 34242, + [SMALL_STATE(1172)] = 34249, + [SMALL_STATE(1173)] = 34256, + [SMALL_STATE(1174)] = 34263, + [SMALL_STATE(1175)] = 34270, + [SMALL_STATE(1176)] = 34277, + [SMALL_STATE(1177)] = 34284, + [SMALL_STATE(1178)] = 34291, + [SMALL_STATE(1179)] = 34298, + [SMALL_STATE(1180)] = 34305, + [SMALL_STATE(1181)] = 34312, + [SMALL_STATE(1182)] = 34319, + [SMALL_STATE(1183)] = 34326, + [SMALL_STATE(1184)] = 34333, + [SMALL_STATE(1185)] = 34340, + [SMALL_STATE(1186)] = 34347, + [SMALL_STATE(1187)] = 34354, + [SMALL_STATE(1188)] = 34361, + [SMALL_STATE(1189)] = 34368, + [SMALL_STATE(1190)] = 34375, + [SMALL_STATE(1191)] = 34382, + [SMALL_STATE(1192)] = 34389, + [SMALL_STATE(1193)] = 34396, + [SMALL_STATE(1194)] = 34403, + [SMALL_STATE(1195)] = 34410, + [SMALL_STATE(1196)] = 34417, + [SMALL_STATE(1197)] = 34424, + [SMALL_STATE(1198)] = 34431, + [SMALL_STATE(1199)] = 34438, + [SMALL_STATE(1200)] = 34445, + [SMALL_STATE(1201)] = 34452, + [SMALL_STATE(1202)] = 34459, + [SMALL_STATE(1203)] = 34466, + [SMALL_STATE(1204)] = 34473, + [SMALL_STATE(1205)] = 34480, + [SMALL_STATE(1206)] = 34487, + [SMALL_STATE(1207)] = 34494, + [SMALL_STATE(1208)] = 34501, + [SMALL_STATE(1209)] = 34508, + [SMALL_STATE(1210)] = 34515, + [SMALL_STATE(1211)] = 34522, + [SMALL_STATE(1212)] = 34529, + [SMALL_STATE(1213)] = 34536, + [SMALL_STATE(1214)] = 34543, + [SMALL_STATE(1215)] = 34550, + [SMALL_STATE(1216)] = 34557, + [SMALL_STATE(1217)] = 34564, + [SMALL_STATE(1218)] = 34571, + [SMALL_STATE(1219)] = 34578, + [SMALL_STATE(1220)] = 34585, + [SMALL_STATE(1221)] = 34592, + [SMALL_STATE(1222)] = 34599, + [SMALL_STATE(1223)] = 34606, + [SMALL_STATE(1224)] = 34613, + [SMALL_STATE(1225)] = 34620, + [SMALL_STATE(1226)] = 34627, + [SMALL_STATE(1227)] = 34634, + [SMALL_STATE(1228)] = 34641, + [SMALL_STATE(1229)] = 34648, + [SMALL_STATE(1230)] = 34655, + [SMALL_STATE(1231)] = 34662, + [SMALL_STATE(1232)] = 34669, + [SMALL_STATE(1233)] = 34676, + [SMALL_STATE(1234)] = 34683, + [SMALL_STATE(1235)] = 34690, + [SMALL_STATE(1236)] = 34697, + [SMALL_STATE(1237)] = 34704, + [SMALL_STATE(1238)] = 34711, + [SMALL_STATE(1239)] = 34718, + [SMALL_STATE(1240)] = 34725, + [SMALL_STATE(1241)] = 34732, + [SMALL_STATE(1242)] = 34739, + [SMALL_STATE(1243)] = 34746, + [SMALL_STATE(1244)] = 34753, + [SMALL_STATE(1245)] = 34760, + [SMALL_STATE(1246)] = 34767, + [SMALL_STATE(1247)] = 34774, + [SMALL_STATE(1248)] = 34781, + [SMALL_STATE(1249)] = 34788, + [SMALL_STATE(1250)] = 34795, + [SMALL_STATE(1251)] = 34802, + [SMALL_STATE(1252)] = 34809, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -34702,1288 +34764,1293 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 0, 0, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), [51] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), - [53] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1134), - [56] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1111), - [59] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1133), - [62] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(819), - [65] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(945), - [68] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1193), - [71] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(810), - [74] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(704), + [53] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1072), + [56] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(968), + [59] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(970), + [62] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(859), + [65] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(911), + [68] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1091), + [71] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(772), + [74] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(706), [77] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(724), - [80] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(905), - [83] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(765), - [86] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1086), - [89] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1087), - [92] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(652), - [95] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1106), + [80] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(932), + [83] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(752), + [86] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1104), + [89] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1124), + [92] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(648), + [95] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1030), [98] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), - [100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), - [102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), - [104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), - [134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 2, 0, 7), - [164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 3, 0, 15), - [168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, 0, 7), - [170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, 0, 15), - [172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1125), - [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1129), - [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1170), - [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(875), - [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(934), - [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(703), - [206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(726), - [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(933), - [212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(758), - [215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1064), - [218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1065), - [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(670), - [224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1031), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_node, 3, 0, 15), - [257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_node, 4, 0, 15), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(743), - [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(939), - [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(760), - [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(923), - [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(1193), - [278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(810), - [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(699), - [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(722), - [287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(768), - [290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(769), - [293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(1093), - [296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(1094), - [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(671), + [100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), + [102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), + [104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 2, 0, 6), + [164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 3, 0, 14), + [168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, 0, 6), + [170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, 0, 14), + [172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1121), + [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1122), + [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1173), + [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(877), + [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(941), + [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(700), + [206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(727), + [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(928), + [212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(760), + [215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1067), + [218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1068), + [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(671), + [224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1034), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_node, 3, 0, 14), + [257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_node, 4, 0, 14), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(738), + [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(945), + [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(746), + [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(937), + [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(1091), + [278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(772), + [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(704), + [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(723), + [287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(757), + [290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(764), + [293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(1096), + [296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(1097), + [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(672), [302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), - [304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(1037), + [304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(1040), [307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), [319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else, 1, 0, 0), [321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else, 2, 0, 0), [323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 1, 0, 0), - [325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(740), - [328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(944), - [331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(759), - [334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(898), - [337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(701), - [340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(723), - [343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(762), - [346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(772), - [349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(1122), - [352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(1123), - [355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(672), - [358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(1068), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(736), + [328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(950), + [331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(768), + [334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(924), + [337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(699), + [340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(725), + [343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(778), + [346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(771), + [349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(1125), + [352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(1126), + [355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(673), + [358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(1071), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_node, 1, 0, 0), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_node, 2, 0, 0), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(744), - [442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(948), - [445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(775), - [448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(922), - [451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(705), - [454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(728), - [457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(770), - [460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(752), - [463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(1147), - [466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(1148), - [469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(673), - [472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(1097), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(738), - [484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(927), - [487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(749), - [490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(908), - [493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(702), - [496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(725), - [499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(751), - [502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(763), - [505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(1029), - [508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(1030), - [511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(651), - [514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(1055), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_node, 1, 0, 0), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_node, 2, 0, 0), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(737), + [444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(953), + [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(749), + [450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(896), + [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(701), + [456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(722), + [459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(745), + [462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(773), + [465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(1150), + [468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(1151), + [471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(666), + [474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(1100), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(741), + [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(938), + [491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(775), + [494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(936), + [497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(702), + [500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(721), + [503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(761), + [506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(756), + [509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(1032), + [512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(1033), + [515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(647), + [518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_node_repeat1, 2, 0, 0), SHIFT_REPEAT(1252), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 8), - [703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 8), - [705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), - [707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), - [709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), - [711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), - [713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), - [715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), - [717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), - [719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), - [721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), - [723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), + [703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), + [705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), + [707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), + [709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 7), + [711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 7), + [713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), + [715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), + [717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), + [719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), + [721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), + [723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), [725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), [727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_memory_reservation, 5, 0, 23), - [733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_memory_reservation, 5, 0, 23), - [735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_node, 5, 0, 17), - [737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_node, 5, 0, 17), - [739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_node, 5, 0, 19), - [741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_node, 5, 0, 19), - [743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_memory_reservation, 4, 0, 10), - [745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_memory_reservation, 4, 0, 10), - [747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_node, 6, 0, 24), - [749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_node, 6, 0, 24), - [751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_node, 4, 0, 11), - [753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_node, 4, 0, 11), - [755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omit_if_no_ref, 2, 0, 0), - [757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_omit_if_no_ref, 2, 0, 0), - [759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, 0, 20), - [761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, 0, 20), - [763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, 0, 12), - [765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, 0, 12), - [767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, 0, 13), - [769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, 0, 13), - [771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, 0, 15), - [773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, 0, 15), - [775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, 0, 27), - [777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, 0, 27), - [779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omit_if_no_ref, 3, 0, 0), - [781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_omit_if_no_ref, 3, 0, 0), - [783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_node, 3, 0, 7), - [785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_node, 3, 0, 7), - [787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 16), - [789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 16), - [791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 7), - [793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 7), - [795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dtsi_include, 2, 0, 5), - [797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dtsi_include, 2, 0, 5), - [799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 21), - [801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 21), - [803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_node, 6, 0, 17), - [805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_node, 6, 0, 17), - [807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 15), - [809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 15), - [811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, 0, 7), - [813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, 0, 7), - [815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_node, 7, 0, 24), - [817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_node, 7, 0, 24), - [819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_undef, 3, 0, 7), - [821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_undef, 3, 0, 7), - [823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, 0, 22), - [825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, 0, 22), - [827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, 0, 7), - [829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, 0, 7), - [831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_node, 7, 0, 32), - [833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_node, 7, 0, 32), - [835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_version, 2, 0, 0), - [837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_version, 2, 0, 0), - [839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_node, 8, 0, 32), - [841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_node, 8, 0, 32), - [843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, 0, 5), - [845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, 0, 5), - [847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_plugin, 2, 0, 0), - [849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_plugin, 2, 0, 0), - [851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_node, 5, 0, 11), - [853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_node, 5, 0, 11), - [855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 14), - [857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 14), - [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omit_if_no_ref, 3, 0, 0), + [733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_omit_if_no_ref, 3, 0, 0), + [735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, 0, 6), + [737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, 0, 6), + [739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omit_if_no_ref, 2, 0, 0), + [741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_omit_if_no_ref, 2, 0, 0), + [743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dtsi_include, 2, 0, 4), + [745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dtsi_include, 2, 0, 4), + [747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_node, 3, 0, 6), + [749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_node, 3, 0, 6), + [751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_memory_reservation, 4, 0, 9), + [753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_memory_reservation, 4, 0, 9), + [755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_node, 5, 0, 10), + [757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_node, 5, 0, 10), + [759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_node, 4, 0, 10), + [761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_node, 4, 0, 10), + [763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_node, 5, 0, 18), + [765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_node, 5, 0, 18), + [767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, 0, 19), + [769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, 0, 19), + [771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, 0, 11), + [773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, 0, 11), + [775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, 0, 12), + [777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, 0, 12), + [779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 20), + [781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 20), + [783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 14), + [785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 14), + [787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, 0, 4), + [789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, 0, 4), + [791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, 0, 21), + [793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, 0, 21), + [795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_memory_reservation, 5, 0, 22), + [797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_memory_reservation, 5, 0, 22), + [799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_node, 5, 0, 16), + [801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_node, 5, 0, 16), + [803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, 0, 14), + [805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, 0, 14), + [807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_node, 8, 0, 31), + [809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_node, 8, 0, 31), + [811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_node, 6, 0, 23), + [813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_node, 6, 0, 23), + [815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, 0, 6), + [817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, 0, 6), + [819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_version, 2, 0, 0), + [821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_version, 2, 0, 0), + [823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, 0, 26), + [825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, 0, 26), + [827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_undef, 3, 0, 6), + [829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_undef, 3, 0, 6), + [831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_plugin, 2, 0, 0), + [833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_plugin, 2, 0, 0), + [835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_node, 6, 0, 16), + [837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_node, 6, 0, 16), + [839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_node, 7, 0, 23), + [841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_node, 7, 0, 23), + [843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 15), + [845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 15), + [847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 6), + [849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 6), + [851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_node, 7, 0, 31), + [853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_node, 7, 0, 31), + [855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 37), + [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 9), - [891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 9), - [893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 38), - [895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1, 0, 0), - [897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1, 0, 0), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 3, 0, 0), - [903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 3, 0, 0), - [905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property, 5, 0, 30), - [907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property, 5, 0, 30), - [909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_node, 5, 0, 21), - [911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_node, 5, 0, 21), - [913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_node, 5, 0, 15), - [915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_node, 5, 0, 15), - [917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_node, 5, 0, 22), - [919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_node, 5, 0, 22), - [921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property, 5, 0, 31), - [923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property, 5, 0, 31), - [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property, 6, 0, 34), - [957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property, 6, 0, 34), - [959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_node, 6, 0, 27), - [961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_node, 6, 0, 27), - [963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property, 6, 0, 35), - [965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property, 6, 0, 35), - [967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property, 6, 0, 36), - [969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property, 6, 0, 36), - [971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property, 7, 0, 37), - [973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property, 7, 0, 37), - [975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property, 5, 0, 29), - [977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property, 5, 0, 29), - [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property, 5, 0, 28), - [985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property, 5, 0, 28), - [987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), - [989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property, 2, 0, 11), - [991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property, 2, 0, 11), - [993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property, 3, 0, 11), - [995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property, 3, 0, 11), - [997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_property, 3, 0, 7), - [999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_property, 3, 0, 7), - [1001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_node, 3, 0, 7), - [1003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_node, 3, 0, 7), - [1005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property, 3, 0, 17), - [1007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property, 3, 0, 17), - [1009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property, 4, 0, 25), - [1011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property, 4, 0, 25), - [1013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property, 4, 0, 26), - [1015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property, 4, 0, 26), - [1017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_node, 4, 0, 15), - [1019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_node, 4, 0, 15), - [1021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_node, 4, 0, 16), - [1023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_node, 4, 0, 16), - [1025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_node, 4, 0, 7), - [1027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_node, 4, 0, 7), - [1029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property, 4, 0, 17), - [1031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property, 4, 0, 17), - [1033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, 0, 14), - [1035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, 0, 14), - [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [1039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, 0, 8), - [1041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, 0, 8), - [1043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, 0, 9), - [1045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, 0, 9), - [1047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2, 0, 0), - [1049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2, 0, 0), - [1051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), - [1053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), - [1055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), - [1057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [1061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), - [1063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), - [1065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4, 0, 0), - [1067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4, 0, 0), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [1071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), - [1073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), - [1075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), - [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1, 0, 0), + [885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1, 0, 0), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 8), + [891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 3, 0, 0), + [899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 3, 0, 0), + [901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 13), + [903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 13), + [905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_node, 5, 0, 21), + [907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_node, 5, 0, 21), + [909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property, 3, 0, 16), + [911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property, 3, 0, 16), + [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property, 4, 0, 24), + [947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property, 4, 0, 24), + [949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property, 4, 0, 25), + [951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property, 4, 0, 25), + [953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_node, 4, 0, 14), + [955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_node, 4, 0, 14), + [957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_node, 4, 0, 15), + [959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_node, 4, 0, 15), + [961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_node, 4, 0, 6), + [963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_node, 4, 0, 6), + [965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property, 4, 0, 16), + [967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property, 4, 0, 16), + [969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property, 5, 0, 27), + [971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property, 5, 0, 27), + [973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property, 5, 0, 28), + [975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property, 5, 0, 28), + [977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_node, 5, 0, 20), + [979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_node, 5, 0, 20), + [981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_node, 5, 0, 14), + [983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_node, 5, 0, 14), + [985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_node, 3, 0, 6), + [987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_node, 3, 0, 6), + [989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property, 5, 0, 29), + [991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property, 5, 0, 29), + [993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property, 5, 0, 30), + [995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property, 5, 0, 30), + [997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property, 6, 0, 33), + [999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property, 6, 0, 33), + [1001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_node, 6, 0, 26), + [1003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_node, 6, 0, 26), + [1005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property, 6, 0, 34), + [1007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property, 6, 0, 34), + [1009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property, 6, 0, 35), + [1011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property, 6, 0, 35), + [1013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property, 7, 0, 36), + [1015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property, 7, 0, 36), + [1017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), + [1019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_property, 3, 0, 6), + [1021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_property, 3, 0, 6), + [1023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property, 2, 0, 10), + [1025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property, 2, 0, 10), + [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [1029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property, 3, 0, 10), + [1031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property, 3, 0, 10), + [1033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, 0, 13), + [1035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4, 0, 0), + [1037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4, 0, 0), + [1039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), + [1041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), + [1043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), + [1045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), + [1047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), + [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [1055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, 0, 7), + [1057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, 0, 7), + [1059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, 0, 8), + [1061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, 0, 8), + [1063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2, 0, 0), + [1065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2, 0, 0), + [1067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), + [1069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), + [1071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), + [1073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), + [1075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, 0, 13), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [1309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_integer_cells_repeat1, 2, 0, 0), SHIFT_REPEAT(1193), - [1312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_integer_cells_repeat1, 2, 0, 0), SHIFT_REPEAT(810), - [1315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_integer_cells_repeat1, 2, 0, 0), SHIFT_REPEAT(697), - [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_integer_cells_repeat1, 2, 0, 0), - [1320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_integer_cells_repeat1, 2, 0, 0), SHIFT_REPEAT(677), - [1323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_integer_cells_repeat1, 2, 0, 0), SHIFT_REPEAT(721), - [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), - [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), - [1412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), - [1432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), - [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__label_reference, 2, 0, 4), - [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__label_reference, 2, 0, 4), - [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference, 1, 0, 1), - [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference, 1, 0, 1), - [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference, 1, 0, 2), - [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference, 1, 0, 2), - [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__node_reference, 5, 0, 18), - [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__node_reference, 5, 0, 18), - [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__node_reference, 3, 0, 5), - [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__node_reference, 3, 0, 5), - [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [1474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [1476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [1478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), - [1480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_memory_reservation_repeat1, 2, 0, 6), SHIFT_REPEAT(1049), - [1483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_memory_reservation_repeat1, 2, 0, 6), - [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_memory_reservation_repeat1, 2, 0, 6), - [1487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__integer_cell_items, 1, 0, 0), - [1489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__integer_cell_items, 1, 0, 0), - [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), - [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__integer_cell_items, 3, 0, 0), - [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__integer_cell_items, 3, 0, 0), - [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [1507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_memory_reservation_repeat1, 2, 0, 6), SHIFT_REPEAT(1107), - [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_memory_reservation_repeat1, 1, 0, 1), - [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_memory_reservation_repeat1, 1, 0, 1), - [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__label, 2, 0, 3), - [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__label, 2, 0, 3), - [1518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_memory_reservation_repeat1, 2, 0, 6), SHIFT_REPEAT(1012), - [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bits, 2, 0, 0), - [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bits, 2, 0, 0), - [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), - [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), - [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), - [1627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(753), - [1630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(753), - [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), - [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_byte_string_literal_repeat1, 2, 0, 0), - [1793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_byte_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(813), - [1796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), SHIFT_REPEAT(902), - [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), - [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_repeat1, 2, 0, 0), - [1807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_repeat1, 2, 0, 0), SHIFT_REPEAT(645), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [1826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(657), - [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [1891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(693), - [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4, 0, 0), - [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incbin, 4, 0, 33), - [1952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incbin, 8, 0, 39), - [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2, 0, 0), - [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer_cells, 2, 0, 0), - [1978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [1994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3, 0, 0), - [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer_cells, 3, 0, 0), - [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [2036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_byte_string_literal, 2, 0, 0), - [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_byte_string_literal, 3, 0, 0), - [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [2136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, 0, 21), - [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [2190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, 0, 22), - [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_node, 4, 0, 21), - [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [2402] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_node, 5, 0, 27), - [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, 0, 16), - [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, 0, 27), - [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), + [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [1387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_integer_cells_repeat1, 2, 0, 0), SHIFT_REPEAT(1091), + [1390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_integer_cells_repeat1, 2, 0, 0), SHIFT_REPEAT(772), + [1393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_integer_cells_repeat1, 2, 0, 0), SHIFT_REPEAT(694), + [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_integer_cells_repeat1, 2, 0, 0), + [1398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_integer_cells_repeat1, 2, 0, 0), SHIFT_REPEAT(697), + [1401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_integer_cells_repeat1, 2, 0, 0), SHIFT_REPEAT(720), + [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [1412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), + [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [1432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference, 1, 0, 1), + [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference, 1, 0, 1), + [1440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference, 1, 0, 0), + [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference, 1, 0, 0), + [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__label_reference, 2, 0, 3), + [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__label_reference, 2, 0, 3), + [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__node_reference, 3, 0, 0), + [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__node_reference, 3, 0, 0), + [1476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_memory_reservation_repeat1, 2, 0, 5), SHIFT_REPEAT(1101), + [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_memory_reservation_repeat1, 2, 0, 5), + [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_memory_reservation_repeat1, 2, 0, 5), + [1483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__integer_cell_items, 1, 0, 0), + [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__integer_cell_items, 1, 0, 0), + [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [1497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_memory_reservation_repeat1, 2, 0, 5), SHIFT_REPEAT(1231), + [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [1502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__integer_cell_items, 3, 0, 0), + [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__integer_cell_items, 3, 0, 0), + [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__label, 2, 0, 2), + [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__label, 2, 0, 2), + [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bits, 2, 0, 0), + [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bits, 2, 0, 0), + [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_memory_reservation_repeat1, 1, 0, 1), + [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_memory_reservation_repeat1, 1, 0, 1), + [1518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_memory_reservation_repeat1, 2, 0, 5), SHIFT_REPEAT(1131), + [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), + [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [1611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(1128), + [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), + [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), + [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [1638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 1, 0, 0), + [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [1656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [1660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), + [1662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(762), + [1665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(762), + [1668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [1758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(645), + [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [1809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(684), + [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_repeat1, 2, 0, 0), + [1870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_repeat1, 2, 0, 0), SHIFT_REPEAT(646), + [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path_node, 2, 0, 6), + [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_node, 2, 0, 6), + [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_byte_string_literal_repeat1, 2, 0, 0), + [1881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_byte_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(847), + [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [1896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), SHIFT_REPEAT(901), + [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path_node, 4, 0, 17), + [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_node, 4, 0, 17), + [1961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer_cells, 2, 0, 0), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_byte_string_literal, 2, 0, 0), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [1989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3, 0, 0), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer_cells, 3, 0, 0), + [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incbin, 4, 0, 32), + [2029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_byte_string_literal, 3, 0, 0), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [2041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2, 0, 0), + [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incbin, 8, 0, 38), + [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4, 0, 0), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, 0, 15), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [2273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, 0, 26), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_node, 5, 0, 26), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [2347] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, 0, 20), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [2569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, 0, 21), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_node, 4, 0, 20), + [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), }; #ifdef __cplusplus